...
Currently the SQL is in Snowflake format, but we will be adding support for more databases in the future.
...
Importing SQL
Coming soon!To export SQL DDL statements from Snowflake, please follow these steps:
Log into your Snowflake account.
Click on “Create new worksheet” located in the top left corner.
If you are unable to create worksheets, please contact your company’s Snowflake administrator for assistance.
...
Write the following SQL statement to retrieve the DDL for the desired schema:
Code Block |
---|
SELECT GET_DDL('SCHEMA', '<database>.<schema>'); |
For example:
Code Block |
---|
SELECT GET_DDL('SCHEMA', 'ELLIETEST.PUBLIC', TRUE); |
...
Execute the statement by pressing the play button in the top right menu bar.
...
Once the results are displayed, click the download button in the bottom right corner.
From the menu, select “Download as .csv”. The SQL DDL statements will be saved to your hard drive.
...
To import the SQL into Ellie,
Click “Create new model” and select "Physical Model".
In the dialog that opens, select “Upload a file”.
Choose the file from your hard drive containing the SQL DDL statements.
The SQL DDL statements will appear in the dialog.
Click “Create new model” to finalize the creation of the new model.
User management
Ellie has two ways to manage users:
...