Application Development 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: 

Export/Import Parameters

Former Member
0 Kudos
194

Hi Everyone,

I had used

EXPORT F1 TO

DATABASE INDX(ST) ID INDXKEY.

this statement writes an entry to the indx table in database with value in indxkey and ST as an entry.

After i do the import in the similar way.how should i delete the entry from the database .Rt now i am deleteing the entry using delete with both keys.

any better ways...

i am passing the value which can be imported from a wokflow whihc runs as background task i.e wf-batch...

2 REPLIES 2

Former Member
0 Kudos
110

Use FREE Memory ID or

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} }.

0 Kudos
110

what is the difference when i use database and shared memory...with shared memory is this not going write an entry in indx table .in that case if we run the program by n users asynchronoously is that not going to affect with shared memory and can i use shared memory to pass data between user session and wf-batch prgoram like WF method will import from shared memory.

Thanks

Edited by: Anil Turlapati on Sep 15, 2011 9:19 AM