http://qs321.pair.com?node_id=668774


in reply to Re^3: Testing if an array contains a value and then deleting it in most efficient way
in thread Testing if an array contains a value and then deleting it in most efficient way

Even more of a side note - one should never rely on the inherent ordering of data in a SQL database. Any ordering is a side effect of the storage mechanism, and can change (for example due to parallel query engines).

Always use an ORDER BY clause if the order of the returned data is significant in any way!

Michael

PS - for Sybase it's not only ASE 15.0.x that has this behavior - it's any table that has row-level locking (DOL), or if you have partitioned tables, or if you use parallel queries.

Replies are listed 'Best First'.
OT: Sybase
by parv (Parson) on Feb 19, 2008 at 11:24 UTC
    Currently being trained on the job as a DBA (to a level enough to keep servers working), I appreciate your post script much. In any case, change from all-page lock to any other locking scheme won't come as shocking surprise now (w.r.t. output ordering) after switching from 12.0 to 15.0.x.