You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/data-warehouse/how-to/connect-bi-tools.mdx
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,14 +108,17 @@ Your Data Warehouse for ClickHouse® is now integrated into your Metabase platfo
108
108
109
109
Refer to the official [ClickHouse®](https://clickhouse.com/docs/integrations/metabase) and [Metabase](https://www.metabase.com/docs/latest/databases/connections/clickhouse) documentation portals for more information.
110
110
111
-
## PowerBI
111
+
## PowerBI Desktop
112
112
113
-
Power BI Desktop is a robust data visualization tool that allows users to create dynamic reports and dashboards from various data sources.
113
+
Power BI Desktop is a robust data visualization tool that allows users to create dynamic reports and dashboards from various data sources.
114
114
115
115
<Messagetype="note">
116
116
ODBC connection between PowerBI and Data Warehouse for ClickHouse® is currently not supported.
117
117
</Message>
118
118
119
+
120
+
0. Make sure you installed [PowerBI Desktop]https://www.microsoft.com/en-us/download/details.aspx?id=58494/), and [MySQL Connector/NET](https://dev.mysql.com/downloads/connector/net/).
121
+
119
122
1. Open PowerBI Desktop.
120
123
121
124
2. Click **Get Data** from the top ribbon, then select **More...** at the bottom of the drop-down menu. A pop-up displays.
Copy file name to clipboardExpand all lines: pages/data-warehouse/how-to/import-data.mdx
+17-20Lines changed: 17 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,43 +39,40 @@ Scaleway Data Warehouse for ClickHouse® allows you to quickly import any type o
39
39
--user scwadmin \
40
40
--password '<YOUR_DEPLOYMENT_PASSWORD>'
41
41
```
42
-
42
+
43
43
6. You are now connected to your deployments using the ClickHouse® CLI, you can now import data.
44
44
45
45
<Messagetype="tip">
46
46
You can connect to your deployment using the ClickHouse® HTTP console directly from the **Overview** tab.
47
47
</Message>
48
48
49
-
### Importing data into your deployment
50
-
51
-
There are several ways to import data into your Data Warehouse for ClickHouse® deployment, depending on how your data is stored:
52
-
53
-
- Using the `s3` table function: directly read data from an Amazon S3 bucket by specifying the bucket URL, file format, and data structure.
54
-
55
-
- Using the `s3` Storage Engine: create a table that points to your S3 data, then insert data from the S3 table into your target table.
49
+
### Importing data into your deployment from an Object Storage bucket
56
50
57
-
- Using `clickhouse-client`: execute an INSERT query to populate a table by specifying the bucket URL and the file format.
51
+
There are several ways to import data into your Data Warehouse for ClickHouse® deployment, depending on how your data is stored. One of the most common ways is to import it from an Object Storage bucket in any format supported by ClickHouse®.
58
52
59
53
<Tabsid="import-data-into-data-warehouse">
60
54
<TabsTablabel="s3 table function">
61
-
```sql
62
-
INSERT INTO your_table
63
-
SELECT*
64
-
FROM s3('https://my-bucket.s3.scaleway.com/data/my_data.csv', 'CSV', 'column1 String, column2 Int32')
65
-
```
55
+
The `s3` table function reads data directly from an Object Storage bucket by specifying the URL of the bucket, the file format, and the data structure.
56
+
```sql
57
+
INSERT INTO your_table
58
+
SELECT*
59
+
FROM s3('https://my-bucket.s3.scaleway.com/data/my_data.csv', 'CSV', 'column1 String, column2 Int32')
60
+
```
66
61
</TabsTab>
67
62
<TabsTablabel="s3 storage engine">
63
+
The `s3` Storage Engine creates a table that points to data table stored in an Object Storage bucket, then inserts data from the bucket table into the target table in your Data Warehouse for ClickHouse® deployment.
The `clickhouse-client` executes an INSERT query to populate a table in your deployment by specifying the URL of the source Object Storage bucket and the file format.
71
+
```sh
72
+
clickhouse-client --query="INSERT INTO your_table FORMAT CSVWithNames" \
0 commit comments