‎2009 Nov 09 7:10 PM
I am export/import variables using INDX table.... How can i clear the memory once I import them?
EXPORT field1 field2 indxkey
TO DATABASE indx(ze) ID indxkey.Regards,
Karthik,
Edited by: Karthik on Nov 9, 2009 2:10 PM
‎2009 Nov 09 7:30 PM
Hi,
You can do that by this way
DELETE FROM DATABASE indx(ze) ID indxkey.
Cheers,
Kothand
‎2009 Nov 09 8:23 PM
‎2009 Nov 09 8:26 PM
Hi,
If you are using teh DATABASE syntax, then use "DELETE FROM" to delete the ID from database.
DELETE FROM { {MEMORY ID id}
| {DATABASE dbtab(ar) [CLIENT cl] ID id}
| {SHARED MEMORY dbtab(ar) [CLIENT cl] ID id}
| {SHARED BUFFER dbtab(ar) [CLIENT cl] ID id} }.
Regards,
Subramanian
‎2009 Nov 09 8:29 PM
Hi
use the following statement
FREE MEMORY ID 'ZID'.
also u can find more info writting free memory and press F1 over free.
Regards