Originally posted by Phil Parkin
In SQL Server 2005 and above, users no longer own objects. A new concept - called a schema - was introduced, and it is the sysdba schema which, by default, owns the SalesLogix objects.
The sysdba schema is owned by the sysdba user, so this distinction is not necessarily obvious.
But maybe you can create a different user and grant them ownership of the sysdba schema - at the same time making sysdba their default schema, so that queries like select * from Account continue to work as expected.
Then again, maybe it won't. I've never tried. It's much easier to go with the flow and use sysdba like everyone else. |