My apologies for not having provided the relevant details. Details follow:
The concept of ownership chaining allows a non-owner of object who has permissions to execute a stored procedure (or select on view) to access tables referenced by the stored procedure or view, even though he has not been granted direct permissions to these tables. This is allowed since the stored procedure's owner (most likely the dbo) happens to be the owner of the objects which is being referenced by the stored procedure (or view).
Please see the following link for an e.g.
SyBooks Online
In MSSQL,
Cross-database ownership chaining is just like ownership chaining, but it works across databases. Let's suppose we have two databases - db1 and db2. If a stored procedure in db1 tries to access a table owned by the same login on db2, then access is allowed only if the cross-database ownership chaining is turned ON.
Please see the following link for more details:
Ownership Chaining - SQLServerCentral
I guess this feature should also be available in Sybase, since MSSQL is an inspired version of Sybase.
So if there is any such configurable item, how do we set it? That was my question.
Hope I have been able to provide some clarity on my question.