Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't See My EXEC Results

Status
Not open for further replies.

mickeyj2

Programmer
Jun 7, 2007
79
US
Hi,

I have the following which works fine, but I can't see the result set. I've been reading some of the posts and it appears that to see the result set requires a tiny miracle. I'm running this in Query Analyzer for now. Is there an easy way to see my result set, as I'm in the middle of testing things for now.

CREATE PROCEDURE GetCableList
( @CableList nvarchar(250) )
AS
BEGIN
SET NOCOUNT ON
DECLARE @SQL nvarchar(500)
SET @SQL =
'SELECT CableID, BoardModelID
FROM CableMapping
WHERE CableID IN (+ @CableList + )'
print @SQL

END
GO

EXEC GetCableList '1,2,3,10'

Thanks in advance for any help you can provide.

mickeyj2
 
Code:
CREATE PROCEDURE GetCableList
( @CableList nvarchar(250) )
AS
BEGIN
            SET NOCOUNT ON
            DECLARE @SQL nvarchar(500)
            SET @SQL = 
            'SELECT CableID, BoardModelID
            FROM CableMapping
           [s] WHERE CableID IN (+ @CableList + )'[/s]
            WHERE CableID IN (' + @CableList +' )'
print @SQL

END
GO

EXEC GetCableList '1,2,3,10'

Well Done is better than well said
- Ben Franklin
 
That worked to give me the SQL that its running, and I just stuck the full SQL into my Query Analyzer and ran that. Thanks for your help.
 
You know that what Denis means is to replace "PRINT @SQL" in your SP with "EXEC(@SQL)", right?

Phil Hegedusich
Senior Programmer/Analyst
IIMAK
-----------
Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog.
 
I think what the OP was trying to do was show the sql string via the print command to make sure it was formatted correctly. He was not concat'ing the string correctly so he was seeing something like SELECT * FROM contact WHERE CableID IN (+ @CableList + ), instead of SELECT * FROM contact WHERE CableID IN (1,2,3,10).

Well Done is better than well said
- Ben Franklin
 
Thanks all, but I think the easiest thing for me to do was to leave off the EXEC and just run {stored proc} {parms}.

Thanks for all of your help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top