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

[Core] Quickstart for dbt Core from a manual install #6687

Open
bkowshik opened this issue Dec 18, 2024 · 0 comments
Open

[Core] Quickstart for dbt Core from a manual install #6687

bkowshik opened this issue Dec 18, 2024 · 0 comments
Labels
community Contributions from the dbt community content Improvements or additions to content dbt Core The changes proposed in this issue relate to dbt Core

Comments

@bkowshik
Copy link

bkowshik commented Dec 18, 2024

Link to the page(s) on docs.getdbt.com requiring updates

https://docs.getdbt.com/guides/manual-install?step=8

Tell us more about this update

Out of the blue, the following show up without any reference to how to create them in previous documentation pages.

  • Database: raw
  • Schema: jaffle_shop
  • Table: customers

I could create the database and the schema but table creation would require the schema, etc.

Reviewers/Stakeholders/SMEs

dbt-core

Related GitHub issues

No response

Additional information

Used the following schema for now and proceeded with the tutorial.

CREATE TABLE analytics.jaffle_shop.customers (
    id INT PRIMARY KEY,
    first_name VARCHAR(255),
    last_name VARCHAR(255)
);

CREATE TABLE analytics.jaffle_shop.orders (
    id INT PRIMARY KEY,
    user_id INT,
    order_date DATE,
    status VARCHAR(50)
);
@bkowshik bkowshik added content Improvements or additions to content dbt Core The changes proposed in this issue relate to dbt Core labels Dec 18, 2024
@bkowshik bkowshik changed the title [Core] <title> Quickstart for dbt Core from a manual install [Core] Quickstart for dbt Core from a manual install Dec 18, 2024
@matthewshaver matthewshaver added the community Contributions from the dbt community label Dec 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community Contributions from the dbt community content Improvements or additions to content dbt Core The changes proposed in this issue relate to dbt Core
Projects
None yet
Development

No branches or pull requests

2 participants