vote up 0 vote down star

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!

flag

1  
SQLCMD lets you use parameters sqlcmd -E -i restoredb.sql -v root="c:\myroot" RESTORE DATABASE MyDB FROM DISK = '$(root)\mydb.bak' WITH REPLACE, MOVE 'mydb_data' to '$(root)\mydb.mdf', GO – Ryu Apr 21 at 15:41

1 Answer

vote up 2 vote down check

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:

declare @id int
set @id = 10

-- followed by the parameterized query

Actually, I think 2008 supports initialization now:

declare @id int = 10
link|flag
Yeah, that's what I'm doing, too - I had hoped for something along the lines of the Template Parameter binding feature :) – Jarrod Dixon Feb 4 at 5:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.