Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
jduenyas
Specialist
Specialist

Data load and SQL Statements

Does anyone know if the "global" NOLOCKS statement --  SET TRANSACTION ISOLATION LEVEL  READ UNCOMMITTED can work within the script?

Thanks

Josh

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

I presume anything you write after SQL should work accordingly. Sorry If i have misunderstood your question. Correct me if I have ?

LOAD *;

SQL SELECT .......

FROM ...... ;

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

I presume anything you write after SQL should work accordingly. Sorry If i have misunderstood your question. Correct me if I have ?

LOAD *;

SQL SELECT .......

FROM ...... ;

jduenyas
Specialist
Specialist
Author

Thanks.

I should have tried it first before bothering y' all. But some good came out of it. If anyone else reads this now they know that it is OK to add the global nolock after the SQL...

SQL

SET TRANSACTION ISOLATION LEVEL  READ UNCOMMITTED

Select *

from your datasouce;