Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. # Database connection properties used by the DefaultDataDiff class
  2. # during execution of the in the create_diff ant task
  3.  
  4.  
  5. ##########################################################################
  6. # #
  7. # PLEASE SET THE CORRECT DB BASED ON WHICH BUILD YOU ARE RUNNING! #
  8. # #
  9. # set datadiff.to the database configuration for the current fixpack
  10. # set datadiff.from to the database configuration for the previous fixpack
  11. # set workbrain.db to the database configuration for the current fixpack. Required only for starting JNDI context
  12. # set archive.db to the archive database configuration for the current fixpack Required only for starting JNDI context
  13. ##########################################################################
  14.  
  15.  
  16. ###################################################
  17. ## Set the value to one of the entries in the data base configuration section
  18. workbrain.db=WFM_ORACLE
  19.  
  20. ###################################################
  21. ## Set the value to one of the archive entries in the data base configuration section
  22. archive.db=WFM_ORACLE_archive
  23.  
  24.  
  25. ##################################################
  26. # Define database configurations
  27. ##################################################
  28.  
  29. WFM_ORACLE.username=workbrain
  30. WFM_ORACLE.password=workbrain
  31. WFM_ORACLE.instance=jdbc:oracle:thin:@localhost:1521:oradevl
  32. WFM_ORACLE.driver=oracle.jdbc.OracleDriver
  33.  
  34. WFM_ORACLE_archive.username=archive
  35. WFM_ORACLE_archive.password=workbrain
  36. WFM_ORACLE_archive.instance=jdbc:oracle:thin:@<server>:1521:archive
  37. WFM_ORACLE_archive.driver=oracle.jdbc.OracleDriver
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement