×
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.
Should work. Keep in mind though that if the schema has no tables defined
in it you won't see it in that list. For example
CRTLIB ROB42
select char(table_schema,10) libname, count(*) objc
from qsys2/systables
where substr(table_schema,1,3) ='ROB'
group by table_schema
ORDER BY TABLE_SCHEMA
select char(table_schema,10) libname, count(*) objcx
from qsys2/systables
where substr(table_schema,1,3) ='ROB'
group by table_schema
ORDER BY TABLE_SCHEMA
gets same list, no ROB42 still.
CREATE TABLE ROB42/DUH (MYCHAR CHAR (10 ) NOT NULL WITH DEFAULT)
Now when I run the sql, it appears
And when I create a DDS file the number of tables is bigger
CRTPF FILE(ROB42/HOURSSUM) SRCFILE(ROB/QDDSSRC)
Apparently DDS physical files are in this view. SQL tables are in this
view. Tables created with no dds and no sql are not.
Rob Berendt
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.