Advertisement
Guest User

Untitled

a guest
Mar 10th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. Used LDAP adapter to resolve the alias
  2. Attempting to contact (DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=OFF)(FAILOVER=ON)
  3. (ADDRESS=(PROTOCOL=TCP)(HOST=tst-db1.myco.com)(PORT=1604))
  4. (ADDRESS=(PROTOCOL=TCP)(HOST=tst-db2.myco.com)(PORT=1604)))(CONNECT_DATA=
  5. SERVICE_NAME=mydb1.myco.com)(SERVER=DEDICATED)))
  6. OK (80 msec)
  7.  
  8. jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=OFF)(FAILOVER=ON)
  9. (ADDRESS=(PROTOCOL=TCP)(HOST=tst-db1.myco.com)(PORT=1604))
  10. (ADDRESS=(PROTOCOL=TCP)(HOST=tst-db2.myco.com)(PORT=1604)))
  11. (CONNECT_DATA=SERVICE_NAME=mydb1.myco.com)(SERVER=DEDICATED)))
  12.  
  13. * More fine-grained control over all aspects of the application design.
  14. * High degree of control over program execution.
  15. * Use of familiar 3GL programming techniques and application development tools such as browsers and debuggers.
  16. * Support of dynamic SQL,method 4.
  17. * Availability on the broadest range of platforms of all the Oracle programmatic interfaces.
  18. * Dynamic bind and define using callbacks.
  19. * Describe functionality to expose layers of server metadata.
  20. * Asynchronous event notification for registered client applications.
  21. * Enhanced array data manipulation language (DML) capability for array INSERTs, UPDATEs, and DELETEs.
  22. * Ability to associate a commit request with an execute to reduce round-trips.
  23. * Optimization for queries using transparent prefetch buffers to reduce round-trips.
  24. * Thread safety so you do not have to use mutual exclusive locks (mutex) on OCI handles.
  25. * The server connection in nonblocking mode means that control returns to the OCI code when a call is still executing or could not complete.
  26.  
  27. testi=(DESCRIPTION =
  28. (ADDRESS_LIST=
  29. (ADDRESS= (PROTOCOL = TCP)(HOST = scan-ip-or-name)(PORT = 1521))
  30. (FAILOVER = on)
  31. (LOAD_BALANCE = on)
  32. )
  33. (CONNECT_DATA=
  34. (SERVICE_NAME = testi)
  35. ) )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement