Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Export Data to an XML File
How To Export Data to an XML File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer
✍: 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>
2007-04-27, 9678👍, 0💬
Popular Posts:
When should the register modifier be used? Does it really help? The register modifier hints to the c...
What will be printed as the result of the operation below: main() { int x=5; printf("%d,%d,%d\n",x,x. ..
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
What CLASSPATH Settings Are Needed to Run JUnit? It doesn't matter if you run your JUnit tests from ...
How can I check for HTML errors? HTML validators check HTML documents against a formal definition of...