I'm trying to execute the next command in SQL*Plus:
DELETE FROM SOLUTION WHERE NAME LIKE 'Autotest %';
It doesn't anything. I guess the problem is in the apostrophe characters but the next query works:
SELECT ID FROM SOLUTION WHERE NAME LIKE 'Autotest %';
So I have no idea of what's happening.