B
Bibi
I have a reservation database that I designed and have been using for 7 or so
years now. I had help designing the query I show below from a discussion
group several years ago. In the past it would, very rarely, erase
itself............It just wouldn't work and there would be no language in the
SQL view and I would have to paste in a copy. Recently it has become
completely unstable when I run it in Access 2003 on my home computer. I
open a good copy of the data base, run the query once an dit will work - the
second time I try to run it - it has erased itself......When I run it on my
office computer with Access 2000 it is fine. I've checked for viruses,
etc......Any ideas what the problem could be? I uninstalled and reinstalled
Access and it worked but only for a day.....Is there anything intrinsically
unstable about the following query? Do I have a virus? I use Norton.
SELECT *
FROM tblLeases
WHERE (((tblLeases.Arrive)=(SELECT Min([Self].[arrive])
FROM [tblLeases] AS [Self]
WHERE [Self].[Property] = [tblLeases].[Property]
AND [Self].[arrive] >[FORMS].[favailable].[Text1])));
years now. I had help designing the query I show below from a discussion
group several years ago. In the past it would, very rarely, erase
itself............It just wouldn't work and there would be no language in the
SQL view and I would have to paste in a copy. Recently it has become
completely unstable when I run it in Access 2003 on my home computer. I
open a good copy of the data base, run the query once an dit will work - the
second time I try to run it - it has erased itself......When I run it on my
office computer with Access 2000 it is fine. I've checked for viruses,
etc......Any ideas what the problem could be? I uninstalled and reinstalled
Access and it worked but only for a day.....Is there anything intrinsically
unstable about the following query? Do I have a virus? I use Norton.
SELECT *
FROM tblLeases
WHERE (((tblLeases.Arrive)=(SELECT Min([Self].[arrive])
FROM [tblLeases] AS [Self]
WHERE [Self].[Property] = [tblLeases].[Property]
AND [Self].[arrive] >[FORMS].[favailable].[Text1])));