Reputation: 21
Q. when i create a view on sql browser it show insufficient priviligies,so how i can create a view?
Upvotes: 1
Views: 61
Reputation: 43523
You will also need to have direct SELECT privileges on any tables referenced in your view. SELECT permissions granted via a role will not work. See CREATE VIEW prerequisites.
Upvotes: 3
Reputation: 19842
You will need to be granted the CREATE VIEW or CREATE ANY VIEW system privilege on the schema you're working on.
Upvotes: 3