Remo Laubacher
Member²
When I try to change the user profile to "SYSTEM USER" I get an error.
The reason for that is quite simple. PL/SQL Developer tries to execute this query:
In fact it would be better to execute something like that:
Best regards,
Remo
The reason for that is quite simple. PL/SQL Developer tries to execute this query:
Code:
-- Modify the user
alter user MMAGLRE
profile SYSTEM USER;
Code:
-- Modify the user
alter user "MMAGLRE"
profile "SYSTEM USER";
Remo