In an Oracle cluster (more than one machine co-operating to serve one database) will the "sysdate" function always return a consistent answer? Even if the servers' Operating System clock reports inconsistent values?
|
|
|||
|
|
|
I would strongly suspect that SYSDATE is OS-linked too. Be very watchful of the reason why you need to use it. If have any logic which implements incremental tracking of events (e.g. you're doing incremental exports) and you must ensure no items left out as well as no duplication, base the tracking on sequential IDs rather than SYSDATE. In fact, this is true even for non-cluster systems, as SYSDATE can sometimes change (time savings, sysadmin errors...). |
||
|
|
|
|
Use NTP to sync time across all your servers (Oracle and otherwise) and ensure that doesn't happen. Inconsistent system clocks are a recipe for disaster. I would guess that sysdate would return inconsistent results in the scenario you describe. |
||
|
|
|
I spent a (little bit) of time looking for an answer to this, but couldn't find one, but, given that sysdate is just returning the date/time from the operating system, I suspect dmitriy is correct. |
||
|
|
|
|
SYSDATE is node OS related; if it was guaranteed correct across the cluster, then the nodes would have to sync every time you called SYSDATE. In a clustered environment, ordered sequences are expensive; best avoided if at all possible. An ordered sequence will guarantee you uniqueness and order - however, you could still get gaps if processing fails after selecting from the sequence and before committing the transaction. We use a few workarounds:
|
||
|
|
