Viewing 3 posts - 1 through 4 (of 4 total)
You should use backup and restore for nightly sync. T-SQL alone can’t access Azure’s automated backups, so automate restores via T-SQL scripts, PowerShell, or Azure CLI.
January 30, 2026 at 8:10 pm
The trigger likely joins only on ParentId, causing old child records to be logged. Fix it by joining on both ParentId and ChildId and handling multiple rows correctly. Use Extended...
January 30, 2026 at 8:00 pm
Azure Query Editor only shows the last statement’s result and may timeout after 5 minutes. Cursors produce intermediate results that it does not display. Run cursors in SSMS or Azure...
January 30, 2026 at 7:53 pm
Viewing 3 posts - 1 through 4 (of 4 total)