I am using Link Table between Ms Access and Outlook
I wanted to create a query keeping only 3 fields (Subject, Contents and Received)
This query is creating a new Table called New _Table
SELECT my_table.Subject, LEFT(my_table.Contents, 1000), my_table.Received INTO New_Table
FROM my_table;
Contents field has a data type set to Long Text but when running my query is changing to short text and it is keeping only 255 char. I wanted to be able to have 1000 char.
What I am missing ?
I wanted to create a query keeping only 3 fields (Subject, Contents and Received)
This query is creating a new Table called New _Table
SELECT my_table.Subject, LEFT(my_table.Contents, 1000), my_table.Received INTO New_Table
FROM my_table;
Contents field has a data type set to Long Text but when running my query is changing to short text and it is keeping only 255 char. I wanted to be able to have 1000 char.
What I am missing ?