ptheriault
IS-IT--Management
Hey guys,
I have the following TSQL.
However,
It produces this error.
Does anyone know what it means by this "wrap the SELECT containing a set operator using derived table syntax and apply FOR XML on top of it."
- Paul
- If at first you don't succeed, find out if the loser gets anything.
I have the following TSQL.
Code:
DECLARE @docXML XML
SET @docXML = (SELECT '1' AS account_level
,'FirstComp' AS account_number
,'' AS parent_account_number
,'FirstComp Insurance' AS account_name
,'' AS policy_number
,CONVERT(Varchar(1),'W') AS coverage_type
,'' AS effective_date
,'' AS termination_date
,'' AS address_1
,'' as city
,'' as state
,'' as zip
FROM policy_InsuredClaims_IC Record
UNION
SELECT '2' AS account_level
,CONVERT(Varchar(25),Record.PP_PaperID) AS account_number
,'FirstComp' AS parent_account_number
,PI.PI_Paper AS account_name
,'' AS policy_number
,CONVERT(Varchar(1),'W') AS coverage_type
,'' AS effective_date
,'' AS termination_date
,PI.PI_Address AS address_1
,PI.PI_City AS city
,PI.PI_State AS state
,PI.PI_PostalCode as zip
FROM dbo.Partner_Paper Record
join pricing_PaperInformation_PI PI ON Record.PP_PaperID = PI.PI_ID
UNION
SELECT '3' AS account_level
,CONVERT(Varchar(25),Record.IPI_ID) AS account_number
,CONVERT(Varchar(25),PP.PP_PaperID) AS parent_account_number
,II.II_InsuredName AS account_name
,Record.IPI_PolicyNumber AS policy_number
,'W' AS coverage_type
,Record.IPI_EffectiveDate AS effective_date
,Record.IPI_ExpirationDate AS termination_date
,'' AS address_1
,'' as city
,'' as state
,'' as zip
FROM policy_InsuredPricingInfo_IPI Record
JOIN Partner_Paper PP ON Record.IPI_PaperID = PP.PP_PaperID
JOIN policy_InsuredInfo_II II ON Record.IPI_II_ID = II.II_ID
JOIN policy_reference_Status_ST ST ON Record.IPI_ST_ID = ST.ST_ID
WHERE ST.ST_BrowsePolicies = 1
FOR XML AUTO, ROOT('Account'),ELEMENTS )
SELECT @docXML
However,
It produces this error.
Msg 1086, Level 15, State 1, Line 48
The FOR XML clause is invalid in views, inline functions, derived tables, and subqueries when they contain a set operator. To work around, wrap the SELECT containing a set operator using derived table syntax and apply FOR XML on top of it.
Does anyone know what it means by this "wrap the SELECT containing a set operator using derived table syntax and apply FOR XML on top of it."
- Paul

- If at first you don't succeed, find out if the loser gets anything.