xxxxxxxxxx
You can use FIELD-SYMBOL to update internal table records from inside the LOOP.
LOOP AT itab ASSIGNING FIELD-SYMBOL(<FS>).
<FS>-field1 = 'TEST'.
ENDLOOP.
By using FIELD-SYMBOL, the updating process will become faster because FIELD-SYMBOL copied
the location of the record in the memory.
xxxxxxxxxx
"This article explains field symbol. Click on Source to view the article.
xxxxxxxxxx
#1 Get the database container id
docker ps | grep coolify-db
#2 Access the command line
docker exec -it 4b14e88d77c9 bash
#3 Remove registries from the table
psql -U coolify
#4 And then, to remove the damaged registry, just execute the following command
DELETE FROM activity_log;