Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
I belive you can set the nolock in the query like this:
SELECT
First,
Second,
FROM dbo.TABLE T WITH (NOLOCK)