Skip to content
View checco's full-sized avatar
🐗
I'm always hungry
🐗
I'm always hungry
Block or Report

Block or report checco

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to create a read only user in AW... How to create a read only user in AWS RDS PostgreSQL and a user with superuser privileges on AWS RDS PostgreSQL
    1
    --
    2
    -- Read only 
    3
    --
    4
    
                  
    5
    -- Create a group
  2. How to change OWNER for DATABASE, SC... How to change OWNER for DATABASE, SCHEMA or TABLE on AWS RDS PostgreSQL. An how to REASSIGN owner for all objects on AWS RDS PostgreSQL
    1
    --
    2
    -- Change database owner
    3
    --
    4
    
                  
    5
    ALTER DATABASE "db_name" OWNER TO user;