P
Pendragon
The simplest things can be the most confusing sometimes.....
Trying to run what I thought was a basic update query.
UPDATE zTempCB INNER JOIN [Chargeback Users] ON zTempCB.APPROVER_ID =
[Chargeback Users].APPROVER_ID SET [Chargeback Users].Role =
[ztempcb].[rolename];
zTempCB was a table created because there were multiple Roles for an
Approver_ID, and I only needed a Max value.
When I run this query, I get "Record Too Large." I don't understand what
this means. [Role] is a text field set to 255 characters by default. There
are no null values in [Rolename] and the max char length of [Rolename] for
any record is 35. The complete recordset of zTempCB is 170 records and the
matched recordset (changing the update query to a select query) is 184
records. Yes, there are multiple instances of Approver_ID in the destination
table and for each instance of an Approver_ID the role is updated to the same
value. No big deal, correct?
What am I missing?
Thanks in advance.
Trying to run what I thought was a basic update query.
UPDATE zTempCB INNER JOIN [Chargeback Users] ON zTempCB.APPROVER_ID =
[Chargeback Users].APPROVER_ID SET [Chargeback Users].Role =
[ztempcb].[rolename];
zTempCB was a table created because there were multiple Roles for an
Approver_ID, and I only needed a Max value.
When I run this query, I get "Record Too Large." I don't understand what
this means. [Role] is a text field set to 255 characters by default. There
are no null values in [Rolename] and the max char length of [Rolename] for
any record is 35. The complete recordset of zTempCB is 170 records and the
matched recordset (changing the update query to a select query) is 184
records. Yes, there are multiple instances of Approver_ID in the destination
table and for each instance of an Approver_ID the role is updated to the same
value. No big deal, correct?
What am I missing?
Thanks in advance.