How can we help you today? How can we help you today?

Multiple OUTPUT statements not supported by SQL Prompt 6.1

SQL 2008 SP3+ and above (and probably below) supports multiple OUTPUT statements, as long as the first one is OUTPUT INTO and the second is OUTPUT...

These statements are nice to allow OUTPUT INTO a table variable/temp table for further operations, and to OUTPUT to return a result set to the user (SSMS or data layer).

The following TSQL is valid and executes, but SQL Prompt 6.1.0.72 will not format throws the message "SQL Prompt was unable to complete this operation. Problem areas have been highlighted."


SELECT *
INTO #Tbl
FROM ( VALUES ( 0) ) AS tbl (fld)

--Deletes from #Tbl
--Returns #Tbl as a ResultSet
--Inserts back it into #Tbl
DELETE FROM #Tbl
OUTPUT DELETED.*
INTO #Tbl
OUTPUT DELETED.*
Chris Williamson
0

Comments

2 comments

  • Manfred.Castro
    Thank you for reporting this issue to us.
    I was able to reproduce the behavior and have logged this issue in our bug tracking system under the internal reference number of SP-4910.
    Unfortunately I am unable to provide a timeline for when this may be fixed.
    Manfred.Castro
    0
  • Aaron L
    The second output clause should now be supported in the latest release (6.1.0.88)
    Aaron L
    0

Add comment

Please sign in to leave a comment.