Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stored Procedures where are they saved?

Status
Not open for further replies.

berkshirea

Technical User
Mar 22, 2009
97
GB
Hi guys,

Im new to SQL Server. I just want to know if the stored procedures are saved somewhere in some folder?

Where can I see them in C drive? Or is it only visible/accessible if I use sql manager?

Thanks for any help.
 
Only visible if you use SQL Manager or have a query window.

Stored procedures are not stored in seperate files, they are part of the physical file structure of the database they are created in.



"I'm living so far beyond my income that we may almost be said to be living apart
 
Stored procedures are stored as datarows within your database.

Code:
Select
*
From sys.procedures

the above query will display your db procedures. This doesn't mean you can start messing around with this data to modify your procedures.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top