-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSampleDatabaseAndTables.sql
More file actions
40 lines (32 loc) · 959 Bytes
/
SampleDatabaseAndTables.sql
File metadata and controls
40 lines (32 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
CREATE DATABASE SQLChangeTrackingTest
GO
ALTER DATABASE SQLChangeTrackingTest SET COMPATIBILITY_LEVEL = 100
GO
-- Enable database change tracking
ALTER DATABASE SQLChangeTrackingTest
SET CHANGE_TRACKING = ON
(CHANGE_RETENTION = 2 DAYS, AUTO_CLEANUP = ON)
GO
USE SQLChangeTrackingTest
Create Table Customer
(
ID INT NOT NULL Primary KEY IDENTITY(1,1),
FirstName Varchar(25) NULL,
LastName Varchar(25) NULL
)
Create Table Employee
(
ID INT NOT NULL Primary KEY IDENTITY(1,1),
FirstName Varchar(25) NULL,
LastName Varchar(25) NULL
)
-- Enable tables change tracking
ALTER TABLE Customer
ENABLE CHANGE_TRACKING
WITH (TRACK_COLUMNS_UPDATED = ON)
ALTER TABLE Employee
ENABLE CHANGE_TRACKING
WITH (TRACK_COLUMNS_UPDATED = ON)
-- Insert sample data for testing
INSERT INTO Customer (Customer.FirstName, Customer.LastName) VALUES('rahman', 'mahmoodi')
INSERT INTO Employee (Customer.FirstName, Customer.LastName) VALUES('roya', 'mahmoodi')