Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 167 characters in body
Source Link
TobyLL
  • 2.4k
  • 2
  • 21
  • 25

Try looking in SYS.INDEXES:

select * from SYS.INDEXES where IXNAME = 'EMP_DEPARTMENT_IX' 

Sounds like you are not the owner of the index, as you have noted. As long as your user can access the table data, then the index should be used by the optimizer.

Try looking in SYS.INDEXES:

select * from SYS.INDEXES where IXNAME = 'EMP_DEPARTMENT_IX' 

Try looking in SYS.INDEXES:

select * from SYS.INDEXES where IXNAME = 'EMP_DEPARTMENT_IX' 

Sounds like you are not the owner of the index, as you have noted. As long as your user can access the table data, then the index should be used by the optimizer.

Source Link
TobyLL
  • 2.4k
  • 2
  • 21
  • 25

Try looking in SYS.INDEXES:

select * from SYS.INDEXES where IXNAME = 'EMP_DEPARTMENT_IX'