Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
carlos13
Creator
Creator

removing rows

How removing  rows starting with PE a field in the load?

1 Solution

Accepted Solutions
Not applicable

There are several ways to accomplish this filter, besides the wildmatch mentioned above, can also use the keyword LIKE.

 

Ex.:

WHERE  YOUR_FIELD LIKE 'PE*'

OR NEGATIVE EXPRESSION

WHERE  NOT (YOUR_FIELD LIKE 'PE*')

View solution in original post

4 Replies
Gysbert_Wassenaar

By not loading them in the first place:

Data:

Load * from ...somesource...

where not wildmatch(MyField,'PE*');



talk is cheap, supply exceeds demand
Not applicable

There are several ways to accomplish this filter, besides the wildmatch mentioned above, can also use the keyword LIKE.

 

Ex.:

WHERE  YOUR_FIELD LIKE 'PE*'

OR NEGATIVE EXPRESSION

WHERE  NOT (YOUR_FIELD LIKE 'PE*')

manideep78
Partner - Specialist
Partner - Specialist

LOAD * from DataSource

..................

.......................

where NOT(Field_Name LIKE 'PE*');

carlos13
Creator
Creator
Author

thank you