ORA-30403: Daylight Saving Time (DST) upgrade in progress
Cause: Daylight Saving Time upgrade was in progress on a table in the materialized view.
Action: Wait until all tables in the materialized view have gone through DST upgrade.
ORA-30403: Daylight Saving Time (DST) upgrade in progress的错误消息,表示Oracle 正在升级系统时间, 将日光节约时间 (DST) 的起始时间和结束时间进行修改 。
1)确保服务器的操作系统时间和位置与当前时区相符。
2)确定服务器和客户机上的时间是否一致,如需要调整,可以通过ntp服务同步。
3)rman备份当前数据库,以便在升级过程中出现问题时可以进行恢复。
4)运行SQL脚本更新系统的DST时间,例如:ALTER SYSTEM SET TIME_ZONE= 'US/Eastern European’ SCOPE=BOTH;
5)重新启动数据库,使得更改生效。