DDL of views can be obtained from information_schema.views. Below is the sql to get the view definition where schemaname is
Continue reading
DDL of views can be obtained from information_schema.views. Below is the sql to get the view definition where schemaname is
Continue reading
Run the below query to list all the non-system views in a Redshift database. select table_schema, table_name from information_schema.views where
Continue reading
Below is the syntax to add a new column to an existing table in Redshift. alter table schemaname.tablename add columnname
Continue reading
Use the below sql statement to view the recent 100 queries run by a user ordered by the most recent
Continue reading
You might encounter the below error while trying to modify a column in Redshift database from SQL Workbench. [Amazon](500310) Invalid
Continue reading
You can modify the distribution style of a table using below sql command: alter table tablename alter diststyle AUTO|ALL|EVEN|KEY DISTKEY
Continue reading
You can query the SVV_TABLE_INFO view to determine the distribution style of a table. select “database”, “schema”, “table”, “diststyle” from
Continue reading
Use the Top function to query only the top 10 rows. Syntax is as below: Select top 10 * from
Continue reading
You can revoke the super user privileges previously granted to a database user by running the below sql command where
Continue reading
To grant super user privileges to an existing database user, login as a super user (master user created during the
Continue reading