you have a requirement from client, he has an XML file and
you need to insert the data into 5-6 tables in database.
explain me the procedure.

Answers were Sorted based on User's Feedback



you have a requirement from client, he has an XML file and you need to insert the data into 5-6 ta..

Answer / santosh kakani

we can use sqlserver 2005 for inserting data from XML into
database tables

example
insert into <Table_Name> select * from openxml(@doc,
'/Root/customer',;)

with (Custid varchar(10)'/Root/Customer/@Custid', cname
varchar(30)'/Root/Customer/@Cname')


then Exec sp_Xml_RemoveDocument @ doc

Is This Answer Correct ?    6 Yes 0 No

you have a requirement from client, he has an XML file and you need to insert the data into 5-6 ta..

Answer / suren

first check with the Scheme provided, if you have scheme
you can make use to serialise it.

The person will look for the technical feasibility and
solution providing strength and your way of explanation.
dont get stuck any where, shuld be very fluent using the
technical terms and sametime shuld be thoughtful in
understanding the requiement.

The business rounds goes in the same way, asking you to
explain your projects, architechture, DFD's protypes and
other things.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Dot Net General Interview Questions

for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?

5 Answers   IBM,


What is Code group in .Net with respect to CAS

0 Answers  


What is .net3.0 and .net3.5?

0 Answers  


If you are executing these statements in commandobject. Select * from table1; select * from table2? How you will deal result set? 42. How do you sort a dataset.

0 Answers  


Explain constructor.

2 Answers   Wipro,


Name some of the languages .NET support?

3 Answers  


Is there a way to suppress the finalize process inside the garbage collector forcibly in .net?

0 Answers  


What is manifest in .net?

0 Answers  


Explain what inheritance is, and why it's important?

0 Answers  


How does you handle this COM components developed in other programming languages in .NET?

1 Answers   Satyam,


What does cli do?

0 Answers  


How to debug failed assembly binds?

0 Answers  


Categories