This Howto will show you how to copy the data definition of all SQL tables from a star/snowflake schema by using the Tabli data create command.
This command does not copy the data. It just create the structure (ie it performs a SQL CREATE statement). If you want to copy the data, use the tabli data transfer command instead.
You should have Tabulify installed on your computer. Learning Tabulify - Step 1 - Installation
The trick to copy a star/snowflake schema is:
The below command will create:
tabli data create --with-dependencies store_sales@tpcds tpc_$0@sqlite
The list of data resources created
uri
---------------------------------
tpc_customer@sqlite
tpc_customer_address@sqlite
tpc_customer_demographics@sqlite
tpc_date_dim@sqlite
tpc_household_demographics@sqlite
tpc_income_band@sqlite
tpc_item@sqlite
tpc_promotion@sqlite
tpc_store@sqlite
tpc_store_sales@sqlite
tpc_time_dim@sqlite
With the tabli data list command, we can list the tables created with the tpc prefix.
tabli data list -a name -a count tpc*@sqlite
count
-----
0
0
0
0
0
0
0
0
0
0
0
You can fill them with generated data.
How to fill a schema with generated data