Import SQL
Import from a remote SQL server.
opal import-sql <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. |
|
Name of the SQL database as registered in Opal |
|
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 the table “AnkleBrachial” from a SQL database to the opal-data datasource:
opal import-sql --opal https://opal-demo.obiba.org --user administrator --password password --destination ds1 --database sql_db --json -t AnkleBrachial