When i am generating a report, I get “java.sql.SQLException: ORA-08103: object no longer exists”.Code below
con = commonDB.getConnection();
st = con.createStatement();
rs = st.executeQuery(selQuery);
while (rs.next()) {
epfForm3Bean = new AaiEpfform3Bean();
.......
.......
form3DataList.add(epfForm3Bean);
}
We have generated this report many times;but didn’t get this exception.Today we generated this report i got exception.please help me
according to given inputs it seems you are referring to an object that does not exist.
for instance it may a table which does not exists.
1. you can change the object
or
2.you can create a new object with same name.
hope it helps ,give more details to help you better
check this