Link to home
Start Free TrialLog in
Avatar of srikumar_p
srikumar_p

asked on

Index with names _WA_Sys_

I have seen some indexes begining
with "_WA_Sys_". I tried to drop them, and I got the error "index is not present".

What are these indexes?

Thanks
Srikumar
Avatar of Jon_Raymond
Jon_Raymond

They could be constraints, not indexes.
Everything with _Sys_ is usually hidden and in use by the databaseprogram itself(SQL).

Under MS access you don't see these system objects, but you can 'unhide' them to check their contents. (If you have Access just check the System Objects in the Tools/Options panel (Under the View tab). You will see the MSys... tables.
I think that they are statistics rather than indexes. They are created automatically when you have auto update statistics enabled.
Avatar of srikumar_p

ASKER

When I am selecting all the indexes, this too is getting selected. What I can I do to avoid these (bogus) indexes from getting selected?
Within Access the only way to exclude them (when selecting each item of the table collection) is the explicit test for found items starting with the "MSys" characters and ignore them for further processing.
 
ASKER CERTIFIED SOLUTION
Avatar of Gustavo Perez Buenrostro
Gustavo Perez Buenrostro

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial