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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
swati_rastogi27
Creator
Creator

Unable to read from Global Temporary table

Hi ,

I have a data view with complex joins, so instead of reading from view , I want to dump data into a global temporary table and read from it.

I used below statement to create the same:

CREATE GLOBAL TEMPORARY TABLE SCHEMA.V_COMPLEX_VIEW_GTT

ON COMMIT PRESERVE ROWS AS (

SELECT * FROM SCHEMA.V_COMPLEX_VIEW where 1=2

);


When I try to read from this table , I get an error stating , 'Driver not capable'


Please help

1 Reply
swati_rastogi27
Creator
Creator
Author

Any clue anyone?