$0$0
$0
$0create database [Sample];$0
$0go$0
$0use [Sample]$0
$0go$0
$0create table dbo.Emp(ID bigint not null primary key clustered identity(1,1),$0
$0Fullname nvarchar(60) not null constraint DF_FN default 'Unknown',$0
$0Telephone nvarchar(15) not null constraint DF_TEL default 'Unknown'$0
$0)$0
$0$0
$0go $0
$0exec sys.sp_cdc_enable_db$0
$0go$0
$0exec sys.sp_cdc_enable_table @source_schema = N'dbo',$0
$0 @source_name = N'Emp',$0
$0 @role_name = N'admin'$0
$0go$0
$0Insert Into
↧