Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 31078👍, 1💬
Popular Posts:
How To Enter Binary Numbers in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...
1. What is normalization. 2. Difference between procedure and functions. 3. Oracle 9i Vs 10g. 4. how...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...
How To Merge Values of Two Arrays into a Single Array? - PHP Script Tips - PHP Built-in Functions fo...