H
Harold
I am fearful of modifying the unicode property programtically with the
following snippe
Application.CurrentDb.TableDefs("Table1").Fields("Field1").Properties("UnicodeCompression").Value = True
I have some 30 tables that participate in relationships that I would like to
set uncode to yes to see if the performance can be imporved.
When I set the property manually I get messages during the save "Errors were
encountered during the save opoeration. "Data type were not changed." ..
"Indexes were not added or changed". If I manually delete the relationship
there is no issue with the save.
Because of the number of changes required the VBA snippet would work well
but I have no idea what is happening to the Indexes and relationships in the
darkness of night so to speak. If I do it manually, first deleting the
relationship and then restablishing the relationship I have a higher degree
of confidence but it is a lot of steps and work I could easily mess up.
Does anyone know what I can expect if I use the VBA snippet?
following snippe
Application.CurrentDb.TableDefs("Table1").Fields("Field1").Properties("UnicodeCompression").Value = True
I have some 30 tables that participate in relationships that I would like to
set uncode to yes to see if the performance can be imporved.
When I set the property manually I get messages during the save "Errors were
encountered during the save opoeration. "Data type were not changed." ..
"Indexes were not added or changed". If I manually delete the relationship
there is no issue with the save.
Because of the number of changes required the VBA snippet would work well
but I have no idea what is happening to the Indexes and relationships in the
darkness of night so to speak. If I do it manually, first deleting the
relationship and then restablishing the relationship I have a higher degree
of confidence but it is a lot of steps and work I could easily mess up.
Does anyone know what I can expect if I use the VBA snippet?