Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to pull data with the following script in Qlik Sense 3.2:
LIB CONNECT TO 'ABCSQLServer';
temp01:
NoConcatenate
LOAD *;
SQL EXEC MyDB.dbo.usp_GetDataFromSQL;
Store temp01 into [lib://SomeQlikLocation\QVDFolder\GetDataFromSQL.QVD] (qvd);
drop table temp01;
This code works fine as long as the stored procedure pulls data without using a temp table (CTE, Table Variable). However, as soon as I include a #tempTable in the stored procedure everything fails. It appears as if the connection doesn’t have access to tempdb but it does. Does anyone know why this is happening? Your help is greatly appreciated.
I've solved this before by putting NOCOUNT ON after the BEGIN of my SP;
BEGIN
SET NOCOUNT ON;
could you try that?
May also be worth turning ansi warnings off.
I've solved this before by putting NOCOUNT ON after the BEGIN of my SP;
BEGIN
SET NOCOUNT ON;
could you try that?
May also be worth turning ansi warnings off.
/* This code worked after implementing recommendations of Gareth Wilson */
USE [Master]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Will
-- exec [dbo].[Test_TmpTblforQlik]
-- =============================================
CREATE PROCEDURE [dbo].[usp_GetDataFromSQL]
AS
BEGIN
SET NOCOUNT ON;
DROP TABLE IF EXISTS #MyTest_01
SELECT *
INTO #MyTest_01
From
(
Select 'A' as MyLetter, 1 as MyNumber
Union All
Select 'B' as MyLetter, 2 as MyNumber
Union All
Select 'C' as MyLetter, 3 as MyNumber
Union All
Select 'D' as MyLetter, 4 as MyNumber
) as Qry_01
SELECT *
FROM #MyTest_01
END
GO
Previously I had been rewriting my stored procedures with CTEs but this time was different since I used several windowing functions (row_count) and the performance boost of temp table was really needed. Thanks for your quick response and the spot on solution! I really appreciate the help.
Out of curiosity, do you know why the nocount must be turned on?
No Problem William,
I'm not 100% sure about why this works, I can only speculate that Qlik cannot receive the Done_In_Proc messages when the SP executes.
Thanks
Gareth