Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sakamsureshbabu
Creator
Creator

QVD

HOW QVDS CRATE

DATA IS IN IBEXPERT ( IT IS ONE OF DATA BASE)

DATA IS COLLECTING FORM SERVER

1 Solution

Accepted Solutions
its_anandrjs

Syntax for QVD creation is with STORE command and syntax is

STORE TableName into TableName.qvd;

Ex1:-

Tab1:

LOAD * Inline

[

COlA

a

b

];

STORE Tab1 into Tab1.qvd;

Ex2:-

Let vRawQvdPath = 'C:\YourFolder\Data\App_QVD';

Tab1:

LOAD * Inline

[

COlA

a

b

];

STORE Tab1 into $(vRawQvdPath)\Tab1.qvd;

View solution in original post

4 Replies
Gysbert_Wassenaar

Your caps lock key seems to be broken. Please buy a new keyboard.

And don't cross post:

Finally, read the help file. Look for the STORE command.


talk is cheap, supply exceeds demand
Anonymous
Not applicable

Hi

This is an example of how to create a QVD.


Customers:

Load

     Company,

     CompanyID,

     DivisionID,

     Country

     SQL SELECT *

     FROM Customers;

STORE Customers INTO $(vPathName) Customers.qvd;

Drop Table Customers;

Anonymous
Not applicable

If this is what you were looking for please mark as answered.

its_anandrjs

Syntax for QVD creation is with STORE command and syntax is

STORE TableName into TableName.qvd;

Ex1:-

Tab1:

LOAD * Inline

[

COlA

a

b

];

STORE Tab1 into Tab1.qvd;

Ex2:-

Let vRawQvdPath = 'C:\YourFolder\Data\App_QVD';

Tab1:

LOAD * Inline

[

COlA

a

b

];

STORE Tab1 into $(vRawQvdPath)\Tab1.qvd;