Thanks for the suggestion, but that did not help. Here is the SQL that can
not be verified. If I add parentheses around the first INNER JOIN, it will
pass the verification but then the () are erases and it will not execute.
SELECT s.[NTP Date], s.[Last Modified], s.[Final Submittal Documents
Received], il.[Submitted to AP], il.[Target Pay Date], il.[To AP], il.[To
Field], spm.Type,
spm.[Payment Method], il.[Subcontract ID],
s.[Subcontract ID] AS Expr1, s.[Subcontract Payment Method ID],
spm.[Subcontract Payment Method ID] AS Expr2
FROM Subcontract s INNER JOIN
[Invoice Log] il ON s.[Subcontract ID] =
il.[Subcontract ID] INNER JOIN
[Subcontract Payment Method] spm ON s.[Subcontract
Payment Method ID] = spm.[Subcontract Payment Method ID]
<Russel Loski>; "MCSD" <RLoski (AT) NSPMhotmail (DOT) com> wrote
Quote:
What is the query that you are using?
My suspicion is that your query is too long. Try aliasing the tables with
one letter identifiers.
Russ |