I'd like to be able to run an already parameterized query from within the SSMS:
select name
from aTable
where id = @id
I know that other IDEs (e.g. TOAD) allow for parameter binding - is this available in SSMS 2008?
Thanks!
|
|
I'd like to be able to run an already parameterized query from within the SSMS:
I know that other IDEs (e.g. TOAD) allow for parameter binding - is this available in SSMS 2008? Thanks!
|
||||
|
|
|
I don't believe this is possible. What I usually do in this case is just add the following to the top of the window:
Actually, I think 2008 supports initialization now:
|
||
|