Template question

mike

Member³
I'm trying to create a sql script template for the command window editor that includes an anonymous block, you know, like:

begin
-- stuff
end;
/

The forward slash never shows when I use the template. How do I make it show?

Thanks!
 
Last edited:
Thanks! That works. I need to have a blank line after the end or else it won't be on its own line. Not a big deal, but just in case someone else tries.

begin
--stuff
end;

/
/
 
Back
Top