Getting Started
Creating a New Notebook
To open a new notebook click the “Create a new DBCode Notebook” icon that appears in the DBCode Explorer, when you hover over a database.

Working with Cells
Adding a Cell
To add a cell, click the “Add code cell” button at the top.

You can also add a cell from the “More Actions…” button in the cell toolbar.

Additionally, you can hover with your mouse at the top or bottom of a cell and choose whether to insert a cell above or below.

Executing Queries
Execute a Single Cell
To execute a specific cell, click the “Execute cell” button to the left of the code cell you wish to run.

Execute All Cells
If you have more than one code cell and would like to execute them all, click the “Run All” button at the top.

Execute Cells Above
To execute the cells above the current one, click the “Execute Above Cells” button in the cell toolbar.

Execute Cell and Below
To execute the selected cell and all cells below it, click the “Execute Cell and Below” button in the cell toolbar.

Cell Management
Joining Cells
If you would like to join a cell with the cell above or below it, find these options by clicking the “More Actions…” button in the cell toolbar. This helps in organizing and managing your code more efficiently.

Joining with Previous Cell
This combines the current cell with the one above.
Joining with Next Cell
This combines the current cell with the one below.
Tips for Getting Started
- Start Simple: Begin with basic SQL queries to get familiar with the interface
- Use Markdown: Add markdown cells to document your analysis and findings
- Experiment: Notebooks are perfect for iterative data exploration
- Save Frequently: Remember to save your work as you progress
- Organize: Use descriptive cell names and organize your analysis logically
Next Steps
Once you’re comfortable with the basics, explore:
- Exporting your notebooks
- Cell Locking for specific database connections
- Query Parameters for dynamic queries across cells