T
Tom Ellison
In trying to automate a series of steps in VBA, I have a step:
DoCmd.RunSql("DELETE * FROM SomeTable WHERE SomeColumn = "Some Value")
I get a warning with which I'm not familiar:
There isn't enough disk space or memory to undo the data changes this action
query is about to make.
Do you want to run this action query anyway?
For information on freeing disk space or freeing memory, search the
Microsoft Windows Help index for 'disk space, freeing or 'memory,
troubleshooting.'
Yes No
This confuses me. Under what conditions will access undo the results of an
action query after it has been performed?
I have tens of gigabytes available on the only volume this computer
posseses. I presume that isn't the problem, so it must be that my memory is
short. I have a gigabyte of ram and there's nothing else running on my XP
system but Access, and a few rather standard background things. I'm saying
I have a large amount of free memory.
Anyway, what is this about? I'd like to have it not stop at all. I'm
trying to get a long list of things done while I sleep.
And thanks very much.
Tom Ellison
DoCmd.RunSql("DELETE * FROM SomeTable WHERE SomeColumn = "Some Value")
I get a warning with which I'm not familiar:
There isn't enough disk space or memory to undo the data changes this action
query is about to make.
Do you want to run this action query anyway?
For information on freeing disk space or freeing memory, search the
Microsoft Windows Help index for 'disk space, freeing or 'memory,
troubleshooting.'
Yes No
This confuses me. Under what conditions will access undo the results of an
action query after it has been performed?
I have tens of gigabytes available on the only volume this computer
posseses. I presume that isn't the problem, so it must be that my memory is
short. I have a gigabyte of ram and there's nothing else running on my XP
system but Access, and a few rather standard background things. I'm saying
I have a large amount of free memory.
Anyway, what is this about? I'd like to have it not stop at all. I'm
trying to get a long list of things done while I sleep.
And thanks very much.
Tom Ellison