Tagged Questions
0
votes
1answer
132 views
XML output not formatted when written to file with bcp
I have query that create an xml in sql server and works fine, the problem is that I need to save it to a file. When I do that the format get corrupted.
SELECT mydata.dbo.tblBooking.ID, ...
2
votes
2answers
2k views
How to get BCP to generate a Format File for importing fixed-width data into a SQL Server table?
The bcp command that I am using:
bcp TableName format nul -c -f c:\folder\TargetFile.xml -x -S ServerName -T -q
I think I just need the fields to have a type of xsi:type="CharFixed" rather then ...
1
vote
1answer
434 views
Adding an Element to XML SQL 2008 Query
I am trying to add in a few elements in between the ROOT and PATH in a MSSQL 2008 Query. For Example I generate this something like this:
<Employees>
<Employee ID="1">
...
2
votes
2answers
3k views
Sql Bulk insert XML format file with double quotes in terminator
I'm trying to insert some data into a table from a csv document which has all of the fields delimited with ""
ie.
...
0
votes
1answer
173 views
sql server 2000 data in view to xml file
I am trying to get data from a table and store it as XML File as shown in Here. In a view I created the following:
Select [name],[surname],[age] From Students
and from a stored procedure I want to ...
0
votes
1answer
713 views
Host-file colums may be skipped only when copying into the server
I want to create a xml file from my database with bcp.
The following code works in SQL Server 2008 but not in SQl Express 2005.
This is the code error:
SQLState = S1000, NativeError = 0
Error = ...
7
votes
4answers
17k views
What is the best way to save XML data to SQL Server?
Is there a direct route that is pretty straight forward? (i.e. can SQL Server read XML)
Or, is it best to parse the XML and just transfer it in the usual way via ADO.Net either as individual rows or ...
1
vote
1answer
2k views
sql server bcp xml data
Hi
I have a table which has a column which is of type xml.
I have to extract data from this table and load the data into another environment.
i am using bcp to extract and laod the target table but ...