Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

sys/1234 as sysdba

CREATE TABLESPACE MiTablespace1 DATAFILE 'C:\Users\Estudiante\Documents\monse' SIZE


300M;

CREATE USER autor IDENTIFIED BY 1234 DEFAULT TABLESPACE MiTablespace1;

GRANT dba, connect, resource TO autor;

SELECT USERNAME FROM DBA_USERS

alter system set os_authent_prefix =OPS$ scope=spfile;

alter system set remote_os_authent=TRUE scope=spfile;

C:\app\Daniel\product\11.2.0\dbhome_1\NETWORK\ADMIN
sqlnet.ora

Sqlnet.authentication_services=(NTS)

shutdown immediate

startup

show parameter authen

select UPPER(sys_context('userenv','os_user')) from dual;

create user "OPS$DESKTOP-G7G5OFU\DANIEL" identified EXTERNALLY;

grant dba to "OPS$DESKTOP-G7G5OFU\DANIEL"

grant CONNECT,RESOURCE,UNLIMITED TABLESPACE TO "OPS$DESKTOP-G7G5OFU\DANIEL";

show user

You might also like