Skip to content

Commit

Permalink
Fix hyphen (#4906)
Browse files Browse the repository at this point in the history
## What are you changing in this pull request and why?

Add missing hyphen on parameter
  • Loading branch information
nghi-ly authored Feb 13, 2024
2 parents 5d7f554 + 8f711f0 commit 9ee5fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/docs/cloud/billing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
---
title: "Billing"
id: billing
description: "dbt Cloud billing information."
Expand Down Expand Up @@ -170,7 +170,7 @@ When thinking of ways to optimize your costs from successful models built, there
Many dbt Cloud users utilize views, which don’t always need to be rebuilt every time you run a job. For any jobs that contain views that _do not_ include macros that dynamically generate code (for example, case statements) based on upstream tables and also _do not_ have tests, you can implement these steps:

1. Go to your current production deployment job in dbt Cloud.
2. Modify your command to include: `-exclude config.materialized:view`.
2. Modify your command to include: `--exclude config.materialized:view`.
3. Save your job changes.

If you have views that contain macros with case statements based on upstream tables, these will need to be run each time to account for new values. If you still need to test your views with each run, follow the [Exclude views while still running tests](#exclude-views-while-running-tests) best practice to create a custom selector.
Expand Down

0 comments on commit 9ee5fef

Please sign in to comment.