Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clarify snowflake qs steps #4739

Closed
wants to merge 12 commits into from
4 changes: 2 additions & 2 deletions website/docs/guides/snowflake-qs.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Using Partner Connect allows you to create a complete dbt account with your [Sno

<Snippet path="snowflake-acct-name" />

* **Role** &mdash; Leave blank for now. You can update this to a default Snowflake role later.
* **Role** &mdash; `TRANSFORMER` or your default Snowflake role. This tells dbt what Snowflake role should be assumed after connecting to Snowflake.
* **Database** &mdash; `analytics`. This tells dbt to create new models in the analytics database.
* **Warehouse** &mdash; `transforming`. This tells dbt to use the transforming warehouse that was created earlier.

Expand Down Expand Up @@ -224,7 +224,7 @@ Now that you have a repository configured, you can initialize your project and s
2. Above the file tree to the left, click **Initialize your project**. This builds out your folder structure with example models.
3. Make your initial commit by clicking **Commit and sync**. Use the commit message `initial commit`. This creates the first commit to your managed repo and allows you to open a branch where you can add new dbt code.
4. You can now directly query data from your warehouse and execute `dbt run`. You can try this out now:
- Click **+ Create new file**, add this query to the new file, and click **Save as** to save the new file:
- Click **+ Create new file**, add the following query to the new file, and click **Save as** to save the new file:
```sql
select * from raw.jaffle_shop.customers
```
Expand Down
Loading