mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
8 lines
250 B
Transact-SQL
8 lines
250 B
Transact-SQL
-- =============================================
|
|
-- Alter database with Disable change tracking template
|
|
-- =============================================
|
|
USE master
|
|
GO
|
|
|
|
ALTER DATABASE <Database_Name,sysname,Database_Name> SET CHANGE_TRACKING = OFF
|
|
GO |