ACC: "Too many fields defined" Error Message in Update QueryID: Q154070
|
Moderate: Requires basic macro, coding, and interoperability skills.
When you run an update query with more than 127 fields selected, you may
receive the error message, "Too many fields defined." However, this same
query will run correctly when you select 127 fields or fewer.
The Microsoft Jet database engine has an internal limit of 255 fields per
query. As the Microsoft Jet database engine iterates through the records in
an update query, it creates a field for the original value and a field for
the updated value. When more than 127 fields are selected, it reaches the
255 field limit of a query.
Consider the following SQL for an update query:
UPDATE Table SET A=B, C=D
SELECT A,B,C,D
FROM Table
Break down the update query into multiple update queries with 127 or fewer
fields per query.
-or-
Update the fields by using a recordset in Visual Basic for Applications.
For more information about updating recordsets, search the Help Index for
"Update Method."
' ****************************************************************
' Declarations section of the module
' ****************************************************************
Option Compare Database
Option Explicit
' ****************************************************************
' The Fill_Table() function creates a table in the current database
' named Field Test with 128 fields, each of which has a Text data
' type and a size of five characters.
' ****************************************************************
Function Fill_Table ()
Dim mydb As Database
Dim tbl As TableDef
Dim fld As Field
Dim i As Integer
Set mydb = CurrentDb()
Set tbl = mydb.CreateTableDef("Field Test")
For i = 0 To 127
Set fld = tbl.CreateField("Field" & CStr(i + 1))
fld.type = DB_TEXT
fld.size = 5
tbl.fields.Append fld
Next i
mydb.tabledefs.Append tbl
End Function
' ****************************************************************
' The Fill_Data() function adds one record to the table with
' all fields equal to "Text."
' ****************************************************************
Function Fill_Data()
Dim mydb As DATABASE
Dim fld As Field
Dim rs As Recordset
Dim i as Integer
Set mydb = CurrentDb()
Set rs = mydb.OpenRecordset("Field Test")
rs.AddNew
For i = 0 to rs.Fields.Count - 1
rs.Fields(i).Value = "Text"
Next i
rs.UPDATE
rs.Close
End Function
' ****************************************************************
' The Build_SQL() function creates an update query in the current
' database named Update Test which will update the 128 fields in
' the Field Test table to the letter 'T.'
' ****************************************************************
Function Build_SQL()
Dim mydb As DATABASE
Dim qdf As QueryDef
Dim x As String
Dim i As Integer
x = "Update [Field Test] SET "
For i = 0 To 127
x = x + "[Field Test].Field" & CStr(i + 1) & " = 'T', "
Next
x = Left(x, Len(x) - 2)
Set mydb = CurrentDb()
Set qdf = mydb.CreateQueryDef("UpdateTest", x)
End Function
? Fill_Table()
? Fill_Data()
? Build_SQL()
For more information about the "Too many fields defined" error message,
please see the following article in the Microsoft Knowledge Base:
Q128221 ACC: "Too Many Fields Defined" Error Message Saving Table
Keywords : kberrmsg QryUpdat
Version : 1.0 1.1 2.0 7.0 97
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 28, 1999