Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. SELECT SYSTIMESTAMP,
  2. DBTIMEZONE,
  3. CURRENT_TIMESTAMP
  4. SESSIONTIMEZONE
  5. FROM DUAL;
  6.  
  7. =============================================================================================================================================================================================================
  8. | SYSTIMESTAMP | DBTIMEZONE | CURRENT_TIMESTAMP | SESSIONTIMEZONE |
  9. =============================================================================================================================================================================================================
  10. | 20.07.2017 7:15:33 -04:00 | Europe/Moscow | 20.07.2017 14:15:33 +03:00 | +03:00 |
  11. -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  12.  
  13. SELECT
  14. SYSTIMESTAMP,
  15. SYSTIMESTAMP AT TIME ZONE 'Europe/Moscow' Moscow,
  16. SYSTIMESTAMP AT TIME ZONE 'America/New_York' New_York
  17. FROM DUAL
  18.  
  19. ==========================================================================================================================================================
  20. | SYSTIMESTAMP | MOSCOW | NEW_YORK |
  21. ==========================================================================================================================================================
  22. | 20.07.2017 7:09:25 -04:00 | 20.07.2017 11:09:25 +00:00 | 20.07.2017 11:09:25 +00:00 |
  23. ----------------------------------------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement