Viewing 8 posts - 1 through 8 (of 8 total)
I may have missed it, but is the database status accounted for anywhere in the final version of the procedure? I know that's something that I've run into multiple...
December 3, 2014 at 8:05 am
What is the 2 digit year cutoff in your server properties or sp_configure?
June 4, 2013 at 11:31 am
I did not notice that. You're right, using OBJECT_DEFINITION() would work. They also warn against using the ROUTINE_SCHEMA, but I'm just looking for some way to make my...
May 30, 2013 at 11:30 am
MSDN warns against using INFORMATION_SCHEMA.ROUTINES to query stored procedures since it only returns the first 4000 characters of the definition. They suggest using sys.sql_modules because the definition column there...
May 30, 2013 at 10:23 am
Are you using a fully qualified name (database.schema.object) when you're calling the procedure?
March 5, 2013 at 1:37 pm
What the the default schema for the user and stored procedure?
March 5, 2013 at 12:51 pm
How much detail do you want to get into for your trace? If you want to just look at table sizes you could run something like this
select OBJECT_NAME(object_id),...
February 20, 2013 at 11:56 am
but there's only one step, so won't that not do anything?
June 23, 2010 at 1:19 pm
Viewing 8 posts - 1 through 8 (of 8 total)