I've created a function (get_lob) to return a value which I'm trying to use in a view. My view has about 35,000 records and only the last record has a value returned from the function, the rest are null. Any ideas? See below for the jest of the view script.
CREATE OR REPLACE FORCE VIEW TEST_VIEW
(ASSET_ID, ASSET_CLASS, LINE_O_BIDNUSS)
AS
SELECT obj_code, obj_class, get_lob (obj_code)
FROM r5objects
WHERE obj_obrtype = 'A';
Thanks for any help,
geerae
CREATE OR REPLACE FORCE VIEW TEST_VIEW
(ASSET_ID, ASSET_CLASS, LINE_O_BIDNUSS)
AS
SELECT obj_code, obj_class, get_lob (obj_code)
FROM r5objects
WHERE obj_obrtype = 'A';
Thanks for any help,
geerae