Logon from the AWS Management Console. Expand the dropdown next to your username on the right top corner. You will
Continue readingHow to Revoke super user privileges from a Redshift database user
You can revoke the super user privileges previously granted to a database user by running the below sql command where
Continue readingHow to grant super user privileges to a Redshift database user
To grant super user privileges to an existing database user, login as a super user (master user created during the
Continue readingHow to disable a Redshift database user
You might want to temporarily or permanently disable a Redshift database user account. You can achieve this by changing the
Continue readingHow to determine the number of objects in an s3 bucket
You can find the number of objects in an S3 bucket by running the below command from AWS CLI where
Continue readingHow to determine the creation time of a table in Redshift database
Use the below query to determine when a particular table was created in Redshift database. Replace <your schema name> with
Continue readingHow to List all user defined schemas of a Redshift database
Run the below query to list all the user defined schemas of a Redshift database: select distinct “database”, “schema” from
Continue readingHow to change the owner of a Redshift database
Below is the command to change the owner of a database. You need to login as superuser to run the
Continue readingHow to Rename Redshift database
You cannot change the name of a database that you are currently connected to. To rename a database, login as
Continue readingHow to Create a Database in Redshift Cluster
Use below commands to create a new database in the Redshift Cluster. CREATE DATABASE database_name; CREATE DATABASE database_name OWNER owner_name;
Continue reading