if i do:
CREATE SCHEMA [test] AUTHORIZATION [testuser]
testuser doesn't seem to have any schema rights, is that correct? I considered the director owning the scheme, did you have full control over it?
What permission do I need to give testuser so that it fully controls the test circuit?
Edit: with "full control", I mean the ability for CRUD tables, views, sprocs, etc.
Edit: here is my full code:
CREATE DATABASE [testdb] Go USE [testdb] CREATE LOGIN [andrewbdesktop\testuser] FROM WINDOWS Go CREATE USER [andrewbdesktop\testuser] FROM LOGIN [andrewbdesktop\testuser] Go CREATE SCHEMA [test] AUTHORIZATION [andrewbdesktop\testuser] Go ALTER USER [andrewbdesktop\testuser] WITH DEFAULT_SCHEMA = [test]
thanks
source share