ACC2002: "Server Error 134" Error Message When You Attempt to Upsize Your Database (282390)
The information in this article applies to:
This article was previously published under Q282390 IMPORTANT: This article contains information about modifying the registry. Before you
modify the registry, make sure to back it up and make sure that you understand how to restore
the registry if a problem occurs. For information about how to back up, restore, and edit the
registry, click the following article number to view the article in the Microsoft Knowledge Base:
256986 Description of the Microsoft Windows Registry
Moderate: Requires basic macro, coding, and interoperability skills.
This article applies only to a Microsoft Access database (.mdb).
SYMPTOMS
When you attempt to upsize your database, you may receive an error message similar to the following:
Server Error 134: The variable name '@Forms......' has already been declared. Variable names must be unique within a query batch or stored procedure.
Server Error 170: Line 7: Incorrect syntax near ')'.
CAUSE
This behavior can occur if queries in your database contain parameters that match through the first 30 characters. For example, the following query produces the error message:
PARAMETERS [123456789012345678901234567890start] DateTime, [123456789012345678901234567890end] DateTime;
SELECT item, date
FROM Table1
WHERE date Between [123456789012345678901234567890start] And [123456789012345678901234567890end];
Note that this query contains two parameters that match each other through the first 30 characters:
- [123456789012345678901234567890start] DateTime
- [123456789012345678901234567890end] DateTime
RESOLUTION
To resolve this issue, change the parameter names in such a way that they differ within the first 30 characters. For example, if your query contains the following two parameters
- [123456789012345678901234567890start] DateTime
- [123456789012345678901234567890end] DateTime
you can change the parameters to the following:
- [start123456789012345678901234567890] DateTime
- [end123456789012345678901234567890] DateTime
Note that the Upsizing Wizard accepts only the first 30 characters, so the resulting SQL query contains the following parameters:
- (@start1234567890123456789012345) DateTime
- (@end123456789012345678901234567) DateTime
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. REFERENCESFor more information about upsizing your database, click Microsoft Access Help on the
Help menu, type upsize in the Office Assistant or
the Answer Wizard, and then click Search to view the topics
returned.
For more information about parameter queries, browse to the following Microsoft Web site:
Modification Type: | Minor | Last Reviewed: | 5/30/2006 |
---|
Keywords: | kbbug kbnofix KB282390 |
---|
|