i created a login : bob
i granted him permission to create database using : sp_addsrvrolemember 'dbcreator'
This automatically creates a user under the login bob, & with same name as the login name.
Login - bob
user- bob
Is the user created in master database?
I executed this query : select * from sysusers, but i could not find any user named 'bob' in the table. Why so?
'bob' has the permission to create database.
now i want to grant him permission to create table. so how do i do that? When i am doing it using grant, then it says cannot find user 'bob'? Why so?
grant create table to bob
After that, i connected sql server with login 'bob' Then, i created a database : bobdb i entered into bobdb. Now, how to give create table permission to bob in bobdb
Do i need to add a new user?