Advertisement
Guest User

Untitled

a guest
Jun 12th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # CLI script for DolphinDS
  2. connect
  3. batch
  4.  
  5. # Add a non-XA datasource
  6. data-source add \
  7. --name=DolphinDS \
  8. --driver-name=postgresql-9.4.1209.jar \
  9. --connection-url=jdbc:postgresql://localhost:5432/dolphin \
  10. --jndi-name=java:jboss/datasources/DolphinDS \
  11. --user-name=dolphin \
  12. --password=dolphin \
  13. --jta=true \
  14. --use-ccm=false \
  15. --transaction-isolation=TRANSACTION_READ_COMMITTED \
  16. # --max-pool-size=25 \
  17. # --blocking-timeout-wait-millis=5000 \
  18. # --new-connection-sql="set datestyle = ISO, European;"
  19. data-source enable --name=DolphinDS
  20.  
  21. # Execute and reload
  22. run-batch
  23. :reload
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement