Overview
Rowbase is built around a few core concepts that work together to help you manage and transform your data.Organizations
An Organization is the top-level container for all your work in Rowbase. It represents your company or team.Each organization has its own billing, member management, and settings.
- Invite team members with role-based access (Admin, Member, Viewer)
- Configure SSO and security settings
- Manage API keys and integrations
Projects
A Project groups related datasets together. Think of it as a folder for a specific initiative or workflow. Examples:- “Q1 Marketing Campaign” - contains lead lists, email performance data
- “Customer Data Cleanup” - contains raw and cleaned customer records
- “Sales Pipeline” - contains deal data, forecasts, and metrics
Datasets
A Dataset is a structured collection of data, similar to a spreadsheet or database table.- Structure
- Features
Each dataset has:
- Columns - Named fields with specific data types (text, number, date, boolean)
- Rows - Individual records in your data
- Schema - The structure definition that validates your data
Data Types
| Type | Description | Example |
|---|---|---|
text | String values | ”Hello World” |
number | Numeric values (integers and decimals) | 42, 3.14 |
boolean | True/false values | true, false |
date | Date and datetime values | 2024-01-15 |
json | Nested JSON objects | {"key": "value"} |
Operations
Operations are transformations you apply to datasets. They’re non-destructive - the original data is preserved and you can always undo or modify operations.Filter
Filter
Remove rows that don’t match specified conditions.
Parse & Transform
Parse & Transform
Convert text to numbers, dates, booleans, and more.
Use AI
Use AI
Generate content, detect headers, and enrich data with AI.
Rename Columns
Rename Columns
Change column names for clarity.
Join & Union
Join & Union
Combine data from multiple tables.
Validate
Validate
Ensure data quality with constraints and quarantine rules.
Operation Pipeline
Operations are applied in sequence, creating a transformation pipeline:Formulas
Formulas let you create computed columns using spreadsheet-like expressions.Syntax
Reference other columns using their names:Available Functions
- Text
- Math
- Logic
- Date
UPPER(text)- Convert to uppercaseLOWER(text)- Convert to lowercaseTRIM(text)- Remove whitespaceCONCAT(a, b, ...)- Join stringsLEFT(text, n)- First n charactersRIGHT(text, n)- Last n characters