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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Server 16 char Text field as Memo field?

Status
Not open for further replies.

Burble

Programmer
Jun 23, 2000
1
US
I am trying to report/sort/etc. on a 16 character Text field. Crystal Reports 6 interprets the field as memo type and so no sorting/grouping/etc. The field is defined in the database as allowing NULLS. Does anyone have any suggestions on to how to get this field as a text field (and not a memo field)?
 
Have you check the database definition of the field?&nbsp;&nbsp;Even if the contents never exceed 16 characters, if it is defined as char(256) or varchar(256) or greater, SCR interprets it as a memo field.&nbsp;&nbsp;You can cast or convert it to varchar(255) or less and then SCR will treat it as a text field <p>Malcolm Wynden<br><a href=mailto:wynden@island.dot.net>wynden@island.dot.net</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top