Hi I would like to ask for help on Oracle SQL.
I have a View that is accessible to specific users but suddenly today 1 of those users output is always "No Rows Selected". Object grants are present to select on that view but still no rows are being generated.
For a brief example of my observation.
Main Table is Personal_File
View is Personal_File_v which is only select column1, column2, column3,... from Personal_File
User1 is hr_inquiry
User2 is hr_users
User3 is hr_inquiry1 (Created from the Script of hr_inquiry)
running Select * from Personal_file_v
hr_inquiry has no output / no row selected
hr_users generated all data
hr_inquiry1 generated all data
Also tried recreating the view but still has the same problem
Can anyone help me? or where to look on how to fix this?
Thanks!