723 подписчика
Как создать пользователя / схему данных в ORACLE. В чем разница. Какие права (привилегии) дать новому пользователю. Sys или System. SQL Developer. Постарался раскрыть самые нужные темы. Листинг: alter session set "_ORACLE_SCRIPT"=true; CREATE USER test identified by 111; grant create session to test; grant create table to test; grant create procedure to test; grant create trigger to test; grant create view to test; grant create sequence to test; grant alter any table to test; grant alter any procedure...
2 года назад