Select * from MyTable
creates a table called QueryN, where N is some number. If you don't
close this when you're done then these temporary tables build up. A
better technique is to do something like this:
Select * from MyTable Into TMP
and when you're done with it:
Close Table TMP
This way you've got a bit more control over what's active in the MapInfo
environment and you never run afoul of that temp file limit.
Interesting observation on Symantec AV, though.
- Bill Thoen
| "college.atlas"
<colleg...@gmail.com> 09/12/2008 06:40 AM
Sent by: mapi...@googlegroups.com Please respond to: mapi...@googlegroups.com |
|