How do I add data to my FeatureBase Cloud database?
There are several ways to add data to an existing table in your database.
Before you begin
- Signup to FeatureBase Cloud
- Learn how to connect to Cloud
- Learn how to create databases
- Learn how to create Cloud tables
Which data sources are supported by FeatureBase?
Data source | Method |
---|---|
CSV | Cloud GUI SQL statements |
Inline | SQL statements |
ndjson | SQL statements |
orc | SQL statements |
parquet | SQL statements |
Is existing data overwritten or lost during import?
Featurebase does not directly interface with your source data. Instead, FeatureBase reads data from a supported data source, and upserts to destination tables:
If rows contain… | Data is… |
---|---|
No data | Data is inserted from data source |
Existing data | Row is updated from data source |
How do I use SQL to import data?
Run SQL on Cloud data using any of the following methods:
Data source | Statement |
---|---|
CSV | BULK INSERT |
Inline | INSERT() BULK INSERT |
ndJSON | BULK INSERT |
Orc | BULK INSERT |
Parquet | BULK INSERT |