MSSQL: stored procedure parameter autocomplete shouldn't have parenthesis

igitur's profile image igitur posted 9 years ago in General Permalink
On MSSQL, stored procedures are executed e.g.
exec sp_dosomething '20150529', 3


But when I use autococomplete it puts parenthesis around the parameters, e.g.
exec sp_dosomething(@myDate, @myId)


For MSSQL the parenthesis should be omitted.

Please login to leave a reply, or register at first.