Import xml schema into SQL Server 2005
Hi,
I am using MS SQL Server 2005 for database development. I want to Import xml schema into SQL server 2005. Can anyone tell me the procedure that how can I Import xml schema into SQL server 2005.
Hi,
I am using MS SQL Server 2005 for database development. I want to Import xml schema into SQL server 2005. Can anyone tell me the procedure that how can I Import xml schema into SQL server 2005.
My dear,
If you want import XML schemes into the SQL server 2005, you should visit these websites:
They will help you with your XML server.
Thank you.
Hi,
There are a few other XSD features that SQL Server 2005 doesn’t support. To Import xml schema into SQL server 2005 you have to follow some procedure. The whole procedure is described in the website.
Â
You would require to parse the XML as it is into a table like format.
Â
You need to remember that XML is just like plain text therefore you need to tell the SQL server what these databases are.
Therefore, no single shot magical bullet exists.
Â
INSERT MyTable FROM File = 'bob.xml'
Â