Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by iq193

  1. iq193

    ORA-01114: IO error writing block to file

    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...
  2. iq193

    Why can't you include a MEMO field while grouping?

    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
  3. iq193

    Why can't you include a MEMO field while grouping?

    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...

Part and Inventory Search

Back
Top