ACC2000: View Designer Does Not Display Field Names in an Access Project (266148)
The information in this article applies to:
This article was previously published under Q266148 Moderate: Requires basic macro, coding, and interoperability skills.
This article applies only to a Microsoft Access project (.adp).
SYMPTOMS
When you create a view in an Access project, the field list in the View designer does not display any field names. The field list shows only *(All Columns).
CAUSE
The Access project is attached to a Microsoft SQL Server or Microsoft Data Engine (MSDE) database that has a space or a hyphen in the database name or the database name starts with a number.
RESOLUTION
In SQL Server or MSDE, change the database name so that it does not contain a space or the hyphen and does not start with a number.
You can rename the database by using the the stored procedures sp_dboption and sp_renamedb. The following example changes the name of the database from "MyDB Name" to "MyNewDBName."
EXEC sp_dboption 'MyDB Name', 'single user', 'TRUE'
EXEC sp_renamedb 'MyDB Name', 'MyNewDBName'
EXEC sp_dboption 'MyNewDBName', 'single user', 'FALSE'
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 1/26/2005 |
---|
Keywords: | kbbug kbnofix KB266148 |
---|
|