Hello all,
I have a most peculiar question.
I have been working on a database for months now, on and off, and it works absolutely fine on my PC. Access frontend, linked to SQL backend.
I have now tried to share this with collegues now, and am getting an odbc error in just one query. I attach a screenshot of the error - this occurs on the openform event of a command button in a form.
I have a second PC, and it also works fine on that one - but I can't make it work on several other PC's. They are all domain administrators, and have full and unrestricted access to the SQL server, and the databases on it.
Even stranger - my boss (one of the people I am trying to share it with!) has opened up the frontend, and looked at the query that is the recordset for the form in question. He cannot run it.
The query for this form is quite simple, just consists of 2 other queries, with a join between them, to show all the records from one, which don't have a matching record in the other query.
If he removes that link, or changes it to a 1-1 join, the query runs without a problem, but put it back in, and the error pops back up.
He also tried recreating the query in a new query, and it all works until he puts in the one-sided join.
VERY weird!
Any ideas anyone?
The query (with said join in place) is as follows:
I have a most peculiar question.
I have been working on a database for months now, on and off, and it works absolutely fine on my PC. Access frontend, linked to SQL backend.
I have now tried to share this with collegues now, and am getting an odbc error in just one query. I attach a screenshot of the error - this occurs on the openform event of a command button in a form.
I have a second PC, and it also works fine on that one - but I can't make it work on several other PC's. They are all domain administrators, and have full and unrestricted access to the SQL server, and the databases on it.
Even stranger - my boss (one of the people I am trying to share it with!) has opened up the frontend, and looked at the query that is the recordset for the form in question. He cannot run it.
The query for this form is quite simple, just consists of 2 other queries, with a join between them, to show all the records from one, which don't have a matching record in the other query.
If he removes that link, or changes it to a 1-1 join, the query runs without a problem, but put it back in, and the error pops back up.
He also tried recreating the query in a new query, and it all works until he puts in the one-sided join.
VERY weird!
Any ideas anyone?
The query (with said join in place) is as follows:
Code:
SELECT qryCallOpenings.IncidentID, qryCallOpenings.PC, qryCallOpenings.User, qryCallOpenings.DateTime AS Reported, DateDiff("d",[Reported],Now()) AS TimeSinceReport, qryCallClosings.IncidentID AS ClosedID
FROM qryCallOpenings LEFT JOIN qryCallClosings ON qryCallOpenings.IncidentID = qryCallClosings.IncidentID
WHERE (((qryCallClosings.IncidentID) Is Null));