I'd like my stored procedures to be formatted as:
CREATE PROC [someProc]
(
[tab]@someParameter [datatype]
[tab],@anotherParameter [datatype]
)
but when the proc only has one parameter, it's putting it on the same line as the CREATE/ALTER statement:
CREATE PROC [someProc] @someParameter [datatype]
I can live without the parentheses, but not having the parameters always in the same place messes with me. I looked through the formatting options, the help file, and search the forums, haven't found anything. Am I missing something?
Thanks!
-Thomas
CREATE PROC [someProc]
(
[tab]@someParameter [datatype]
[tab],@anotherParameter [datatype]
)
but when the proc only has one parameter, it's putting it on the same line as the CREATE/ALTER statement:
CREATE PROC [someProc] @someParameter [datatype]
I can live without the parentheses, but not having the parameters always in the same place messes with me. I looked through the formatting options, the help file, and search the forums, haven't found anything. Am I missing something?
Thanks!
-Thomas