Oracle JDBC connection URLs
Format:
jdbc:oracle:thin:@<serverName>:<port>:<SID>
If Oracle is configured as a multitenant database, the connection to a Pluggable Database (PDB) must be specified with the service identifier notation instead of the SID notation (also see Connection failure to a multitenant Oracle database in [IM ImageMaster]):
jdbc:oracle:thin:@<serverName>:<port>/<pdbname>
Fields:
Field |
Description |
---|---|
<serverName> |
The address of the database server. |
<port> |
The port of the database server |
<SID> |
The Oracle SID for the database to connect to. |
<pdbname> |
The Oracle pluggable database name to connect to. |
Table 471: Oracle JDBC connection URL fields |
For more information see [Class Oracle Driver].