Viewing 15 posts - 31 through 45 (of 76 total)
Thanks for the response Roy.
_UB
August 18, 2009 at 6:36 pm
Thanks for the articles... I need to look into this further.
August 13, 2009 at 2:33 pm
Gsquared,
Thanks for the informative article.
One question though. My question is to know if there is any advantage of one method over the other. Or is it just preference (...I say...
August 13, 2009 at 11:53 am
Thanks. I'll try to give as much info as possible, if you need more, please let me know.
We have Sql Server 2005 server with a database running in 80 compatibility...
August 13, 2009 at 9:10 am
Exactly, that's the problem I am trying to solve. Different client side have different settings (JDBC, ADO.NET, ODBC... OleDB), so my goal is to try to use the SQL Server...
August 13, 2009 at 8:44 am
From what I gathered, looks like the rest are not stored at all, but just inherited. Either from Global database settings or Session settings or inline settings.
hmmmm......
August 12, 2009 at 5:08 pm
OBJECTPROPERTY has a couple...
SELECT OBJECTPROPERTY(OBJECT_ID('Procedure_Name'), 'ExecIsQuotedIdentOn')
SELECT OBJECTPROPERTY(OBJECT_ID('Procedure_Name'), 'ExecIsAnsiNullsOn')
where are the rest... are they even stored for each Stored Proc.....at all?
August 12, 2009 at 11:57 am
Thankyou GSquared. I always greatly appreciate your response to my posts.
I'll be sure to read your articles.
_UB
August 7, 2009 at 2:12 pm
Yes. I agree. I read the same for INSTEAD OF triggers.
My earlier comment was based on what I read on AFTER triggers. I guess my comment did not convey that...
August 7, 2009 at 2:10 pm
Looks like UPDATE TRIGGER is the only way to perform UPDATES on the 'Date_modified' column.
There is an entry in the Microsoft Connect site already on this. For people who are...
August 7, 2009 at 10:46 am
Matt,
I agree with the INSTEAD OF TRIGGERS, that's what I am gonna write my triggers in. Not all, but only some TRIGGER that do more than just auditing.
From what I...
August 7, 2009 at 10:42 am
This setting is :
SELECT name, Is_Recursive_Triggers_On FROM sys.databases
Looks like the default is OFF
August 5, 2009 at 12:11 pm
Thanks for the response.
No matter which column is updated, 'Date_Modified' needs to be updated. So, looks like INSTEAD OF Triggers might be a easier route.
thanks,
_UB
August 5, 2009 at 9:49 am
Thanks for the response.
All our queries hit the DB directly, no Stored Procedures. (I tried to convince otherwise, but ....)
UPDATE queries only supply values to the main columns not the...
August 3, 2009 at 10:28 am
Viewing 15 posts - 31 through 45 (of 76 total)