Skip to content

Commit

Permalink
SYMMETRICDS-429
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 9, 2011
1 parent b368ee3 commit 0134ca4
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -112,6 +112,7 @@
<![CDATA[
create trigger $(triggerName) on $(schemaName)$(tableName) after insert as
begin
set nocount on
declare @TransactionId varchar(1000)
declare @DataRow varchar(max)
$(declareNewKeyVariables)
Expand All @@ -135,6 +136,7 @@
close DataCursor
deallocate DataCursor
end
set nocount off
end
]]>
</value>
Expand All @@ -144,6 +146,7 @@
<![CDATA[
create trigger $(triggerName) on $(schemaName)$(tableName) after update as
begin
set nocount on
declare @TransactionId varchar(1000)
declare @DataRow varchar(max)
declare @OldPk varchar(2000)
Expand All @@ -170,6 +173,7 @@
close DataCursor
deallocate DataCursor
end
set nocount off
end
]]>
</value>
Expand All @@ -179,6 +183,7 @@
<![CDATA[
create trigger $(triggerName) on $(schemaName)$(tableName) after delete as
begin
set nocount on
declare @TransactionId varchar(1000)
declare @OldPk varchar(2000)
declare @OldDataRow varchar(max)
Expand All @@ -199,6 +204,7 @@
close DataCursor
deallocate DataCursor
end
set nocount off
end
]]>
</value>
Expand Down

0 comments on commit 0134ca4

Please sign in to comment.