S
ssutton503
I have a table in which there was a Text field called 'txtPressNote'.
Originally, I set it to 250 characters but recently changed it to a Memo
field because 250 characters wasn't enough. I added more characters into the
memo field of a particular record but my existing query still only pulled
some of the info from the memo field. Here's the query:
SELECT DISTINCT tblJobTickets.JobNumber, tblJobs.intJobID,
tblJobs.txtJobName, tblJobs.txtJobDesc, tblJobs.intQuantity, tblJobs.intFold,
tblJobs.booLip, tblJobs.txtColor, tblJobs.txtPressFinishing,
tblJobs.txtPressNote, tblJobs.booMail, tblJobs.booInsert,
tblJobs.txtInsertDesc, tblJobs.txtBindNote, tblJobs.txtDestination,
tblJobs.dtBindery, tblJobs.dtCustomer, tblJobs.dtEntered, tblJobs.dtModified,
tblJobs.Status, tblJobs.txtUsername, tblJobs.intCustomerID,
tblJobs.intStatusSort, tblJobs.dtFilesDueIn, tblJobs.booPostOvers,
tblCustomers.txtLastName, tblCustomers.txtFirstName, tblCustomers.txtCompany,
tblCustomers.txtWorkPhone
FROM (tblJobTickets RIGHT JOIN tblJobs ON tblJobTickets.intJobID =
tblJobs.intJobID) INNER JOIN tblCustomers ON tblJobs.intCustomerID =
tblCustomers.intCustomerID
WHERE (((tblJobs.intJobID)=4817));
As I metioned earlier, the field in question is 'tblJobs.txtPressNote'. The
query above retrieves this for that field:
HOLD THESE COPIES @ TWO FOR SHIPPING AT LATER DATE
LAS VEGAS HILTON dist. Copies (1/2 fold) 400 Leave on skid (DO NOT POLY BAG
OR BOX FOR NOW) - These copies insert into the middle of the Nov. Main issue,
polybags, boxes & ships to Mailings Unlimited. Ad
This query:
SELECT tblJobs.intJobID, tblJobs.txtJobName, tblJobs.txtPressNote
FROM tblJobs
WHERE (((tblJobs.intJobID)=4817));
retrieves the entire information:
HOLD THESE COPIES @ TWO FOR SHIPPING AT LATER DATE
LAS VEGAS HILTON dist. Copies (1/2 fold) 400 Leave on skid (DO NOT POLY BAG
OR BOX FOR NOW) - These copies insert into the middle of the Nov. Main issue,
polybags, boxes & ships to Mailings Unlimited. Adding more and more text.
When will it stop?
I even put in a carriage return. WOW!!
Can I still keep typing? I guess so.
Does anyone have an explanation? As always, thanks for your time.
Originally, I set it to 250 characters but recently changed it to a Memo
field because 250 characters wasn't enough. I added more characters into the
memo field of a particular record but my existing query still only pulled
some of the info from the memo field. Here's the query:
SELECT DISTINCT tblJobTickets.JobNumber, tblJobs.intJobID,
tblJobs.txtJobName, tblJobs.txtJobDesc, tblJobs.intQuantity, tblJobs.intFold,
tblJobs.booLip, tblJobs.txtColor, tblJobs.txtPressFinishing,
tblJobs.txtPressNote, tblJobs.booMail, tblJobs.booInsert,
tblJobs.txtInsertDesc, tblJobs.txtBindNote, tblJobs.txtDestination,
tblJobs.dtBindery, tblJobs.dtCustomer, tblJobs.dtEntered, tblJobs.dtModified,
tblJobs.Status, tblJobs.txtUsername, tblJobs.intCustomerID,
tblJobs.intStatusSort, tblJobs.dtFilesDueIn, tblJobs.booPostOvers,
tblCustomers.txtLastName, tblCustomers.txtFirstName, tblCustomers.txtCompany,
tblCustomers.txtWorkPhone
FROM (tblJobTickets RIGHT JOIN tblJobs ON tblJobTickets.intJobID =
tblJobs.intJobID) INNER JOIN tblCustomers ON tblJobs.intCustomerID =
tblCustomers.intCustomerID
WHERE (((tblJobs.intJobID)=4817));
As I metioned earlier, the field in question is 'tblJobs.txtPressNote'. The
query above retrieves this for that field:
HOLD THESE COPIES @ TWO FOR SHIPPING AT LATER DATE
LAS VEGAS HILTON dist. Copies (1/2 fold) 400 Leave on skid (DO NOT POLY BAG
OR BOX FOR NOW) - These copies insert into the middle of the Nov. Main issue,
polybags, boxes & ships to Mailings Unlimited. Ad
This query:
SELECT tblJobs.intJobID, tblJobs.txtJobName, tblJobs.txtPressNote
FROM tblJobs
WHERE (((tblJobs.intJobID)=4817));
retrieves the entire information:
HOLD THESE COPIES @ TWO FOR SHIPPING AT LATER DATE
LAS VEGAS HILTON dist. Copies (1/2 fold) 400 Leave on skid (DO NOT POLY BAG
OR BOX FOR NOW) - These copies insert into the middle of the Nov. Main issue,
polybags, boxes & ships to Mailings Unlimited. Adding more and more text.
When will it stop?
I even put in a carriage return. WOW!!
Can I still keep typing? I guess so.
Does anyone have an explanation? As always, thanks for your time.