Setting SYSDATE to Fixed date and time
Login as SYS in SQL *Plus.
Issue the following command.
alter system set fixed_date='dd.mon.yyyy hh24:mi:ss';
This will alter the sysdate to always the date set.
To reset this to normal issue the following command.
alter system set fixed_date=NONE;
Issue the following command.
alter system set fixed_date='dd.mon.yyyy hh24:mi:ss';
This will alter the sysdate to always the date set.
To reset this to normal issue the following command.
alter system set fixed_date=NONE;
Comments
Post a Comment