Statspack初步學和用第一篇 安裝初步
預計分3個章節:
statspack初步學和用(1) 安裝初步
statspack初步學和用(2) 使用初步
statspack初步學和用(3) 分析初步
Statspack是一款功能強大的,免費的,oracle自帶的效能分析工具。需要用具有sysdba許可權的使用者登陸進行安裝。
C:Documents and SettingsAdministrator>sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on 星期三 9月 5 09:23:33 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
連線到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>
SQL> show user;
USER is "SYS"
SQL> set lines 100
SQL> select file_name from dba_data_files;
FILE_NAME
----------------------------------------------------
F:ORACLEORADATAJSSWEBSYSTEM01.DBF
F:ORACLEORADATAJSSWEBUNDOTBS01.DBF
F:ORACLEORADATAJSSWEBSYSAUX01.DBF
F:ORACLEORADATAJSSWEBUSERS01.DBF
F:ORACLEORADATAJSSWEBJSSWEB.DBF
SQL> create tablespace perfstat datafile 'f:oracleoradatajsswebperfstat.dbf' size 2000m;
此處需要注意建立的資料檔案大小。Statspack的報表資料還是相當佔空間的,特別是在多次連續取樣的情況下。
表空間已建立。
SQL> @spcreate
執行statspack的安裝包。該檔案物理存放於$oracle_home dbmsadminspcreate.sql
Choose the PERFSTAT user's password
-----------------------------------
Not specifying a password will result in the installation FAILING
輸入 perfstat_password 的值: perfstat
perfstat
Choose the Default tablespace for the PERFSTAT user
---------------------------------------------------
Below is the list of online tablespaces in this database which can
store user data. Specifying the SYSTEM tablespace for the user's
default tablespace will result in the installation FAILING, as
using SYSTEM for performance data is not supported.
Choose the PERFSTAT users's default tablespace. This is the tablespace
in which the STATSPACK tables and indexes will be created.
TABLESPACE_NAME CONTENTS STATSPACK DEFAULT TABLESPACE
------------------------------ --------- ----------------------------
JSSWEB PERMANENT
PERFSTAT PERMANENT
SYSAUX PERMANENT *
USERS PERMANENT
Pressing
tablespace (identified by *) being used.
輸入使用者預設的表空間。就是我們剛建立的那個,以及臨時表空間。
輸入 default_tablespace 的值: perfstat
..........
..........
輸入 temporary_tablespace 的值: temp
..........
..........
NOTE:
SPCPKG complete. Please check spcpkg.lis for any errors.
安裝完成後,系統會自動切換到perfstat使用者下。安裝過程中的日誌被記錄在spcpkg.lis。關於安裝日誌我看到網上不少文章中都提到其生成路徑與spcreate.sql相同,但是我這裡卻給建立到my documents目錄下了,不知道哪裡設定日誌儲存路徑。
如果安裝過程中出現錯誤,可以通過執行@spdrop刪除相關物件,然後檢查日誌,確認出錯原因,再次執行@spcreate進行建立。
SQL> show user;
USER is "PERFSTAT"
ok,安裝完成了~
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7607759/viewspace-22287/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Arthas 初探--安裝初步適用
- ActiveMQ初步安裝MQ
- 初步學習VuexVue
- Mongoose初步學習Go
- java註解初步學習和使用Java
- Git的初步學習Git
- SVG:初步學習感想SVG
- Python學習 —— 初步認知Python
- 初步學習jQuery之事件jQuery事件
- Axios初步iOS
- Numpy初步
- $LCT$初步
- 國產輕量級BI平臺CBoard的安裝和初步使用介紹
- 《機器學習初步》筆記機器學習筆記
- 結合 Laravel 初步學習 GraphQLLaravel
- shell初步(轉)
- Mybatis學習-初步認知與使用MyBatis
- git的初步使用Git
- 網路流初步
- Nginx初步入門Nginx
- Mybatis初步認識MyBatis
- iOS gRPC 初步探索iOSRPC
- TypeScript初步瞭解TypeScript
- 初步認識zookeeper
- linux核心管理初步Linux
- Workerman學習筆記(一)初步認識筆記
- 07.初步學習redis哨兵機制Redis
- Flask入門學習---初步瞭解模板Flask
- 關於抽象類和介面的初步理解抽象
- 挖掘性質初步成型
- 動態規劃初步動態規劃
- 前端的初步----呼叫介面前端
- 【DP】斜率優化初步優化
- Spring初步認識-(1)Spring
- 初步瞭解表單操作
- Ndk 初步開發 In AndroidAndroid
- 初步認識Apache IgniteApache
- ARC136F - PGF 學習筆記初步筆記
- Golang學習筆記(十九):Channel初步接觸Golang筆記