The status of your Sybase account allows to create tables not databases. Therefore you will be granting access per table basis. The name of your database is your account name. You can create tables and other objects and share them. The sharing process involves adding other users to your database and then granting them access. Please follow the procedure outlined below:
use master go sp_dboption your_database_name, "dbo use only", false go use your_database_name go checkpoint go
sp_adduser login_name_of_the_user_you_want_to_add
grant all on your_table_name to user_list
The user list is the login names of all the users you want to add separated with commas.
select * from pyolum..Branch goshould print the contents of pyolum's Branch table assuming you have access. Alternatively, you can change the database explicitly as
use pyolum goThen
select * from Branch goproduces the same results as the above.
Please refer to the sybooks online help for details. The complete format of all the commands are available under SYBASE SQL Server Release 10.0.2 (Sybooks v.3) and the SYBASE SQL Server Reference Manual.