Viewing 9 posts - 1 through 9 (of 9 total)
I ran following on sql server 2008 r2 with no errors . you prbly need to check your sproc definition.
if exists(select * from sys.objects (nolock) where name =...
December 2, 2013 at 1:16 pm
Thank you for clarifying Paul. Read your article on sqlmag.
August 26, 2013 at 9:37 am
Could be due to locking . You can monitor this with profiler .
June 25, 2013 at 1:36 pm
My friend gave me an interesting problem yesterday. He works for a hospital AND needs TO COUNT patient visits, IF a patient visits the doctor ON consecutive DAYS, it needs...
April 10, 2012 at 8:11 am
SELECT Column_Name 'Column Name',table_name 'Table_Name;
Data_type 'Data Type', character_maximum_length 'Maxium Length'
FROM information_schema.columns
GROUP BY table_name
December 6, 2010 at 6:01 am
@julien : i ran the script on sql server 2008, worked fine for me.
November 24, 2010 at 7:27 am
Viewing 9 posts - 1 through 9 (of 9 total)