Viewing 4 posts - 1 through 4 (of 4 total)
It has to be inserted as two rows in order tables. There is no business validation that happens in the data intake operation. The business validations are done by a...
March 18, 2009 at 5:44 am
Actually we are using an ORM tool (nhibernate) to persist data in multiple tables (order and orderdetails). We pass the object collection to nhibernate methods to persist the data. The...
March 18, 2009 at 5:01 am
Thanks a lot. The code snippet provided by you definitely helps to insert data without using OPENXML.
The approach relies on having a unique name across orders. In one of the...
March 18, 2009 at 2:59 am
This is the sample XML
"root"
"order name="order1" description="order2"
"orderdetails item="item1" state="AL"
"order"
"root"
and there could be around 100 to 200 orders
and table structure is like this
Order (Order_id IDENTITY, Name varchar, description varchar)
Orderdetails...
March 17, 2009 at 10:23 pm
Viewing 4 posts - 1 through 4 (of 4 total)