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?
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.