I once needed the lines of the stored procedures, to be able to trace whether i have a reference to some function, procedure or table, or sometimes to try to find something inside of the sp's code. Where does the sql server stores the procedures's code?
|
|
|
Use In Use this to search for text in any procedure, view, function:
use this to view the text of a given procedure, view, function:
|
|||||
|
|
It stored it inside the system schema tables:
See MSDN about the For a content search on this, you can do the follwing:
|
||||
|
|
You can use
or
or even
These versions are never truncated. |
||||
|
|
|
If you are trying to search for references to other objects, then you can run a query like this: SELECT * FROM syscomments WHERE TEXT LIKE '%searchstring%' This will return any objects in the database that reference the search string. You can then look at these objects to see what stored procedures (and views and functions) are doing so. |
|||||
|
|
If you are just trying to view the stored procedures code you go into the progammabiltity folder within your DB and they should be all stored in there under stored procedures. |
|||
|
|
|
If you use SQL Server Management Studion, you can right click on the database you want, then click "Tasks -> Generate Scripts". There you can generate a script with all the SP's in one single file, separated files, or directly to a query window, and search/change what you want. Hope this helps. (this is for SQL Server 2008, but i think 2005 has this functionality too) EDIT: You can also see one single SP code, by following this path "YourDB -> Programmability -> Stored Procedures", then right click on the SP you want to see, and click "Modify", and a query window is opened with the code. |
|||
|
|
|
View Dependencies In SQL Server Management Studio, right-click on a table, and choose "View Dependencies". You will see every object that references the table INFORMATION_SCHEMA The actual code for a stored proc, view, constraint, etc is stored in |
|||
|
|