Oracle學習的第一章

2021-10-01 21:36:50 字數 1531 閱讀 3120

使用者

密碼sys

無system

1scott

和system密碼一樣

#鏈結oracle 啟動/執行

sqlplus /nolog

#登入賬戶 使用者/密碼

conn system/1

select

*from emp;

set linesize 150

;--設定每行字元數

set pagesize 10

;--設定每頁顯示的10行資料;

desc emp;

--檢視emp的表結構;

show

user

;--檢視當前使用者;

--建立表空間

create

tablespace dome01 --表空間名稱

datafile 'd:/2_data/dome01.dbf'

--建立表檔案

size 50m --預設大小

autoextend on

;--自動擴充套件

--修改表空間名稱

alter databasespace dome01

rename

to dome02;

--刪除表空間

drop

tablespace dome02;

select

* form dba_free_sapce;

--檢視當前資料庫的自由表空間

select

*from user_free_space;

--檢視當前使用者的自由表空間

create

user dome01user

identified by

1--密碼

default

tablespace dome02 --預設的表空間名稱

grant

connect

to dome01user --授予鏈結許可權

grant resource to dome01user --授予資源許可權,列如建立表,查詢資料

grant

create

tablespace

to dome01user --賦予使用者建立表空間許可權

--讓別的使用者訪問我的表和庫的許可權

grant

select

on test to tom;

-- 允許tom使用者訪問我的test表

grant

update

on test to tom;

-- 允許tom使用者修改我的test表

grant

allon test to tom;

-- 允許tom使用者操作表的所有許可權

select

*from system.test;

--這是訪問別的使用者表 !前提得獲得許可權

Oracle第一章 初識Oracle

以下內容使用的系統和版本為windows7系統和oracle11g,windows其他版本和oracle其他版本基本差不多。簡介 oracle是乙個關係型資料庫管理系統,是oracle公司的核心產品。主要特點 1 支援多使用者 大事務量的事務處理 2 在保持資料安全性和完整性方面效能優越 3 支援分...

oracle記錄第一章

1.什麼是關係型資料庫?關係資料結構,關係操作,關係的約束條件。關係資料結構 a.屬性值具有原子性,不可分解 b.沒有重複元組 c.理論上沒有行序,實際使用可用。關係的約束條件 a.實體完整性,b.參照完整性,c.使用者定義完整性 2.oracle的預設使用者 a.檢視系統中使用者 select u...

第一章學習筆記

看c primer已經好幾遍了,但是還是有很多基礎的問題,總是那樣容易忘記,這次看的時候,決定好好的寫寫讀書筆記 希望能夠認真的堅持下去。incluede的兩種不同格式 include some file 表明檔案是乙個標準工程,查詢先檢查預定義的目錄。include my file 表明改檔案是使...