You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/auditing/delete-audit-data.md
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Dataverse provides the following messages to delete audit history data:
31
31
|---------|---------|
32
32
|`DeleteRecordChangeHistory`|Deletes all the audit change history records for a particular record.|
33
33
|`BulkDelete`|Asynchronously deletes records identified by a query. This message can be used to delete large numbers of audit records without blocking other activities.|
34
-
|`DeleteAuditData`|For customers using customer managed encryption keys or on-premises Dynamics 365, this message deletes all audit data records up until a specified end date.|
34
+
|`DeleteAuditData`|For customers using customer managed encryption keys this message deletes all audit data records up until a specified end date.|
35
35
36
36
> [!NOTE]
37
37
> You cannot directly delete records in the [Auditing (Audit) table](../reference/entities/audit.md)
@@ -253,16 +253,13 @@ More information:
253
253
254
254
## Delete the change history for a date range
255
255
256
-
If you use customer managed encryption keys or Dynamics 365 on-premises you can delete `audit` records for a date range using the `DeleteAuditData` message. Audit data records are deleted sequentially from the oldest to the newest.
256
+
If you use customer managed encryption keys you can delete `audit` records for a date range using the `DeleteAuditData` message. Audit data records are deleted sequentially from the oldest to the newest.
257
257
258
258
> [!NOTE]
259
-
> Even if you are using customer managed encryption keys or Dynamics 365 on-premises you should consider using Bulk Delete rather than `DeleteAuditData` message. See [Use BulkDelete to delete audit data](#use-bulkdelete-to-delete-audit-data)
259
+
> Even if you are using customer managed encryption keys you should consider using Bulk Delete rather than `DeleteAuditData` message. See [Use BulkDelete to delete audit data](#use-bulkdelete-to-delete-audit-data)
260
260
261
261
The `DeleteAuditData` message will delete all audit data in those partitions where the end date is before the date specified in the `EndDate` property. Any empty partitions are also deleted. However, neither the current (active) partition nor the `audit` records in that active partition can be deleted by using this request or any other request.
262
262
263
-
> [!NOTE]
264
-
> Behavior for Dynamics 365 on-premises may be different depending on which version of SQL Server is used. The Dataverse behavior is based on the Enterprise edition of SQL server. The on-premises behavior is different when SQL Server standard edition is used because that version doesn't support the database partitioning feature. In that case the `DeleteAuditData` message deletes all audit records created up to the end date specified in the `EndDate` property.
265
-
266
263
New partitions are automatically created by the Dataverse platform on a quarterly basis each year. This functionality is non-configurable and cannot be changed. You can obtain the list of partitions using the `RetrieveAuditPartitionList` message. If the end date of any partition is later than the current date, you cannot delete that partition or any `audit` records in it.
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/auditing/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ Dataverse provides the following messages to delete audit history data:
92
92
|---------|---------|
93
93
|`DeleteRecordChangeHistory`|Deletes all the audit change history records for a particular record.|
94
94
|`BulkDelete`|Asynchronously deletes records identified by a query. This message can be used to delete large numbers of audit records without blocking other activities.|
95
-
|`DeleteAuditData`|For customers using customer managed encryption keys or on-premises Dynamics 365, deletes all audit data records up until a specified end date.|
95
+
|`DeleteAuditData`|For customers using customer managed encryption keys this message deletes all audit data records up until a specified end date.|
96
96
97
97
More information: [Delete audit data](delete-audit-data.md)
0 commit comments