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
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