-
四個系統(tǒng)用戶 1.sys,system 2.sysman 3.scott查看全部
-
scott tiger查看全部
-
運算符查看全部
-
distinct 去除重復的數(shù)據(jù)。查看全部
-
重新給文件命名要用rename,修改要用modfity,刪除要用drop.查看表要用demc 文件名查看全部
-
http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html查看全部
-
查看用戶的表空間: 1、dba-tablespaces、user desc dba-tablespaces/ select tablespace-name form dba-tablespaces system存儲系統(tǒng)表空間查看全部
-
表空間: 概述 1、理解 數(shù)據(jù)庫與表空間 表空間是數(shù)據(jù)庫的邏輯空間,一個數(shù)據(jù)庫可以由多個表空間組成。 2、表空間和數(shù)據(jù)文件的關(guān)系 由一個和多個數(shù)據(jù)文件來構(gòu)成,文件的大小可以由用戶自己來定義。 3、表空間的分類 永久性(表、視圖)、臨時表空間(操作過程中的步驟。表)、UNDO表空間(修改前的表舊值)查看全部
-
SCOTT用戶 先解鎖 語句: alter user username account unlock;啟用Scott用戶; 用Scott用戶登錄SQL plus connect Scott/tiger show user;查看用戶查看全部
-
show user命令 查看當前用戶 dba-users 數(shù)據(jù)字典 包含用戶名、密碼…… SQL語句要用分號隔開; select語句 select username dba-users;查看全部
-
connet 鏈接語句 connet username/password查看全部
-
truncate table 表名 刪除表中數(shù)據(jù) 截斷表刪除速度快 數(shù)據(jù)不可恢復 drop table 表名 刪除表查看全部
-
表 基本存儲單位 二維結(jié)構(gòu) 行和列 每一列數(shù)據(jù)必須具有相同的數(shù)據(jù)類型 列名唯一 每一行數(shù)據(jù)的唯一性查看全部
-
刪除表空間 drop tablespace tablespace_name[including contents]加上[]中內(nèi)容表示把數(shù)據(jù)文件也刪掉查看全部
-
修改表空間中的數(shù)據(jù)文件 一、增加數(shù)據(jù)文件 alter tablespace tablespace_name add datafile 'xx.dbf' size xx; select file_name from dba_data_files where tablespace_name='表空間名稱' 二、刪除數(shù)據(jù)文件 alter tablespace tablespace_name drop datafile 'xx.dbf'查看全部
舉報
0/150
提交
取消