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, 3142🔥, 0💬
Popular Posts:
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...