Hi,I have scenario where I need to upload data from XML file into a table. XML file is a predifined format. How can I achieve this, Is there any built in package similar to SQL loader to extract required field values and upload them into table.Pls suggestThanks

Showing Answers 1 - 4 of 4 Answers

Elango

  • Jun 23rd, 2006
 

Hi,

There are couple of ways to do it other than loader.

1) You can load the file into a clob and make use of the sys.xmlparser and sys.xslprocessor packages to load it to files.

2) You can load the file into a clob and make use of the dbms_xmlsave package to load it. The above one allows you to customize and load whereas here the available functionality is minimal.

Regards,

Elango.

  Was this answer useful?  Yes

Guest

  • Apr 12th, 2007
 

hi,If you are using SQL server then you have an in-built option in the SQL Server itself. You can read xml in db through stored procedures.sp_xml_preparedocument - search for this option in sql server.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions