Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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?