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

How we can directly fetch the data from Database without loading it in to in memory?

How we can directly fetch the data from Database without loading it in to in memory?

1 Solution

Accepted Solutions
Kushal_Chawda

ODBC CONNECT .............

DIRECT QUERY

dimension

Name1,

Name2,

Name3,

measure

Amount1,

Amount2,

Amount3;

FROM Table_Name;

View solution in original post

11 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

What exactly you are trying to do.

Qlik is a in memory tool, so when data is loaded it will go to RAM only.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
kkkumar82
Specialist III
Specialist III

If I correctly get it , you mean not to use qvds rather loading data from database.

Other wise there is a concept known as Data discovery

Kushal_Chawda

You can use the Direct Discovery feature of QV 11.2 version. see this

Direct Discovery in Qlikview

Not applicable
Author

If we are using Direct Discovery in Qlikview, Do we have any limitations for the number of tables we are fetching from DB?

Kushal_Chawda

There is no limitation of Number of Tables. but there is limitations of features like you will not be able to use binary loads, calculated dimensions, section access, set analysis.

perumal_41
Partner - Specialist II
Partner - Specialist II

Not applicable
Author

I was using the following script for fetching the data from my DB, But I was getting some syntax errors.

Test_Table:

DIRECT QUERY

dimension

Name1,

Name2,

Name3,

measure

Amount1,

Amount2,

Amount3;

SQL SELECT

*

FROM "_DB_Name".dbo."_Table_Name";

I would appreciate your help.

Kushal_Chawda

ODBC CONNECT .............

DIRECT QUERY

dimension

Name1,

Name2,

Name3,

measure

Amount1,

Amount2,

Amount3;

FROM Table_Name;