Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.37 KB

File metadata and controls

34 lines (26 loc) · 1.37 KB

Create View table for data visualization

In this step, we need to create view table to be accessed by the data visualization tool (Quicksight) for later use.

  1. go to Redshift Console
  2. click Editor at the left menu

usually, if you have logged in in not a long time, it will re-login automatically. But, if you have logged out, you need to login again.

  1. in connection, choose Create new connection
  2. in cluster, choose redshift-dwh
  3. in database name, type dev
  4. in database user, type admin
  5. in database password, type your password.
  6. click Connect to database
  7. check if the schema is classicmodels
  8. Download this file and execute each of the query separately per view.

Once you execute each of the view query, it will appear at your tables and views list

let's test one of the view.

  1. in Redshift query editor, type this query
    SELECT * FROM classicmodels.customers_vw

it will display the query result as below

BACK TO WORKSHOP GUIDE