Thanks.
T
thienvan
@thienvan
Posts
-
How to import xml to SQL? -
How to import xml to SQL?Thanks you very much.
-
How to import xml to SQL?Yes, I mean I have an element with no value or perhap null. I want to use LINQ.I have a column date type of data is datetime. And in my xml file, date has no data. I wrote a store procedure use openxml. When I execute it, it return 01/01/1900. I want it return null.
-
How to import xml to SQL?I have a large xml file and I want to importing data from it to my database using LINQ. - My database has many type of data and my xml file has null value. - xml file has multi table. In T-SQL, I used Dataset.Readxml and using SqlBulkCopy to insert dataset into SQL. My problem is xml file has null value. I want to use LINQ to write it. What should I do? Please help me.