Nothing in the SQL looks strange except that I don't see a sorted / Order By clause. Even then there's nothing that should cause such a problem. I think it could well be a corruption problem. tblIsolation.comments is the large text field I assume. You might want to add criteria to return a greatly reduced number of records and see what happens then. -- Jerry Whittle Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
"mcnewsxp" wrote:
[Quoted Text] > > > SELECT tblIsolation.comments, Count(tblIsolation.comments) AS > CountOfcomments FROM tblData INNER JOIN (tblIsolation INNER JOIN > tblIsolationDetail ON tblIsolation.isolationnum = > tblIsolationDetail.isolationnum) ON tblData.DASH = > tblIsolationDetail.dashnum GROUP BY tblIsolation.comments > > >
|