oracle學習第二天【環境設定】

來源:互聯網
上載者:User

設定資料庫啟動執行個體

使用作業系統認證登陸

重建scott使用者環境

切換成資料庫dba

給scott使用者指定單獨的資料表空間

C:\Documents and
Settings\Administrator>set ORACLE_SID=orcl

C:\Documents and
Settings\Administrator>sqlplus /nolog

SQL*Plus: Release 10.1.0.2.0
- Production on 星期日 5月 15 21:34:02 2011

Copyright (c) 1982, 2004, Oracle.  All rights reserved.

SQL>
@%ORACLE_HOME%\rdbms\admin\scott.sql

SQL> show user

USER 為 "SCOTT"

SQL> conn /as sysdba

已串連。

SQL> create tablespace scott_space
datafile 'j:\oracle\user_space\scott_space.dbf' size 100m;

資料表空間已建立。

SQL> alter user scott default tablespace
scott_space quota unlimited on scott_space;

使用者已更改。

SQL>

通過網路服務名來等陸

首先設定$ORACLE_HOME\NETWORK\ADMIN\tnsnames.ora

我原生路徑是J:\oracle\product\10.1.0\db_1\NETWORK\ADMIN\tnsnames.ora

ORCL =

 
(DESCRIPTION =

   
(ADDRESS = (PROTOCOL = TCP)(HOST = WWW-6E8BB23133F)(PORT = 1521))

   
(CONNECT_DATA =

     
(SERVER = DEDICATED)

     
(SERVICE_NAME = orcl)

    )

  )

下面這一段是指定協議protocol,主機host,連接埠port

(ADDRESS = (PROTOCOL = TCP)(HOST =
WWW-6E8BB23133F)(PORT
= 1521))

這一段知道服務名

 
(SERVICE_NAME = orcl)

設定伺服器端檔案$ORACLE_HOME\NETWORK\ADMIN\listener.ora

SID_LIST_LISTENER =

 
(SID_LIST =

   
(SID_DESC =

     
(SID_NAME = PLSExtProc)

     
(ORACLE_HOME = J:\oracle\product\10.1.0\db_1)

     
(PROGRAM = extproc)

    )

  )

LISTENER =

 
(DESCRIPTION_LIST =

   
(DESCRIPTION =

     
(ADDRESS_LIST =

       
(ADDRESS = (PROTOCOL = TCP)(HOST = WWW-6E8BB23133F)(PORT = 1521))

     
)

    )

  )

C:\Documents and
Settings\Administrator>tnsping orcl

TNS Ping Utility for 32-bit Windows:
Version 10.1.0.2.0 - Production on 15-5月 -2011 22:31:36

Copyright (c) 1997, 2003, Oracle.  All rights reserved.

已使用的參數檔案:

J:\oracle\product\10.1.0\db_1\network\admin\sqlnet.ora

已使用 TNSNAMES 適配器來解析別名

Attempting to contact (DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = WWW-6E8BB23133F)(PORT = 1521)) (CONNECT_DATA = (SERVER =
DEDICATED)

(SERVICE_NAME = orcl)))

OK (20 毫秒)

C:\Documents and
Settings\Administrator>lsnrctl start

C:\Documents and
Settings\Administrator>sqlplus scott@orcl

SQL*Plus: Release 10.1.0.2.0
- Production on 星期日 5月 15 21:53:19 2011

Copyright (c) 1982, 2004, Oracle.  All rights reserved.

請輸入口令:

串連到:

Oracle Database 10g Enterprise Edition Release 10.1.0.2.0
- Production

With the Partitioning, OLAP and Data Mining
options

SQL> show user

USER 為 "SCOTT"

SQL>

SQL> conn /as sysdba

已串連。

SQL> show parameter service_name;

NAME                                 TYPE        VALUE

------------------------------------
----------- ---------------

service_names                        string      orcl

SQL>

資料庫的啟動方式

Startup

他的選項如下:

Nomount:只啟動資料庫執行個體

Mount:啟動執行個體並載入資料檔案

Open  
啟動執行個體,載入資料檔案並開啟

       Open
read only   唯讀模式開啟資料庫

       Open
read write     讀寫入模式開啟資料庫

Force:
如果資料庫已經啟動不會報錯,而是自動shutdown abort 當前資料庫然後在啟動

Restrict

Pfile

資料庫的關閉方式

Shutdown

他的選項如下:

Normal 預設選項,正常關閉

1, 
禁止使用者建立新串連

2, 
等待目前使用者中斷連線(使用者不斷開就一直等待)

3, 
關閉資料庫,卸載資料庫,關閉執行個體

Immediate 立刻執行關閉

1, 
所有未提交的事務全部復原

2, 
已經建立的串連,正在執行的sql語句等待其完成,沒有則立刻斷開

3, 
關閉資料庫,卸載資料庫,關閉執行個體

Transactional  以事務為準的關閉方式

1, 
不允許建立新串連

2, 
已經建立的串連不允許再產生新的事務

3, 
等待未提交的事務提交完之後中斷連線

4, 
關閉資料庫,卸載資料庫,關閉執行個體

Abort 
立刻終止資料庫

1, 
斷開所有使用者串連

2, 
終止所有事務(進行中的事務也不復原)

3, 
關閉資料庫,卸載資料庫,關閉執行個體

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.