Smartbi Insight 是思迈特软件有限公司最新推出的一站式BI大数据分析平台。
Smartbi Insight 能对接各种业务数据库、数据仓库和大数据平台等,并作数据的加工处理、分析挖掘和可视化展现;能够满足各种数据分析应用需求,如大数据分析、可视化分析、探索式分析、复杂报表、应用分享等。
导入样例数据到ByteHouse。
我们以下面的第三方样例数据为例,包含5张表以及数据。
bytehouse-cli --host <host> --port 19000 --secure --token <API Key> --send_timeout=3600 --receive_timeout=3600 --database=northwind -q "INSERT INTO northwind.categories FORMAT CSVWithNames" < categories.csv bytehouse-cli --host <host> --port 19000 --secure --token <API Key> --send_timeout=3600 --receive_timeout=3600 --database=northwind -q "INSERT INTO northwind.customers FORMAT CSVWithNames" < customers.csv bytehouse-cli --host <host> --port 19000 --secure --token <API Key> --send_timeout=3600 --receive_timeout=3600 --database=northwind -q "INSERT INTO northwind.orderdetails FORMAT CSVWithNames" < orderdetails.csv bytehouse-cli --host <host> --port 19000 --secure --token <API Key> --send_timeout=3600 --receive_timeout=3600 --database=northwind -q "INSERT INTO northwind.orders FORMAT CSVWithNames" < orders.csv bytehouse-cli --host <host> --port 19000 --secure --token <API Key> --send_timeout=3600 --receive_timeout=3600 --database=northwind -q "INSERT INTO northwind.products FORMAT CSVWithNames" < products.csv