SJ Smith
September 29th, 2005, 01:49 PM
I have a query similar to the following which I can run perfectly in SQL Query Analyser.
SELECT * FROM Client.dbo.Data1 WHERE APPLICATION_ID NOT IN (SELECT APPLICATION_ID FROM Client.dbo.Data2)
I need to put this query in a Javascript in DTS. When I run it I get the error "streaming not supported over multiple column result"
Do you know how I can do this as part of a java script. Is there a way I can perhaps do the query in two steps and use a tmeporary table? I tried the query rewritten to use joins rather than the nested select and I still get the same error.
Thanks,
SELECT * FROM Client.dbo.Data1 WHERE APPLICATION_ID NOT IN (SELECT APPLICATION_ID FROM Client.dbo.Data2)
I need to put this query in a Javascript in DTS. When I run it I get the error "streaming not supported over multiple column result"
Do you know how I can do this as part of a java script. Is there a way I can perhaps do the query in two steps and use a tmeporary table? I tried the query rewritten to use joins rather than the nested select and I still get the same error.
Thanks,