Oracle資料庫基礎知識

2022-05-09 08:06:07 字數 712 閱讀 7374

一、資料庫登陸操作命令

sqlplus username[/password] [@connect_identifier] [as sysoper|sysdba]

username:表示登陸使用者名稱;

password:標識登陸密碼;

@connect_identifier:標識連線的全域性資料庫名,若鏈結本機上的預設資料庫,則可以省略。

二、啟動與關閉資料庫

1、啟動資料庫

startup [nomount|mount|open|force] [restrict] [pfile=filename]

nomount:表示啟動例項不載入資料庫;

mount:表視啟動例項、載入資料庫並保持資料庫的關閉狀態;

open:表示啟動例項、載入並開啟資料庫,這個是預設選項;

restrict:用於指定以受限的繪畫方式啟動資料庫;

pfilr:用於指定啟動例項所使用的文字引數檔案,filename就是檔名。

2、關閉資料庫

shutdown [normal | transactional | immediate | abort]

normal :表示以正常方式關閉資料庫;

transactional :表示在當前所有的活動事務被提交完畢之後,關閉資料庫;

immediate :表示在盡可能短的時間內立即關閉資料庫;

abort:表示以終止方式來關閉資料庫;

Oracle資料庫基礎知識

schema是乙個oracle object schema object 的集合。和使用者一一對應,乙個使用者對應乙個schema。這些資料庫物件包括 tables,views,sequences,stored procedures,synonyms,indexes,clusters,and dat...

基礎技能 Oracle資料庫基礎知識

又名oracle rdbms,簡稱oracle。是甲骨文公司的一款關聯式資料庫管理系統。它是在資料庫領域一直處於領先地位的產品。可以說oracle資料庫系統是目前世界上流行的關聯式資料庫管理系統,系統可移植性好 使用方便 功能強,適用於各類大 中 小 微機環境。它是一種高效率 可靠性好的適應高吞吐量...

oracle資料庫基礎知識 DDL

資料定義語言 data definition language 1.create 建立表 create table 表名 欄位名 資料型別 create table 表名 as select from 把後面表裡的資料和表結構都複製過來 create table 表名 as select from ...