Skip to content

Commit 15ce4d9

Browse files
committed
remove GDPR note & fix kusto
1 parent aaea95f commit 15ce4d9

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

articles/data-explorer/delete-data.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Azure Data Explorer automatically deletes data based on the [retention policy](/
1919

2020
Consider a database or table that is set for 90 days of retention. If only 60 days of data are needed, delete the older data as follows:
2121

22-
```Kusto
23-
.alter-merge database <DatabaseName> policy retention softdelete = 60d
22+
```kusto
23+
.alter-merge database <DatabaseName> policy retention softdelete = 60d
2424
25-
.alter-merge table <TableName> policy retention softdelete = 60d
26-
```
25+
.alter-merge table <TableName> policy retention softdelete = 60d
26+
```
2727

2828
## Delete data by dropping extents
2929

@@ -35,20 +35,17 @@ You can delete all rows in a table or just a specific extent.
3535

3636
* Delete all rows in a table:
3737

38-
```Kusto
38+
```kusto
3939
.drop extents from TestTable
4040
```
4141
4242
* Delete a specific extent:
4343
44-
```Kusto
44+
```kusto
4545
.drop extent e9fac0d2-b6d5-4ce3-bdb4-dea052d13b42
4646
```
4747
4848
## Delete individual rows using purge
4949
50-
> [!NOTE]
51-
> Purge allows you to delete personal data from the device or service and can be used to support your obligations under the GDPR. If you're looking for general information about GDPR, see the [GDPR section of the Service Trust portal](https://servicetrust.microsoft.com/ViewPage/GDPRGetStarted).
52-
5350
[Data purge](/azure/kusto/management/data-purge) can be used for deleting individuals rows. Deletion isn't immediate and requires significant system resources. As such, it's only advised for compliance scenarios.
5451

0 commit comments

Comments
 (0)