Import CSV
Import a CSV file, to be found in Opal file system.
opal import-csv <CREDENTIALS> <OPTIONS> [EXTRAS]
Options
Option |
Description |
---|---|
|
Destination datasource name |
|
The list of tables to be imported (defaults to all) |
|
Incremental import |
|
Name of the ID mapping |
|
ID mapping policy:
required : each identifiers must be mapped prior importation (default),ignore : ignore unknown identifiers,generate : generate a system identifier for each unknown identifier. |
|
Path to the CSV file to import on the Opal file system |
|
Character set of the file (e.g utf-8) |
|
Field separator |
|
Quotation mark character |
|
Number of the first row that contains data to import |
|
Entity type of the data (e.g. Participant) |
|
Default value type (text, integer, decimal, boolean etc.). When not specified, “text” is the default. |
|
Merge imported data dictionary with the destination one (default is false, i.e. data dictionary is overridden). |
Credentials
Authentication can be done by username/password credentials OR by personal access token OR by certificate/private key pair (two-way SSL authentication).
Option |
Description |
---|---|
|
Opal server base url |
|
Credentials auth: user name (requires a password) |
|
Credentials auth: user password (requires a user name) |
|
Token auth: user’s personal access token |
|
Two-way SSL auth: certificate/public key file (requires a private key) |
|
Two-way SSL auth: private key file (requires a certificate) |
Extras
Option |
Description |
---|---|
|
Show the command help’s message. |
|
Verbose output. |
|
Output pretty-print JSON |
Example
Import catchment areas from a csv file delimited with ‘,’ :
opal import-csv --opal https://opal-demo.obiba.org --user administrator --password password --destination opal-data --path /home/administrator/catchment-area.csv --tables catchment-area --separator , --type Area