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: 
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;