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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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)