![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
This query runs OK SELECT Hosts.* FROM Hosts; but SELECT DISTINCT Hosts.* FROM Hosts; gives an error (No number) "The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data." Any ideas please Phil You likely have a Memo field in your table. DISTINct does not work with Memo |
#3
| |||
| |||
|
|
Phil wrote: This query runs OK SELECT Hosts.* FROM Hosts; but SELECT DISTINCT Hosts.* FROM Hosts; gives an error (No number) "The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data." Any ideas please Phil You likely have a Memo field in your table. DISTINct does not work with Memo fields. You have two options: 1. Explicitly list the fields in your table, ommitting the Memo field 2. If you must include the Memo field, use the Left function to only include the first 255 characters: select distinct field1, field2, left(memofield,255) as memo_extract ... |
![]() |
| Thread Tools | |
| Display Modes | |
| |