SQL Server, Generate scripts, unencrypted stored procedures only
Posted
by
PeterO
on Stack Overflow
See other posts from Stack Overflow
or by PeterO
Published on 2013-10-30T09:48:27Z
Indexed on
2013/10/30
9:54 UTC
Read the original article
Hit count: 240
sql-server
|stored-procedures
I have a SQL Server database with 3195 stored procedures. Most (approx 90%) of the stored procedures are encrypted (it's a 3rd party app) but there are many that are not encrypted (added by consultants later).
I need to get an overview of the unencrypted stored procedures created by consultants and then apply fixes so that they can work with UTC time.
I use Generate Scripts
and select only stored procedures but that fails. I assume that is because the first stored procedure that it tries to write out is encrypted. Is there a way to write out the approx 300 stored procedures that are not encrypted?
© Stack Overflow or respective owner