The error occurs when I try to run the BCP utility
SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', see "Surface Area Configuration" in SQL Server Books Online.
Sunday, July 8, 2012
SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', see "Surface Area Configuration" in SQL Server Books Online.
How to Export Query as XML - SQL Server 2008
Save Recordset as XML using Select Query in SQL Server 2008
The following query
SELECT TOP 1000 [TrainID] as 'TrainNum'
,[TrainName]
FROM [OnlineTrans].[dbo].[TrainMaster] for XML PATH
Is used for generating a XML
On the other hand, If you want to have a meaningfully named element instead of, you need to specify the same in the query. The following query has the row element as well as the root element
SELECT TOP 1000 [TrainID] as 'TrainNum'
,[TrainName]
FROM [OnlineTrans].[dbo].[TrainMaster] for XML path ('TrainInfo'), root ('ParentInfo')
Let us consider the a table (shown below) with couple of columns that needs to be exported as XML
The following query
SELECT TOP 1000 [TrainID] as 'TrainNum'
,[TrainName]
FROM [OnlineTrans].[dbo].[TrainMaster] for XML PATH
Is used for generating a XML
On the other hand, If you want to have a meaningfully named element instead of
SELECT TOP 1000 [TrainID] as 'TrainNum'
,[TrainName]
FROM [OnlineTrans].[dbo].[TrainMaster] for XML path ('TrainInfo'), root ('ParentInfo')
Subscribe to:
Posts (Atom)