Oracle Notes

From Federal Burro of Information
Revision as of 13:58, 14 January 2014 by David (talk | contribs) (Created page with " creating an oracle user: become the unix system user "oracle" run : svrmgrl at the SVRMGR> prompt type: "connect internal" create a users example: create user oem identi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

creating an oracle user: become the unix system user "oracle" run : svrmgrl

at the SVRMGR> prompt type: "connect internal"

create a users example:

create user oem identified by XXX
select * from dba_tablespaces;
select * from dba_users;
alter user oem default tablespace OEM_REPOSITORY temporary tablespace temp;
grant dba to oem;
quit;


More notes on backup;

select * from dba_users;
desc dba_data_files;
select file_name,bytes/1024/1024 M,blocks from dba_data_files;