H
hpmsnell
I think this may be answered in other questions, but I'm unable to tease it
out.
I've a pass-through query
select mem.empi,
mem.MEME_FIRST_NAME||' '||mem.MEME_LAST_NAME Member,
mem.MEME_LAST_NAME LastName,
trunc(mem.MEME_BIRTH_DT) dob,
min(addr.SBAD_ADDR1) add1,
min(addr.SBAD_ADDR2) add2,
min(addr.SBAD_CITY) city,
min(addr.SBAD_STATE) state,
substr(min(addr.SBAD_ZIP),1,5) zipcode
from hprpt.cmc_meme_member mem
inner join hprpt.cmc_sbad_addr addr
on mem.SBSB_CK = addr.SBSB_CK
group by mem.empi,
mem.MEME_FIRST_NAME||' '||mem.MEME_LAST_NAME,
mem.meme_last_name,
trunc(mem.MEME_BIRTH_DT)
;
Can I add a prompt criterion or a reference to a Forms!myform!myobject.value
field to this pass though so that the processing takes place on the dbms side
(Oracle)? Right now, my application acts like it's bringing the queried
tables (very large) local.
thanks,
hpmsnell
out.
I've a pass-through query
select mem.empi,
mem.MEME_FIRST_NAME||' '||mem.MEME_LAST_NAME Member,
mem.MEME_LAST_NAME LastName,
trunc(mem.MEME_BIRTH_DT) dob,
min(addr.SBAD_ADDR1) add1,
min(addr.SBAD_ADDR2) add2,
min(addr.SBAD_CITY) city,
min(addr.SBAD_STATE) state,
substr(min(addr.SBAD_ZIP),1,5) zipcode
from hprpt.cmc_meme_member mem
inner join hprpt.cmc_sbad_addr addr
on mem.SBSB_CK = addr.SBSB_CK
group by mem.empi,
mem.MEME_FIRST_NAME||' '||mem.MEME_LAST_NAME,
mem.meme_last_name,
trunc(mem.MEME_BIRTH_DT)
;
Can I add a prompt criterion or a reference to a Forms!myform!myobject.value
field to this pass though so that the processing takes place on the dbms side
(Oracle)? Right now, my application acts like it's bringing the queried
tables (very large) local.
thanks,
hpmsnell