Ok, here's a brief history:
-The database was originally created in MS Access and upgraded to SQL server.
- Eventually, changes were made to certain fields in one of the database tables because they were unused, obsolete, and/or confusing to the managers/users. These changes were made through an adp project. Also, these modified fields neither were primary keys nor were they indexed ...they served no purpose and contained no data.
- Basically, I could review and see the modified table in SQL Enterprise manager, but if I attempted to open the modified table through an access adp project, I'd get an error saying that <the old modified field name> does not exist. But the table would open up in design view showing the new/modified field name?
- I eventually found the problem in the sysproperties table where it apparently didn't register the name change of the field causing problems.
- I modified the sysproperties file to reflect the correct name change, but noticed that the fields that I deleted were still being referenced and the field sequencing seemed to reflect pre-modified conditions. The minor change seemed to fix the problem with opening the database table in adp project, but I noticed that there was an unusual hesitation when opening the modified database table. I assuming that the corrupted sysproperties table, which has fields that are out of sync and reference to non existing fields, is causing this hesitation.
Anyway I suppose I could manually modify the sysproperties table, but there are things in the table I'm unsure about and I'm reluctant to modify it anymore.