I published oracle view in geoserver. using this link. But when I see this in layer preview I get following xml response:
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE ServiceExceptionReport SYSTEM "http://192.168.70.65:80/geoserver/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd"> <ServiceExceptionReport version="1.1.1" > <ServiceException code="internalError">
Rendering process failed
java.io.IOException
null
ORA-00904: "NEPALCLUSTER": invalid identifier
</ServiceException></ServiceExceptionReport>
CREATE OR REPLACE FORCE VIEW "myview"."d_DAILY" ("nepalCluster", "nepalclutter", "ZONE", "MI_PRINX", "MI_STYLE", "GEOLOC", "VAL") AS
select
c.nepalCluster,c.nepalclutter,c.zone,c.mi_prinx,c.mi_style,c.geoloc,NVL(coalesce(optz.VAL,opth.VAL),-1) VAL
from
CLUSTER_REGION c
left join
(select
*
from gDaily a) optz
on
optz.CELL_CLUSTER = c.nepalCluster
left join
(select
*
from zDaily b) opth
on
opth.CELL_CLUSTER = c.nepalCluster;