Collections:
Export Data to an XML File in Oracle
How To Export Data to an XML File in Oracle?
✍: FYIcenter.com
If you want to export data from a table to a file in XML format, you can use the following steps:
Your XML file, \temp\MyTeam.xml, is ready. Open it, you will see:
<?xml version='1.0' encoding='Cp1252' ?> <results> <row> <FIRST_NAME><![CDATA[Gerald]]></FIRST_NAME> <LAST_NAME><![CDATA[Cambrault]]></LAST_NAME> <MANAGER_ID><![CDATA[100]]></MANAGER_ID> </row> <row> <FIRST_NAME><![CDATA[Lex]]></FIRST_NAME> <LAST_NAME><![CDATA[De Haan]]></LAST_NAME> <MANAGER_ID><![CDATA[100]]></MANAGER_ID> </row> </results>
⇒ Create a Stored Procedure Interactively in Oracle
⇐ Export Data to a CSV File in Oracle
2019-01-12, 1970🔥, 0💬
Popular Posts:
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...