2011 Sep 14 3:46 PM
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...
2011 Sep 14 3:49 PM
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} }.
2011 Sep 14 5:57 PM
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