Gotcha – (qvd) is an important part of LOAD QVD
syntax
When using a
LOAD statement that targets a QVD file the typical syntax is:
LOAD
*
FROM
Qvd_path_filename.QVD (qvd)
;
Please don’t
forget that “(qvd)” part. Even though the syntax of the LOAD command denotes it
is optional and QVW will not complain about its absence, unpredictable things
can happen in the LOAD statement when it isn’t stated.
Without it,
you may see only a subset of my QVD rows returned even though no syntax is in
place to restrict the rows returned.
Bad:
LOAD
*
FROM
[Qvd_path_filename.QVD]
;
may return only a small subset of rows
Good:
LOAD
*
FROM
[Qvd_path_filename.QVD] (qvd)
;

No comments:
Post a Comment