I was asked to help someone in my office who got an error message while using an Access MDB that she uses regularly, and had never previously had a problem with. The error message was “Property value is
too large.” When I clicked the "help" button, I also got this: “Property setting cannot be larger than 2K. (Error 3309) You are trying to set a property value of an object to a size greater than the largest permissible size of 2K. Shorten the length of the property value.”
It was an update statement that prompted this error. Here is the SQL view of it:
UPDATE [Address Master] INNER JOIN 60DAY1651 ON [Address Master].[District Number] = [60DAY1651].[District Number] SET 60DAY1651.[District Name] = [Address Master].[District Name], 60DAY1651.[District Address] = [Address Master].[District Address], 60DAY1651.[District City] = [Address Master].[District City], 60DAY1651.[District State] = [Address Master].[District State], 60DAY1651.[District Zip] = [Address Master].[District Zip], 60DAY1651.[Phone Number] = [Address Master].[Phone Number];
I've looked up this error message online, and it seems that people frequently encounter it when using a table with too many fields, but that's not the case here. "Address Master" has seven fields and "60DAY1651" has 23 fields.
But there are a lot of tables in the DB--720+. The database has a size of about 613MB.
It's not clear to me what property value is the problem here. To make matters more confusing, when I tried running the update statement, it worked--no error. So then a created a new table and a new update statement, executed, and got the same error. But then I tried again, and it worked fine a minute later. Anyone have any idea what's going on here?
Thanks,
Nate