‎2008 Sep 18 11:35 AM
Can anyone please tell me how to delete a memory area created with the SET PARAMETER statement. I have tried 'FREE MEMORY'. But it doesn't work.
‎2008 Sep 18 11:47 AM
Hi,
If you want clear the parameter id value use this...
set parameter id 'AUN' field space.
If you want delete use this...
DELETE FROM MEMORY ID 'AUN'.
FREE MEMORY ID 'AUN'.
Hope it will helps
‎2008 Sep 18 11:43 AM
USE
FREE memory id <NAME OF mem ory IID in capital without ' '.
‎2008 Sep 18 11:44 AM
hi Sarath,
you are using correct command.
You have to use it like FREE MOMORY ID(<key>) where key is exactly the same you used for SET PARAMETER ID <key> ...
Regards,
Karol
‎2008 Sep 18 11:50 AM
Hi
set it with black/space.
carrier = ' ' .
SET PARAMETER ID: 'CAR' FIELD carrier.
It will be free.
Regards,
Kaushik
‎2008 Sep 18 11:47 AM
hi,
its simple, just clear that parameter which is used for that parameter id.
then use set paramete id with that cleared variable to that id.
so it will clear the id.
Regards,
Meet
‎2008 Sep 18 11:47 AM
Hi,
If you want clear the parameter id value use this...
set parameter id 'AUN' field space.
If you want delete use this...
DELETE FROM MEMORY ID 'AUN'.
FREE MEMORY ID 'AUN'.
Hope it will helps