EDIT: I do not want to change SYSDATE, now I understand this is not possible unless the Host of the DB changes, I would still like my data to be in Pacific Time so I guess the way to go is using TIMESTAMP WITH LOCAL TIMEZONE
I have a database for which I want to enforce SYSDATE to be Pacific Time. I cannot modify the date of the host for my DB due to business rules and currently SYSDATE is CDT.
I am aware that I can change the timezone for my session, however I cannot control that other users will alter their sessions as well
Is there a way I can enforce users to use PT without modifying the date of the host?
I was thinking maybe a sort of PL/SQL trigger that alters the session every time a new connection to DB is stablished.
Thanks1