Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
trishita
Creator III
Creator III

how to load a view directly into qlikview from sql server

SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";

But its showing me error

11 Replies
sasiparupudi1
Master III
Master III

What is the error you are getting?

sasiparupudi1
Master III
Master III

May be try seleting few fields to see if it works

SQL SELECT

F1,

F2
FROM FSCDB.MO_PURCH_SOUNDING_CORRECTION_VIEW

;

trishita
Creator III
Creator III
Author

do I need to set any variables?

trishita
Creator III
Creator III
Author

Database not found error

There is no open data connection.

SQL SELECT *

FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW"

prma7799
Master III
Master III

try like this

TableName:

LOAD *;

SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";

awhitfield
Partner - Champion
Partner - Champion

So.... have you actually created an ODBC or OLEDB connection to the server / DB?

Andy

sasiparupudi1
Master III
Master III

ODBC CONNECT TO YOURODBC  ;


SQL SELECT *

FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW"

trishita
Creator III
Creator III
Author

yes and I am logging into the specific database with userid and passwort as well

awhitfield
Partner - Champion
Partner - Champion

So... did you the "Select" button to create your query?

AFAIK you still haven't confirmed what the error is! What is it?

Andy