Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
duquenne
Contributor II
Contributor II

Direct Query with Snowflake from QLIK SENSE ON-PREMISE

Hi,

Does this new feature available for SAAS since last year is planned to be available soon (or already available in new release) on QLIK SENSE ON-PREMISE ?

Thanks

Labels (1)
1 Solution

Accepted Solutions
marksouzacosta

Hi @duquenne,

Direct Query was introduced in Qlik Sense. In Qlik Cloud was implemented in a different way.

Here is the help link for Direct Query in Qlik Sense: Direct Query | Qlik Sense on Windows Help

And this is a sample code I did to connect to Snowflake in Qlik Sense using Direct Query:

LIB CONNECT TO 'SnowflakeDB (ipc_mark.costa)';

SQL USE ROLE ACCOUNTADMIN;

[CUSTOMER]:
DIRECT QUERY
DIMENSION
"C_CUSTKEY",
"C_NAME",
"C_ADDRESS",
"C_NATIONKEY",
"C_PHONE",
"C_ACCTBAL",
"C_MKTSEGMENT"
DETAIL
"C_COMMENT"
FROM
"SNOWFLAKE_SAMPLE_DATA"."TPCH_SF10"."CUSTOMER"
;

 

Regards,

Mark Costa

Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

View solution in original post

2 Replies
marksouzacosta

Hi @duquenne,

Direct Query was introduced in Qlik Sense. In Qlik Cloud was implemented in a different way.

Here is the help link for Direct Query in Qlik Sense: Direct Query | Qlik Sense on Windows Help

And this is a sample code I did to connect to Snowflake in Qlik Sense using Direct Query:

LIB CONNECT TO 'SnowflakeDB (ipc_mark.costa)';

SQL USE ROLE ACCOUNTADMIN;

[CUSTOMER]:
DIRECT QUERY
DIMENSION
"C_CUSTKEY",
"C_NAME",
"C_ADDRESS",
"C_NATIONKEY",
"C_PHONE",
"C_ACCTBAL",
"C_MKTSEGMENT"
DETAIL
"C_COMMENT"
FROM
"SNOWFLAKE_SAMPLE_DATA"."TPCH_SF10"."CUSTOMER"
;

 

Regards,

Mark Costa

Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

duquenne
Contributor II
Contributor II
Author

perfect, thanks!