Oracle 基本操作

2021-05-31 21:38:41 字數 2512 閱讀 6162

在這裡詳述 oracle/基本操作。

新增使用者(隨著使用者的建立,自動產生與使用者同名的schema)

create user "tester" profile "default" identified by "tester" default tablespace "testdata" temporary tablespace "testtemp" account unlock;

賦權(說實話,這些許可權是開發中使用的許可權,如果使用者生產環境,請自行對於使用者建立相應的系統許可權) 據說生產環境下,只是connect resource這樣的角色就可以了。 grant "connect" to "tester"; grant "resource" to "tester"; grant "dba" to "tester"; grant "exp_full_database" to "tester"; grant "imp_full_database" to "tester";

使用者修改密碼,解鎖 alter user "scott" identified by "*******" alter user "scott" account unlock

1.檢視所有使用者: select * from dba_user; select * from all_users; select * from user_users; 2.檢視使用者系統許可權: select * from dba_sys_privs; select * from all_sys_privs; select * from user_sys_privs; 3.檢視使用者物件許可權: select * from dba_tab_privs; select * from all_tab_privs; select * from user_tab_privs; 4.檢視所有角色: select * from dba_roles; 5.檢視使用者所擁有的角色: select * from dba_role_privs; select * from user_role_privs;

oracle中新建使用者名稱

連線oracle資料庫: 1、在oracle database assistant中建立自己的資料庫; 2、在oracle net8 easy config中建立連線與自己的資料庫的連線,取乙個service名,ip:為本地ip 127.0.0.1,database sid為你所建立的

資料庫的sid,使用者名為:system,密碼:manager或是自己設的密碼; 3、在sqlplus中連線自己的資料庫,使用者名為:system,密碼:manager或是自己設的密碼,tom:你剛建立的service名. 4、顯示當前連線使用者:show user; 5、新建使用者並授權:create user tom identified by 密碼; grant connect,resource to tom; 6、在sqlplus中用剛建立的使用者:tom/密碼,連線; 7、建立表空間。

資料庫的初始化引數檔案:init+例項名.ora檔案,編輯此檔案中的內容,可以改變資料庫使用的方法和分配的資源.

啟動oracle資料庫,在dos方式下執行svrmgr30,然後輸入connect internal,密碼為:oracle,再輸入startup即可.

表空間的建立:storage manager 回滾段可在storage manager中建立

啟動oracle資料庫 在dos視窗下,輸入svrmgr30,啟動伺服器管理器,輸入connect internal,輸入密碼oracle,輸入shutdown,關閉資料庫,輸入startup,啟動資料庫.

1. oracle安裝完成後的初始口令?

建立表空間 create tablespace test1 datafile 'd:tabletest1.dbf' size 1m;

建立名為wjq的使用者,其預設表空間為test1。在sql*plus以sys使用者連線資料庫,執行以下指令碼。 create user wjq identified by password default tablespace test1;

以使用者wjq連線sqlplus 建立表:create table t1(empno number(5) primary key, ename varchar2(15) not null, job varchar2(10), mgr number(5),hiredate

date default (sysdate), sal number(7,2), comm number(7,2)); 建立表t2並指定此表的表空間為test1:create table t2(empno number(5) primary key,ename varchar2(15) not null,  job varchar2(10),mgr number(5),hiredate date default (sysdate),sal number(7,2),comm number(7,2)) tablespace test1;

插入記錄:insert into t1 values(101,'wang','it',25,,20,20); 插入日期:insert into t1 values(102,'wang','it',25,to_date('1980-12-17','yyyy-mm-dd'),20,20);

Oracle基本操作

1.建立表空間 create tablespacetestdatafile c test.dbf size 10m 名字不要為數字 2.建立使用者 create user username identified by password 不要為數字 3.給使用者授權 grant dba to user...

oracle 基本操作

1 使用者登入 sqlplus 帳號 密碼 2 檢視當前登入使用者 show user 3 檢視所有的使用者 select username from all users 4 建立臨時表空間 create temporary tablespace test temp tempfile d oracl...

Oracle基本操作

oralce基本操作說明 一 建立表空間 sys使用者在cmd下以dba身份登陸 在cmd中打sqlplus nolog 然後再conn as sysdba 注意點 1.如果在pl sql 等工具裡開啟的話,直接修改下面的 中 斜體加粗部分 執行2.確保路徑存在,比如 d oracle oradat...