views:

28

answers:

2

Q. when i create a view on sql browser it show insufficient priviligies,so how i can create a view?

+3  A: 

You will need to be granted the CREATE VIEW or CREATE ANY VIEW system privilege on the schema you're working on.

Coding Gorilla
+3  A: 

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.

DCookie