We have running a oracle database in AWS and getting data from OGG replicated, unfortunately we have not set the correct timezone for the database at first. The database runs now with UTC +-0 but we are in Germany and need UTC +2.
So the query
SELECT SYSDATE FROM DUAL;
provide the SYSDATE for UTC +-0
and
SELECT CURRENT_DATE FROM DUAL;
provides UTC -2
but if i create sheduled jobs or something i must keep that in mind and adjust the time with the 2 hour differences.
We have thought to change the timezone but the fact that we are running OGG Replication and we don't know what will happen or the impact of that keeps us from doing it.
the ogg related columns for replicated tables GG_TRG_COMMIT_TIMESTAMP and GG_SRC_COMMIT_TIMESTAMP have the correct time, not 2hour difference.
Has anyone experience with that? can anyone say that is safe to change the timezone?
That will be really helpful