Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

LOAD a store procedures in a table

HI Again;

Thanks for your helps i executed a store procedures from Qlikview this way;

ODBC

CONNECT TO mgtmexbaan6 (XUserId is PeCUMcRNTLbIXcVK, XPassword is KAJINZVMBDZcJ);


SQL EXEC dbo.rmmMtyBom010Fill;

IT IS POSSIBLE TO LOAD the result of this store procedures in a table of Qlik View????

can you help???

2 Replies
calvindk
Creator III
Creator III

Depending on how the Sproc works, these options are available

If it just returns a data set then:

ODBC

CONNECT TO mgtmexbaan6 (XUserId is PeCUMcRNTLbIXcVK, XPassword is KAJINZVMBDZcJ);

QVTableName:
SQL EXEC dbo.rmmMtyBom010Fill;

Disconnect;

If it creates tables then:

ODBC

CONNECT TO mgtmexbaan6 (XUserId is PeCUMcRNTLbIXcVK, XPassword is KAJINZVMBDZcJ);

SQL EXEC dbo.rmmMtyBom010Fill;

TableName:

Selec * FROM OoutputTableName;

TableName2:

Select * FROM OoutputTableName2;

Disconnect;

Not applicable
Author

ok perfect thanks for your help !!!!