Oracle學習個人總結

來源:互聯網
上載者:User

資料表空間

建立資料表空間

SQL> create tablespace emp

2 logging

3 datafile '/oracle/oradata/dba/emp.dbf' size 5M extent

4 management local;

增加資料表空間大小

SQL> alter tablespace emp

2 add datafile '/oracle/oradata/dba/emp_1.dbf' size 3M;

刪除資料表空間

SQL> drop tablespace emp including contents;

2

建立使用者

create user jackylau identified by richie default tablespace emp temporary

tablespace temp quota 15m on emp password expire;

授權使用者

grant dba to jackylau with admin option;

alter user jackylau default role all;

修改使用者密碼

alter user jackylau identified by richie

建立表

SQL> create table qq

2 (name varchar(20),

3 id number(10),

4 relation varchar(6),

5 gender varchar(4)

6 );

從其它表中建表

create table temp as select name,id from qq;

重新命名一個表名

rename qq to qqtest

查看一個表的結構

desc table_name;

插入記錄

insert into qq (name,id,relation,gender) values ('寶兒','33796776','朋友','女');

insert into qq values ('寶兒','33796776','朋友','女');

修改記錄

update qq set name='apple'

where id = '371692320';

把id號為371692320的項為name所在的名改為apple

更改列的字元大小

alter table qq modify (gender varchar(6));

增加列

alter table qq add time date;

刪除列

alter table qq set unused ("TIME") cascade constraints;(注意TIME要大寫)

刪除內容

truncate table qq drop storage;(截掉,不可恢複)

查詢

select * from qq;

select id from qq where id='18243386';

select * from qq where gender='女' order by name;

select * from qq where id like '%8%' order by name;

刪除記錄

SQL> delete from qq

2 where id='18243386';

復原

消除上一個COMMIT命令後的所做的全部修改,使得資料庫的內容恢複到上一個COMMIT執行後的狀態.使用方法是:

SQL>rollback;

LINK

那個欄位 LIKE "字元組合"

字元組合 可以是固定字元 與 % 和 _ 的隨意組合,其中 % 代表任意長度的任一字元,_ 代表單個字元

where name like 'jacky___' 能查到 jackylau 卻不能查到 jackylau+

where name like '%acky___' 能查到 jackylau, abcackylau 卻不能查到 jackylausomeword

SQL> edit s

如果目前的目錄下不存在s.sql檔案,則系統自動產生s.sql檔案,

在其中輸入“select * from tab;”,存檔退出。

SQL> @s

建立使用者並授權

SQL> create user 使用者1 identified by 密碼;

SQL> grant connect,resource to 使用者1;

SQL> connect 使用者1/密碼

SQL> create table 表1(列1 number,列2 date);

SQL> create index 索引1 on 表1(列1);

SQL> drop index 索引1;

SQL> drop table 表1;

建立視圖

Create or replace view testview as select col1,col2,col3 from table_name;

create view test_view as select name,id,gender from qq;

select * from test_view;

create view qqtest as select name,id,relation lation from qq where id>100000000;(並重新命名relation列為lation)

create view qqtest as select name,id,gender from qq where id>100000000 with read only;

建立序列

CREATE SEQUENCE inc_hourdiscount INCREMENT BY 1 START WITH 1 MAXVALUE 1.0E28;

查看資料庫

show parameter db_name;

select name from v$database;

如何單獨備份一個或多個使用者?

exp system/manager owner=(使用者1,使用者2,…,使用者n) file=匯出檔案

如何單獨備份一個或多個表?

exp 使用者/密碼 tables=(表1,…,表2)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.