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
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 |
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 |
Types of evidence in .net with context to CAS
What is a Strong Name?
Explain .net framework overview?
What is Ajax? How it is related to your project?
Explain can 2 different applications use the same dll in gac at the same time?
Describe the Managed Execution Process
How is a managed code executed?
Should I use readerwriterlock instead of monitor.enter/exit?
I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?
What method do you use to explicitly kill a users session? How?
1.What is the major advantage of polymorphism? Please don't simply say binding. Specify any other reason.
Integer & struct are value types or reference types in .NET?