craiha

Results 2 comments of craiha

Hi, It seems like most of the actions you do are rather CPU intensive. What is especially slow is when you start Storage Explorer and wait for it to connect...

Adding this code fixes the issue ``` {% macro sqlserver__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %} select distinct table_schema as {{ adapter.quote('table_schema') }}, table_name as {{ adapter.quote('table_name') }}, {{ dbt_utils.get_table_types_sql() }} from...