The error message indicates that you do not have enough space in the datafiles associated with a tablespace. You can determine which tablespace is affected by querying DBA_DATA_FILES.
Adding a 2nd tempfile does not alleviate the problem. You must add the additional datafile to the affected...
you forgot to prepend a null in your clause it should read:
select test.sex, ''+memofield
from test
group by test.sex, ''+memofield
the 2 quotes are the null character that you are prepending, this forces Access to treat it as a fixed length string
You can include a memo field in a 'group' clause. The trick is to make Access treat it as something other than a memo.
to do this simply prepend a null to the memo field. For example if your memo field was named 'COMMENTS' then your group clause would resemble: group by ''+COMMENTS.
This...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.