Home > front end >  ORACLE: functions
ORACLE: functions

Time:03-11

I was looking at some functions on my database and realized one of them has an red x on it, what does it mean? is there an issue with that function?

error

CodePudding user response:

The red X indicates that the database object is invalid.

SELECT * 
FROM user_objects 
WHERE status = 'INVALID';

Probably underlying table/columns have changed.

  • Related