here is the solution:

create an empty "all_objects" table in the same schema as the geoserver to
Oracle db connection; this table will become a facade table for the
nonsensical call, bypassing the actual "all_objects" system view
e.g.:
create table <your geoserver login user>.all_objects
as
SELECT
         o.owner,
         o.object_name,
         o.object_type
    FROM all_objects o
   WHERE
1 = 0
;
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to