trevorwilliams2
Programmer
I have a query that appends a record to a notes table.
The notes field in this table is set to Memo.
The output to the memo field, from the query, is limited to 255 characters with the last few characters being Japanese / Kanji.
The source data appears fine.
I have tried the following suggestions:
Made sure “group by“ is not being used in my SQL.
In query properties unique values is set to no.
I haven’t been able to figure this one out yet.
Any suggestions would be much appreciated.
Access 2003
My SQL:
INSERT INTO NOTES ( NoteProjCode, NoteConID, NoteAuthor, NoteType, NoteIssueID, NoteDate, NoteMemo, NoteHyperlink, DateUpdated, UpdatedBy )
SELECT DIRECTORY.DirProjCode, DIRECTORY.DirConID, [Forms]![PROJECTS]![PROJECTS_DIRECTORY]![DirConID] AS Author, "DIRECTORY EMAIL" AS [Note Type], [Forms]![frmDirectoryContactTransactions]![TextTransactionIssue] AS Issue, Date() AS [Note Date], [Forms]![frmDirectoryContactTransactions]![TextMessageBody] AS [Note], [Forms]![frmDirectoryContactTransactions]![TextEmailLocation] AS [Note Link], Now() AS Updated, fOSUserName() AS [Updated By]
FROM DIRECTORY
WHERE (((DIRECTORY.DirProjCode)=[Forms]![PROJECTS]![ProjCode]) AND ((DIRECTORY.DirConID)=[Forms]![PROJECTS]![PROJECTS_DIRECTORY]![DirConID]));
The notes field in this table is set to Memo.
The output to the memo field, from the query, is limited to 255 characters with the last few characters being Japanese / Kanji.
The source data appears fine.
I have tried the following suggestions:
Made sure “group by“ is not being used in my SQL.
In query properties unique values is set to no.
I haven’t been able to figure this one out yet.
Any suggestions would be much appreciated.
Access 2003
My SQL:
INSERT INTO NOTES ( NoteProjCode, NoteConID, NoteAuthor, NoteType, NoteIssueID, NoteDate, NoteMemo, NoteHyperlink, DateUpdated, UpdatedBy )
SELECT DIRECTORY.DirProjCode, DIRECTORY.DirConID, [Forms]![PROJECTS]![PROJECTS_DIRECTORY]![DirConID] AS Author, "DIRECTORY EMAIL" AS [Note Type], [Forms]![frmDirectoryContactTransactions]![TextTransactionIssue] AS Issue, Date() AS [Note Date], [Forms]![frmDirectoryContactTransactions]![TextMessageBody] AS [Note], [Forms]![frmDirectoryContactTransactions]![TextEmailLocation] AS [Note Link], Now() AS Updated, fOSUserName() AS [Updated By]
FROM DIRECTORY
WHERE (((DIRECTORY.DirProjCode)=[Forms]![PROJECTS]![ProjCode]) AND ((DIRECTORY.DirConID)=[Forms]![PROJECTS]![PROJECTS_DIRECTORY]![DirConID]));