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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Timothy665
Contributor
Contributor

Set Nolock on SQL tables when reading data from Qlik sense

I am working on Qlik sense reading data from SQL server 2016 tables.

When reading data Qlik is setting lock on SQL tables which is blocking transactions.

Is there any way to set Nolock in Qlik sense on SQL tables to unblock other transactions.

Please advice on how to do.

Labels (2)
1 Reply
Vegar
MVP
MVP

I belive you can set the nolock in the query like this:

SELECT

First, 

Second,

FROM dbo.TABLE T WITH (NOLOCK)