M Sarwar <sarwarmd02@xxxxxxxxxxx> writes: > I want user u2 to have only CREATE VIEW privilege in schema s2. I do not want u2 to create any other type of objects in s2 schema. > I am unable to find the command to grant just CREATE VIEW privilege to be granted to u2. There is no such privilege, and we're quite unlikely to invent one, because it would be outside the SQL standard's privilege model. You could probably enforce a requirement like this with a custom event trigger. But I'd encourage you to rethink why you think this is a good idea. regards, tom lane