How to stop alerts in Activity Log related to db delete

2022-03-28T17:05:26.94+00:00

We initiated a 'delete' action on one of our Azure SQL db which we do not have privilege to do so. There are alerts which have been generated since then causing to pause our Azure email notifications. Is there any way to cancel the 'delete' action to stop these alerts?

Azure SQL Database
{count} votes

1 answer

Sort by: Most helpful
  1. Alberto Morillo 34,146 Reputation points MVP
    2022-03-28T17:25:28.21+00:00

    Please try to set the action to disable:

    Set-AzureRmSqlDatabaseAuditing `
     -State Disabled `
     -ResourceGroupName "resourcegroupname" `
     -ServerName "ssqlinstancename" `  #ssqlinstancename.database.windows.net
     -StorageAccountName "strageaccountname" `
     -DatabaseName "dbname" `
     -AuditActionGroup 'SCHEMA_OBJECT_CHANGE_GROUP' `
     -RetentionInDays 8 `
     -AuditAction "DELETE ON schema::dbo BY [public]" 
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.