1、連線到oracle
sql*plus system/manager
2、顯示當前連線使用者
sql> show user
3、檢視系統擁有哪些使用者
sql> select * from all_users;
4、新建使用者並授權
sql> create user a identified by a;(預設建在system表空間下)
sql> grant connect,resource to a;
5、連線到新使用者
sql> conn a/a
6、查詢當前使用者下所有物件
sql> select * from tab;
7、建立第乙個表
sql> create table a(a number);
8、查詢表結構
sql> desc a
9、插入新記錄
sql> insert into a values(1);
10、查詢記錄
sql> select * from a;
11、更改記錄
sql> update a set a=2;
12、刪除記錄
sql> delete from a;
13、回滾
sql> roll;
sql> rollback;
14、提交
sql> commit;
15、使用者授權:
grant alter any index to "user_id "
grant "dba " to "user_id ";
alter user "user_id " default role all
16、建立使用者:
create user "user_id " profile "default " identified by " dfault tablespace " users " temporary tablespace "temp " account unlock;
grant "connect " to "user_id ";
17、使用者密碼設定:
alter user "cmsdb " identified by "pass_word "
18、表空間建立:
create tablespace "table_space " logging datafile
'c:/oracle/oradata/dbs/table_space.ora' size 5m
Oracle 常用命令
1 檢視當前所有物件 sql select from tab 2 建乙個和a表結構一樣的空表 sql create table b as select from a where 1 2 sql create table b b1,b2,b3 as select a1,a2,a3 from a whe...
oracle常用命令
create insert delete select 建立使用者必須在sys超級管理員下 連線到超級管理員 conn sys as sysdba sys zhuangyan system zhuangyan scott tiger 查出所有 clerk 辦事員 的姓名及其部門名稱,部門的人數.找出...
oracle 常用命令
建立臨時表空間 02createtemporarytablespace os temp 03tempfile c oracle product 10.2.0 oradata os temp.dbf 04size100m 05autoextendon 06next100m maxsize 1024m ...