×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Ok, those might have some potential. There is a difference between:
SELECT cast(left(TABLE_SCHEM,10) as char(10)) as library,
cast(left(SYSTEM_COLUMN_NAME,10) as char(10)) as column,
cast(left(TABLE_NAME,10) as char(10)) as table,
COLUMN_NAME
FROM sysibm.sqlcolumns WHERE table_schem = 'ROBXLIB'
LIBRARY COLUMN TABLE COLUMN_NAME
ROBXLIB MYCOL MYTABLE MYCOL
and:
SELECT cast(left(TABLE_SCHEMa,10) as char(10)) as library,
cast(left(COLUMN_NAME,10) as char(10)) as column,
cast(left(TABLE_NAME,10) as char(10)) as table
FROM qsys2.columns WHERE table_schema = 'ROBXLIB'
No data selected for output.
GRTOBJAUT OBJ(ROBXLIB) OBJTYPE(*LIB) USER(*PUBLIC) AUT(*use)
GRTOBJAUT OBJ(ROBXLIB/MYTABLE) OBJTYPE(*FILE) USER(*PUBLIC) AUT(*USE)
then allowed DUMMY to find it in QSYS2.COLUMNS
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 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.