Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. ###
  2. # Database Settings
  3. ###
  4. spring.datasource.url=jdbc:h2:file:~/testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
  5. spring.datasource.platform=h2
  6. spring.datasource.username = sa
  7. spring.datasource.password =
  8. spring.datasource.driverClassName = org.h2.Driver
  9. spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
  10.  
  11. ###
  12. # H2 Settings
  13. ###
  14. spring.h2.console.enabled=true
  15. spring.h2.console.path=/console
  16. spring.h2.console.settings.trace=false
  17. spring.h2.console.settings.web-allow-others=false
  18.  
  19. CREATE TABLE MSG_RCV
  20. (MSG_ID IDENTITY PRIMARY KEY,
  21. PHN_ID VARCHAR(50),
  22. PHN_MSG_ID VARCHAR(50),
  23. MSG_RCPT_DTM TIMESTAMP,
  24. DATA_SRC_CD VARCHAR(20),
  25. MSG_BODY CLOB,
  26. DATA_LOAD_STATUS CHAR,
  27. NOTE VARCHAR(100))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement