Memo Field Truncating in Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've run into a field truncation problem seemingly seperate from the others
I've seen listed in the group. If I run a simple query, linking two tables
together based upon other non-memo fields, the data in my memo field is
truncated at 499 characters. I am not sorting or grouping my results in any
way. How can I retain all of the data within those memo fields in my queries?
 
Below is my SQL view:

SELECT Ideabase.Name, IdeabaseIdea.CreationOrder, IdeabaseIdea.Value,
IdeabaseIdea.Category, IdeabaseIdea.Status
FROM Ideabase INNER JOIN IdeabaseIdea ON Ideabase.IdeabaseId =
IdeabaseIdea.IdeabaseId;
 
Are both Ideabase and IdeabaseIdea tables or are one or both queries? If you
open them individually, do you see all characters?
 
I'm at a loss since I have never experienced or heard of this happening
without the conditions that I mentioned.
 
Back
Top