I know you can do bulk XML inserts into SQL Server 2005 tables from your C# code using datasets/datatables.
Is it possible to do the same but as a delete?
I know you can do bulk XML inserts into SQL Server 2005 tables from
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can remove data two ways
DELETE FROM Schema.TableName WHERE Condition = ValueOR nuke it
TRUNCATE TABLE Schema.TableNameNow, if you want to Bulk Delete rows based on an XML file, you are going to have to import the data into a staging table or open it as a rowset and then do a
JOINorEXISTSto delete.