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

CR8 only seeing 256 characters of SQL DB record 2

Status
Not open for further replies.

mark929

Programmer
Nov 30, 2001
67
US
I'm pulling text from a SQL DB fed by a web form. The DB field is set "nvarchar" at 1000 charcters. The DB field is getting all the characters, but my CR8 report is only displaying what looks like 256 characters of the record. A physical increase in the report field makes no difference. Is there any way to increase the number of characters that can be displayed in my report field?

Thanks

Mark
 
I don't know if this is a restriction in CR8, but I'm using CR9 and it works fine. Reebo
Scotland (Raining)
 
All Crystal versions prior to 9 have a display limit of 255 characters. v9's display limit runs into thousands.

Use a SQL query to display the full field, if you need it. Or display the output split over more than one formula.

Naith
 
Naith,

Using formulas, do you mean create:
Formula1
left({memo_field},255)
Formula2
mid({memo_field},256,255)
etc.?

Also Naith,(sorry mark929 for posting this here) could you take a look at thread782-479507 as I reckon this is right up your street mate. Reebo
Scotland (Raining)
 
You can't do that to a memo field. But I was thinking along those lines for a varchar2 field - though I haven't tested it at all.

Naith
 
Thanks to all who replyed. Looks like I'll be requesting CR9 soon.

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top