[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.9

Error: "The field is too small to accept the amount of data you attempted to add" When updating Memo field

Asked by shambalad in Microsoft Access Database

Tags: Microsoft, Access, 2003

I am have a routine that loads the SQL for a query to a memo field. When I run it I get an Error:
The field is too small to accept the amount of data you attempted to add.  (-2147217887)
I have tried trimming the string, but that is not fixing it.
As part of my debugging on this, I have been debug.printing the SQL and the length of the SQL String. The one that is abending has a length of 142. Interestingly enough, there is an earlier SQL string that is successfully loading out to the filed with a length of 145. Not sure what is going on here.
I create the table using ADOX. When I look at the table in Design view the 'SQL' field I am trying to update has a type of 'Memo'.
Can anyone explain to me why this is happening and what I can do to get this routine to work?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
Option Compare Database
Option Explicit
 
Public Sub LoadTblQueryList()
Dim rst As ADODB.Recordset
Dim qry As DAO.QueryDef
Dim strTable As String
Dim strSQL As String
Dim strQry As String
Dim strMsg As String
Dim lngLen As Long
On Error GoTo ErrorHandler
 
' Create tblQueryList
strTable = "tblQueryList"
If Not CreateTblQueryList(strTable) Then
   GoTo ExitSub
End If   'If Not CreateTblQueryList(strTable)
 
'Open the output table
Set rst = New ADODB.Recordset
rst.Open strTable, CurrentProject.Connection, _
         adOpenKeyset, adLockOptimistic, adCmdTable
 
' Get the SQL for the query
For Each qry In CurrentDb.QueryDefs
   strQry = qry.Name
   Debug.Print "Query: " & strQry
         
   strSQL = Trim(qry.SQL)
   lngLen = Len(strSQL)
   Debug.Print "Length: " & lngLen
   Debug.Print "SQL: " & strSQL
   
   rst.AddNew
   rst.Fields(0) = strQry
   rst.Fields(1) = strSQL  '<= Field is too small Error here
   rst.Update
Next
 
ExitSub:
Exit Sub
 
ErrorHandler:
DoCmd.Hourglass False
Select Case Err.Number
   ' Invalid SQL
   Case 3258
      strSQL = "Invalid query - ambiguous join"
      Resume Next
   Case Else
      strMsg = "Error: " & Err.Description & _
         " (" & Err.Number & ")" & NL & _
         "Query: " & strQry
   Debug.Print strMsg
   MsgBox strMsg
   Resume ExitSub
End Select
End Sub
 
 
Private Function CreateTblQueryList(strTable As String) As Boolean
Dim adxTbl As ADOX.Table
Dim cat As ADOX.Catalog
Dim strMsg As String
On Error GoTo ErrorHandler
 
Set cat = New Catalog
cat.ActiveConnection = CurrentProject.Connection
 
strTable = "tblQueryList"
Set adxTbl = New Table
With adxTbl
   .Name = strTable
   With .Columns
      .Append "QueryName", adVarWChar, 50
      .Append "QuerySQL", adLongVarWChar
   End With 'With .Columns
End With    'With adxTbl
 
cat.Tables.Append adxTbl
Set cat = Nothing
    
CreateTblQueryList = True
ExitFunction:
Exit Function
 
ErrorHandler:
DoCmd.Hourglass False
Select Case Err.Number
   ' Table already exists
   Case -2147217857
      cat.Tables.Delete strTable
      Resume
   Case Else
      strMsg = "Error: " & Err.Description & _
         " (" & Err.Number & ")"
   MsgBox strMsg
   Resume ExitFunction
End Select
End Function
[+][-]04/21/08 12:21 PM, ID: 21405050Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Microsoft Access Database
Tags: Microsoft, Access, 2003
Sign Up Now!
Solution Provided By: capricorn1
Participating Experts: 1
Solution Grade: A
 
[+][-]04/21/08 01:04 PM, ID: 21405433Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04/21/08 01:10 PM, ID: 21405487Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628