Skip to content

Managing Data

Database Studio provides a spreadsheet-like interface for browsing and editing data in your DataStore tables.

Browsing Rows

  1. Navigate to Database from the sidebar
  2. Click on a table name
  3. The table view shows all rows with pagination

You can:

  • Sort by clicking column headers
  • Paginate through large datasets using navigation controls
  • View data types and values for each cell

Database Studio table view

Inserting Rows

  1. Open a table
  2. Click "+ Add Row" (or equivalent button)
  3. Fill in the field values for each column
  4. Save the new row

You can insert one row at a time through the UI. For bulk inserts, use the DataStore Insert node in a workflow.

Updating Rows

  1. Click on a row or cell you want to edit
  2. Modify the value
  3. Save the changes

Deleting Rows

  1. Select the row(s) you want to delete
  2. Click Delete
  3. Confirm the deletion

WARNING

Deleted rows cannot be recovered. Make sure you're deleting the correct records.

When to Use Database Studio vs Workflow Nodes

Use CaseRecommended Approach
Quick manual editsDatabase Studio
Bulk data operationsDataStore nodes in a workflow
Automated data pipelinesDataStore nodes with triggers
Schema changesDatabase Studio
Ad-hoc queriesDatabase Studio or DataStore Query node