feedburner

Subscribe

View Venkat Varkala\

Selecting Procedure Text through T SQL

Labels:

Imagine a situation where you cannot use Enterprise Manager with SQL Server like in my situation, the remote SQL server can be accessed only from our production server and I have no access to production server. Below T SQL can lets you see the stored procedure on the sql server. select text from sysobjects o, syscomments s where o.id = s.id and xtype = 'P' and name = 'ProcedureName'

0 comments:

Post a Comment