|
Hey folks I’m trying to find everywhere in all my pf’s where a certain string is and the string is a name. Does anyone know the syntax that I have to use for that? ive looked at qsh find but cant get it to work.
What about using SQL and regular expressions together - it runs across all
libraries/files/fields aka. schemas/tables/columns
Here I use this feature to list all columns with digits
Select *
from qsys2.syscolumns
where regexp_like (column_name , '[0-9]' );
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.