Skip to main content
Announcements
The way to achieve your own success is the willingness to help somebody else. Go for it!
cancel
Showing results for 
Search instead for 
Did you mean: 
pduplessis
Partner - Contributor III
Partner - Contributor III

Where Clause in QVD load

I have an app loading incremental data daily. In the past something caused us to load a whole batch of data, and now I have discovered a problem with this load.

Fortunately, we load the file name in the initial load and save the data to a QVD.

I want to "fix" this data, first by excluding the bad data from the QVD.

I was hoping I could use something like this:

FROM

(qvd)

where FileName < > 'PO_DUMP_02-25to07-18.csv'

;

Unfortunately QV doesn't like <> for not equal on the QVD load. Could somebody help with the syntax here, I have tried a bunch of diffreent things.

Thanks

1 Solution

Accepted Solutions
Not applicable

try

FROM

(qvd)

where (not FileName = 'PO_DUMP_02-25to07-18.csv')

;

View solution in original post

2 Replies
Not applicable

try

FROM

(qvd)

where (not FileName = 'PO_DUMP_02-25to07-18.csv')

;

pduplessis
Partner - Contributor III
Partner - Contributor III
Author

Thanks, I appreciate the help.