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 Your Connection Information to a File
How To Export Your Connection Information to a File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer
✍: FYIcenter.com
SQL Developer allows you to export your connection information into an XML file. Here is how to do this:
Open \temp\connections.xml, you should see an XML message like this:
<?xml version = '1.0'?> <!DOCTYPE connections> <connections> <connection> <JDBC_PORT>1521</JDBC_PORT> <HOSTNAME>127.0.0.1</HOSTNAME> <ConnectionType>JDBC</ConnectionType> <DeployPassword>false</DeployPassword> <user>HR</user> <ConnectionName>Local_XE</ConnectionName> <SID>XE</SID> <JdbcDriver>oracle.jdbc.driver.OracleDriver </JdbcDriver> <PWD> <![CDATA[0519D91AA309BF15EA9E54BF55F863710496...]]> </PWD> <ORACLE_JDBC_TYPE>thin</ORACLE_JDBC_TYPE> </connection> </connections>
2016-07-11, 31358👍, 1💬
Popular Posts:
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array,...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...
How Is the Width a Parent Element Related to Child Elements? - CSS Tutorials - Understanding Multipl...
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...