March 19, 2013 at 8:41 am
Hi Team,
when i insert a record into particular table, cascading is happening,
i want to know the cascading details, i.e.. in backend some records are updating, inserting in to another tables, i want to trace them.
is there any way to find
please help...
March 19, 2013 at 8:53 am
Minnu (3/19/2013)
Hi Team,when i insert a record into particular table, cascading is happening,
i want to know the cascading details, i.e.. in backend some records are updating, inserting in to another tables, i want to trace them.
is there any way to find
please help...
How are you inserting your data? Stored procs? If so what is the logic? Are there triggers? My guess is have some triggers.
_______________________________________________________________
Need help? Help us help you.
Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.
Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/
March 19, 2013 at 9:01 am
There are no triggers on particular table.
am inserting manually, i.e
insert into table_name values (.....)
March 19, 2013 at 9:07 am
Do you have CDC enabled for this table?
March 19, 2013 at 9:09 am
Minnu (3/19/2013)
There are no triggers on particular table.am inserting manually, i.e
insert into table_name values (.....)
If there are no triggers and you are not using a proc this is a bit strange. Do you have any auditing on your system that might generating this data?
_______________________________________________________________
Need help? Help us help you.
Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.
Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply