Oracle資料庫的基本使用 學習筆記

2021-10-23 04:28:52 字數 595 閱讀 9592

檢視當前使用者的所有表:

select * from tab;
切換使用者:

create

user kfc identified by a123`

語法:

conn 使用者名稱/密碼 as 角色[sysdba sysoper normal]

conn system/manager; //使用system使用者登入

conn sys/change_on_install as sysdba/sysoper; //使用超級管理員sys登入時必須跟上角色

查詢scott使用者自己的emp表:

select * from emp;
其他使用者如果想要查詢scott的表則使用:

select * from scott.emp   //查詢scott使用者的emp表
建立資料庫使用者:

create

user kfc identified by a123

Oracle資料庫基本使用

oracle建立使用者 角色 授權 建表 oracle資料庫的許可權系統分為系統許可權與物件許可權。系統許可權 database system privilege 可以讓使用者執行特定的命令集。例如,create table許可權允許使用者建立表,grant any privilege 許可權允許使...

oracle資料庫基本操作

一 增 有3種方法 1.使用insert插入單行資料 insert into 表名 列名 values 列值 insert into strdents name,age values atm 12 2.使用insert,select語句將現有表中的 資料新增到已有的新錶中 insert into 已...

oracle資料庫基本操作

檢視磁碟使用情況 df h 進入oracle su oracle sqlplus nolog conn as sysdba 檢視三種資料庫檔案 select from vlo gfil e 日 志檔案s elec t fr omv datafile 資料檔案 select from v contro...