: Sybase allows dirty reads on all its system tables,
: and does not allow only in user
: created tables, although the manual says that.
:(You can try updating syslogins and see.
: That's how we found out !!). It also allows you to
: update system tables, without
: configuring the "allow updates", using stored procedures.
Claim #1 - Sql Server allows dirty reads on system table.
I do not believe this to be true, I have tried various versions of
locking a table and trying to select off that system table with no
success. What code fragment are you using??
Claim #1 - Sql Server allows updates to system table without setting
the allow updates flag on(in sp's)
This is true. This is due to the fact that the stored proc was
created when the allow updates was turned on. The stored proc
retains the update rights when it is executed.
TonyBasoglu