Fabrice FACORAT
Fabrice FACORAT
@albundy83 Interestingly the following query work even when using `pg_monitor` role ```sql SELECT current_database() AS datname, * FROM ( SELECT *, table_total_size_bytes-indexes_size_bytes-COALESCE(table_toast_size_bytes,0) AS table_size_bytes FROM ( SELECT nspname AS schemaname,...
This is useful also when running Windows under VMWare Fusion for people using Mac OS X. The only way to have a working PowerBI Desktop + Windows ODBC driver working...
Only the 32bit driver will work so far. You can install both. And I've been able to use power I 64bits.
@slabko In fact this is quite a bad bug as this prevent the conversion of a table in ClickHouse as a PowerBI date table. Without a date table, you can't...
Hi @slabko , so I think the best is to do as follow: - create a `dim_date` table in ClickHouse which will be use as _"Date table"_ for PowerBI ```sql...