Collections:
Export Connection Information to a File in Oracle
How To Export Your Connection Information to a File in Oracle?
✍: 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>
⇒ Run SQL*Plus Commands in SQL Developer in Oracle
⇐ Run SQL Statements with SQL Developer in Oracle
2018-10-08, 2458🔥, 0💬
Popular Posts:
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...