The following error appeared on application side while trying to deploy the new SRF on the application, as you see from the above error it’s database error and to solve it follow the below steps :-
from database side :-
sqlplus /as sysdba
From the above picture check the index name and put it inside this query :-
select owner,index_name,table_name,status from dba_indexes where index_name=’index_name’;
OWNER INDEX_NAME TABLE_NAME STATUS
—– ———- ———- ——
owner index_name table_name INVALID
alter index ndex_name rebuild;
Try again
Cheers
Osama
Like this:
Like Loading...
Related
Published by Osama Mustafa
Osama considered as one of the leaders in Cloud technology, DevOps and database in the Middle-East. I have more than ten years of experience within the industry. moreover, certfied 4x AWS , 4x Azure and 6x OCI, have also obtained database certifications for multiple providers.
In addition to having experience with Oracle database and Oracle products, such as middle-ware, OID, OAM and OIM, I have gained substantial knowledge with different databases.
Currently, I am architecting and implementing Cloud and DevOps. On top of that, I'm providing solutions for companies that allow them to implement the solutions and to follow the best practices.
View all posts by Osama Mustafa
make partintioning index
LikeLike