×
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.
Are you sure about that? Are you saying that I can't do this:
STRSQL
create table rob.deletemex as (
select * from gdihq.erplxf.rco)
with data
Table DELETEMEX created in ROB.
insert into rob.deletemex (
select * from gdihq.erplxf.rco)
8 rows inserted in DELETEMEX in ROB.
gdihq is a remote IBM i database
<snip>
Remote three-part naming is nothing new and has been around since IBM i
7.1.
</snip>
https://www.ibm.com/developerworks/ibmi/library/i-improved-database-interoperability-sql-rdb/i-improved-database-interoperability-sql-rdb-pdf.pdf
I was given to believe that Deiter's product allows other databases to be
part of this. I believe he does it by filling in this parameter
Application requester driver: ARDPGM
in the ADDRDBDIRE command. Hence the name: ARDGATE. You can roll your
own if you want to.
It gets a little irritated with some operations such as
select lcl.cmpny, lcl.cmpnam, rmt.cmpnam
from erplxf.rco lcl, gdihq.erplxf.rco rmt
where lcl.cmpny = rmt.cmpny
Statement references objects in multiple databases. (SQL0512)
select lcl.cmpny, lcl.cmpnam, rmt.cmpnam
from erplxf.rco lcl left outer join gdihq.erplxf.rco rmt
on lcl.cmpny = rmt.cmpny
Statement references objects in multiple databases.
Tried to get this fixed but IBM told me to get off.
https://www.ibm.com/developerworks/rfe/execute?use_case=viewRfe&CR_ID=94447
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.