vote up 0 vote down star

We have lots of stored procedures which all contain a lot of comments.
Is there a way to extract the comments from the stored procedures for deployment so the users can't see them when they modify a stored procedure with SQL Server Management Studio?

Note: We're using SQL Server 2008.

flag

Instead of hiding all of your "validates the employee type field, because the ID10Ts are liable to type *anything*" comments, you should probably just delete them. :-) – Jeffrey L Whitledge Nov 4 at 7:43
@Jeffrey: Full ACK. But our comments are mostly versioning info right in front of the actual CREATE PROCEDURE statement. But they still end up in the database. Also there are some comments with links to our PM software which users really don't have to see but are nevertheless useful for us. – Marc Nov 4 at 12:57

2 Answers

vote up 4 vote down check

You can use the WITH ENCRYPTION option:

CREATE PROCEDURE dbo.foo 
WITH ENCRYPTION 
AS 
BEGIN 
    SELECT 'foo' 
--Try this just to make sure
END

before that make sure you keep the logic of the stored procedure in a safe place, since you won't have easy access to the procedure's code once you've saved it.

After that the user can't use Enterprise Manager or sp_helptext to get the Source Code but this can be cracked...

link|flag
Yes that seems like a good idea anyway. Do you know whether there is a performance penalty doing so? I could find anything regarding this on MSDN, but I guess rather no. – Marc Nov 5 at 7:27
vote up 1 vote down

Encryption is great but if you need to allow users to make changes to stored procedures (as your initial question suggests) then encryption isn't your answer. It'll hide the comments AND the code from the users.

If you want to leave the code visible but remove comments, you might want to use Management Studio to script out all your stored procedures, then use a macro/text editor like UltraEdit to find and remove all comments, and then run that script again to rebuild all the comment-less stored procedures.

link|flag
Thanks for your answer. However, in my case going for encryption is the better solution as I don't need users to be able to modify the procedures. – Marc Nov 9 at 14:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.