×
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.
I can do this local query:
select l.system_table_schema, l.system_table_name, l.system_table_member,
l.number_rows, l.number_deleted_rows
from qsys2.syspartitionstat l
where l.system_table_schema = 'ERPLXF'
and l.system_table_name = 'IIM';
I can do this remote query:
select r.system_table_schema, r.system_table_name, r.system_table_member,
r.number_rows, r.number_deleted_rows
from gdihq.qsys2.syspartitionstat r
where r.system_table_schema = 'ERPLXF'
and r.system_table_name = 'IIM';
I can create a local table from a remote query:
create table qtemp.remote_count as(
select r.system_table_schema, r.system_table_name, r.system_table_member,
r.number_rows, r.number_deleted_rows
from gdihq.qsys2.syspartitionstat r
where r.system_table_schema = 'ERPLXF'
and r.system_table_name = 'IIM') with data;
But I am at 7.3 with recent PTF's.
I cannot join a local to a remote using either JOIN or the primitive WHERE
join.
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.