July 27, 2009 at 10:01 am
Which table contains all store procedures that was created?Thank you
July 27, 2009 at 10:10 am
I'm assuming you want to see the text of your procs....
any of of these will get you started:
select * from INFORMATION_SCHEMA.ROUTINES
select * from sys.all_sql_modules
select * from sys.procedures --just procs
Lowell
July 27, 2009 at 10:10 am
No idea offhand what the base table is, but the system view is sys.sql_modules
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 27, 2009 at 1:55 pm
I've always found the text in syscomments.
The probability of survival is inversely proportional to the angle of arrival.
July 27, 2009 at 2:19 pm
sturner (7/27/2009)
I've always found the text in syscomments.
Which is included in SQL 2005 solely for backward compatibility, is deprecated and will be removed in a future version of the product.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply