Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to create QVD from microsoft access file?

Hi,

I have problems to create the QVD file from Microsoft Access file?

I'm still new in Qlikview.

Can anyone help me?

Regards,

Kama

1 Solution

Accepted Solutions
ashfaq_haseeb
Champion III
Champion III

Hi,

Try like this

Your Connection string

Class:

LOAD `Account Class`,

    `Account Class ID`;

SQL SELECT *

FROM `Account Class`;

STORE Class into Class.qvd(qvd);

Regards

ASHFAQ

View solution in original post

8 Replies
tresesco
MVP
MVP

Create an OLEDB connection and use that connection string.

ashfaq_haseeb
Champion III
Champion III

Hi,

Try like this

Your Connection string

Class:

LOAD `Account Class`,

    `Account Class ID`;

SQL SELECT *

FROM `Account Class`;

STORE Class into Class.qvd(qvd);

Regards

ASHFAQ

prma7799
Master III
Master III

Hi,

i- Connect Microsoft Access for fetching table which is present in the database see below

Untitled2.png

ii-Go to Select option which highlighted in red mark below

Untitled.png

iii-STORE Tab1 into Tab1.qvd;

Thanks,

prma7799
Master III
Master III

Untitled.png

prma7799
Master III
Master III

Hi,

Can you close this thread by marking it as answer.

Regards

Prashant

its_anandrjs

Hi,

Make the connection string with the ODBC connection

ODBC CONNECT TO [MS Access Database;DBQ=C:\EData.accdb];


Descript:

SQL SELECT *
FROM Descriptor;


Store Descript into Descript.qvd; 


Regards,

Anand

prma7799
Master III
Master III

Hi,

Can you close this thread by marking it as answer.

Regards

Prashant

Chamini2020
Contributor
Contributor

Can you help me find the error in the below , as there is an error when loading when creating QVD file from ACCESS 

LIB CONNECT TO 'QTSales';

REM LOAD ID,
OrderID,
ProductID,
Quantity,
Sales,
Discount,
"COS",
GP;
SQL SELECT ID,
OrderID,
ProductID,
Quantity,
Sales,
Discount,
"COS",
GP
FROM "E:\EXE\MY DASH BOARDS\EXERCISE 3\DATA\QTSales.mdb"."Order Details";

Store OrderDetails into 'lib://QTSales/OrderDetails.qvd' (qvd);