Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Import/Export

SG141
Active Participant
0 Likes
584

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

4 REPLIES 4
Read only

Former Member
0 Likes
545

Hi,

You can do that by this way

DELETE FROM DATABASE indx(ze) ID indxkey.

Cheers,

Kothand

Read only

Former Member
0 Likes
545

Hi,

Use FREE MEMORY instruction.

Regards,

Read only

Former Member
0 Likes
545

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

Read only

Former Member
0 Likes
545

Hi

use the following statement


FREE MEMORY ID 'ZID'.

also u can find more info writting free memory and press F1 over free.

Regards