Viewing 15 posts - 1 through 15 (of 26 total)
You can get it from system views:
Example:
select
so.name, st.name, sc.text
from sys.triggers st
inner join sysobjects so on st.parent_id = SO.id
inner join syscomments sc on st.object_id = sc.id
where so.name ='<TableName>'
February 17, 2023 at 12:14 pm
January 25, 2017 at 8:17 am
Thanks Wayne, this worked for my scenario. Much appreciated. 🙂
September 11, 2015 at 9:20 am
The code needs to identify the columns that have changed. This needs to be a part of a stored proc which receives single security ID as parameter and it retrieves...
September 7, 2015 at 10:05 am
Apologies for the confusion, the columns that have changed should be selected dynamically. Requirement is to identify the changed columns for any securityID.
September 7, 2015 at 4:49 am
I was able to resolve this error. While deploying the package, in "data sources" in the connection string I added - Password = <my DB password>; and it worked. It...
May 14, 2014 at 6:29 am
I tried using proxy account but it didnt work either.
May 14, 2014 at 5:19 am
Password to the connection manager is stored there itself. Package configuration is disabled.
May 14, 2014 at 5:03 am
The protection level is "Encryt All with password" and the SQL agent services is having - log on as "LocalSystem". This is the first job being created on the server,...
May 14, 2014 at 3:38 am
Yes correct. Existing cluster needs to remain untouched and cluster should become active-active.
January 23, 2013 at 1:22 am
You can ignore step 1 without effecting anything.
In short, I need to trap errors at line numbers x, y ,z and, if error happens, need to rollback the changes,...
December 17, 2012 at 6:15 am
Yes, right.
December 14, 2012 at 3:36 am
Yes.
December 14, 2012 at 2:18 am
The DB is in SQL server 2000 and need to do through job only, cant do through SSIS/DTS.
May 17, 2010 at 11:40 pm
Viewing 15 posts - 1 through 15 (of 26 total)