Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Regarding DB issue

Hi All,

currently  we are using ORACLE as our DB, i loaded data from DB using ODBC connection as follows

Load

Pnum,

pname,

location,

resource

SQL SELECT * from Tab1;

My problem is my Qlikview taking almsot 1 Hour to load 10000 records(I have licence for QV)

I don't Know why it is happening. is there any problem with " SQL SELECT * "  ?

i'm new to QLIKVIEW, Please give me suggestion on this issue.

i'm waiting fast response from you.

Thanks,

Vamsi.

3 Replies
swuehl
MVP
MVP

Have you tried to SELECT only the fields you are actually using? So that the load on your DB / network is probably minimized?

Not applicable
Author

Hi Swuehi,

Thanks for reply, you mean i have to load as follows?

SELECT

Pnum,

pname,

location,

resource

from tab1;

if it is correct, we are unable to use QLIKVIEW Functions right?

if we use " SQL SELECT * ",  is it all the data from Table?

Give me suggestion pls

Thanks,

Chiru

Anonymous
Not applicable
Author

No, he means this:

Load

Pnum,

pname,

location,

resource

;

SQL

SELECT

Pnum,

pname,

location,

resource

from tab1;

all functions can be used in the "Load" part.

Regards,

Michael