DECLARE
v_id number(5) := 1;
v_descricao varchar2(100) := 'varejo';
BEGIN
insert into segmercado values (v_id, v_descricao);
commit;
END;
Relatório de erro: ORA-01950: não há privilégios no tablespace USERS' ORA-06512: em line 8 01950. 00000 - "no privileges on tablespace '%s'" Cause: User does not have privileges to allocate an extent in the specified tablespace. Action: Grant the user the appropriate system privileges or grant the user space resource on the tablespace.