I have never seen STRSQL not show records due to non-displayable characters.
In the older emulator versions, non-displayable characters could break your
display session.
You can test your theory by outputting to a file instead (F13 --> set
'SELECT output' to 3).
I suspect your issue lies with where you place your selection criteria (JOIN
clause versus WHERE clause). I suggest moving the selection into the JOIN
clause and seeing if you get the result set you're interested in, i.e.:
SELECT CCSESS.SSCCST, CCSESS.SSCCXE,CCSESD.SDCCSS, CCSESS.SSCYMD,
CCSESD.SDCCMJ, CCSESD.SDCCMI, CCSESD.SDCCPS, CCSESS.SSCCAS as AS,
CCSESS.SSCONO, CCSESS.SSDIV,CCSESS.SSLC, CCSESS.SSCLIN,
CCSESD.SDCCSR as SR, CCSESD.SDCCSQ, CCSESD.SDHMS, CCSESS.SSCCAN,
CCSESD.SDCCPK FROM ccsesd join ccsess on sdccss=ssccss AND SsCCSS
1119978 and CCSESS.SSCCAN ='AV'
HTH, Elvis
Celebrating 11-Years of SQL Performance Excellence on IBM i, i5/OS and
OS/400
www.centerfieldtechnology.com
-----Original Message-----
Subject: strsql not showing all records
Have a join of a large tran file with a master file, joined by a session
nbr.
Many tran records with a single master record.
Depending upon where I position the file (Where ..) I don't see all the
records.
If I remove the 'and ccsess.ssccan='AV' I see them (many with 'AV').
But with that "and" selection the file stops showing trans after 2 days ago.
If I change the starting session# in the where clause I can see more recent
records.
btw-there is non-displayable data in the file (this is comm session detail)
in one field that is not part of the where clause, and
the msg on the screen says there is some non-displayed.
No err in joblog. V5R4 and sf99504 DB2 Group 14.
SELECT CCSESS.SSCCST, CCSESS.SSCCXE,CCSESD.SDCCSS, CCSESS.SSCYMD,
CCSESD.SDCCMJ, CCSESD.SDCCMI, CCSESD.SDCCPS, CCSESS.SSCCAS as AS,
CCSESS.SSCONO, CCSESS.SSDIV,CCSESS.SSLC, CCSESS.SSCLIN,
CCSESD.SDCCSR as SR, CCSESD.SDCCSQ, CCSESD.SDHMS, CCSESS.SSCCAN,
CCSESD.SDCCPK FROM ccsesd join ccsess on sdccss=ssccss WHERE SsCCSS
1119978 and CCSESS.SSCCAN ='AV'
It's my 'guess' the strsql screen affected by the non-displayable data, no
error, but also not showing all records.
Any ideas?
Jim Franz
As an Amazon Associate we earn from qualifying purchases.