I am using Azure Database for PostgreSQL flexible server.
Here is what I am doing. Please let me know where I am going wrong.
Create a new PostgreSQL flexible server(With both authentication Microsoft Entra and PostgreSQL) and have two admin account one PostgreSQL and one Microsoft Entra
Create new Database by running below command
CREATE DATABASE testdb WITH OWNER = postgresql_admin
Create new Role
CREATE ROLE Test_db_user WITH nologin;
Grant SELECT, INSERT, UPDATE, DELETE on all tables in public schema
GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA public TO Test_db_user;
Grant Create on public schema
GRANT CREATE ON SCHEMA public TO Test_db_user;
Create new user
CREATE ROLE dev1 WITH login PASSWORD 'abc123' INHERIT;
Assign "Test_db_user " role to "dev1" user
GRANT Test_db_user TO dev1;
Log in with newly created user
Run below command to create table
CREATE TABLE tblByDev1(col1 text);
Received below error
ERROR: permission denied for schema public LINE 1: create table student(Id int,name varchar(20))
The error may occur due to running the query in different databases. And also occurs when you do not have
USAGE
permissions on thepublic
schema. As per PostgreSql documentation,You can follow the steps below to grant permissions to create a table in PostgreSQL:
Make sure you selected the correct db. For more information, you can refer to this.