(Didn't know in wich group this question belongs....)
Hi group,
In QA there is an option called 'Script object as....' Were developing a lot of sp's.
When I use this option the 'skeleton' of a sp is created.
Eg
Create proc uspMySP
@Message varchar(10)
AS
SELECT @Message
The mention option would generate the following:
DECLARE @RC int
DECLARE @Message varchar(10)
-- Set parameter values
EXEC @RC = [EMGLSP3].[EM3_OWN].[uspMySP] @Message
The question:
Is it possible to customize this I would like to *** SET statements...
Is this possible
Regards
Sander

HOWTO: Script object as execute?
jbaynham
Butterfly Boy
SPDOTNET
It is possible to add/modify the QA templates.
Here's an article on the subject.
http://www.sqlservercentral.com/columnists/glarsen/usingqueryanalyzertemplates.asp
=;o)
/Kenneth
woodland30033
Thnx anyway!