perf_tool.PDF

Size: px
Start display at page:

Download "perf_tool.PDF"

Transcription

1 Oracle RDBMS Creation Date: Jan. 16, 2000 Last Update: Oct. 18, 2001 Version: 1.0 1

2 SQL EXPLAIN PLAN SQL*Plus AUTOTRACE SQL Oracle Enterprise Manager Tuning Pack SQL SQL*Plus AUTOTRACE SQL STATSPACK Oracle Enterprise Manager Tuning Pack UTLBSTAT/UTLESTAT etc.statspack Oracle Enterprise Manager Diagnostics Pack SQL EXPALIN PLANSQL*Plus AUTOTRACE SQL Oracle Enterprise Manager Tuning Pack SQL SQL*Plus AUTOTRACE SQL STATSPACKOracle Enterprise Manager Tuning Pack ( / I/O ) UTLBSTAT/UTLESTAT STATSPACKOracle Enterprise Manager Diagnostics Pack 2

3 IEXPLAIN PLAN II. SQL*PlusAUTOTRACE III. SQL IV. UTLBSTAT/UTLESTAT V. STATSPACK VI. Oracle Enterprise Manager Oracle8.1.6EE for Windows NT 3

4 I. EXPLAIN PLAN 4

5 I. EXPLAIN PLAN EXPLAIN PLAN EXPLAIN PLAN EXPLAIN PLAN 5

6 EXPLAIN PLAN SQL EXPLAIN PLAN EXPLAIN PLAN SQL 6

7 EXPLAIN PLAN 1. utlxplan.sqlplan_table SQL> %ORACLE_HOME% rdbms admin utlxplan.sql PLAN_TABLE 2. EXPLAIN PLAN EXPLAIN PLAN FOR SQL 3. PLAN_TABLE utlxpls SQL> %ORACLE_HOME% rdbms admin utlxpls.sql EXPLAIN PLAN. utlxplan.sql SQL PLAN_TABLE. EXPLAIN PLAN SQL. utlxpls.sql EXPLAIN PLAN SQL OPERATION PLAN_TABLE OPERATIONOPTIONS NAME PLAN_TABLE OBJECT_NAME ROWS BYTES COST CBT RBT NULL utlxpls.sql Select id, operation, options, object_name, position FROM plan_table WHERE object_name like EMP% order by id, position and timestamp = (select max(timestamp) fromplan_table; PLAN_TABLE OPERATION OPTIONS OBJECT_NAME OPTIMIZER ID POSITION 7

8 EXPLAIN PLAN %ORACLE_HOME% rdbms admin utlxpls Plan Table Operation Name Rows Bytes Cost SELECT STATEMENT TABLE ACCESS BY INDEX ROW EMP INDEX RANGE SCAN EMP_INDX ROWID EMP EXPLAIN PLAN EXPLAIN PLAN PLAN_TABLE SQL utlxpls.sql SELECT ename, sal FROM emp WHERE sal2000 order by sal SQL PLAN TABLE Position 1. EMP_INDX ROWID 2. ROWID EMP 8

9 II. SQL*PlusAUTOTRACE 9

10 II. SQL*PlusAUTOTRACE SQL*PlusAUTOTRACE SQL*PlusAUTOTRACE AUTOTRACE 10

11 SQL*PlusAUTOTRACE SQL SQL*PlusAUTOTRACE SQL*PlusAUTOTRACE SQL 11

12 SQL*PlusAUTOTRACE 1. SYS utlxplan.sql PLAN_TABLE SQL> %ORACLE_HOME% rdbms admin utlxplan.sql PLAN_TABLE 2. plustrce.sql plustrace sqlplus admin plustrce.sql 3. plustrace 4. SQL> SET AUTOTRACE ON; SQL*PlusAUTOTRACE 1. SYS ultxplan.sql PLAN_TABLE 2. plustrce.sql plustrace V$ plustrce.sql 3. plustrace 4. traceonly SET AUTOTRACE SET AUTOTRACE OFFONTRACEONLY EXPLAIN STATISTICS OFF ON TRACEONLY EXPLAIN STATISTICS 12

13 SQL*Plus AUTOTRACE SQL SQL*Plus AUTOTRACE SQL set autotrace on SQL> select * from dept; DEPTNO DNAME LOC ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON 50 NEWCREW TOKYO Execution Plan SELECT STATEMENT Optimizer=CHOOSE 1 0 TABLE ACCESS (FULL) OF 'DEPT' Statistics

14 SQL*Plus AUTOTRACE V$SESSTAT V$SYSSTAT I/O PGA PL/SQL db block getsconsistent gets physical reads sorts (memory) sorts (disk) recursive calls SQL rows processed 1. I/O PGA 2. PL/SQL 14

15 SQL*Plus AUTOTRACE I/O Statistics db block gets consistent gets 3366 physical reads physical gets/(db block gets+consistent gets) SQL*Plus AUTOTRACE I/O 3366/ ( )= % LRU 6090% db_block_buffers db_block_buffers OS SQL 15

16 SQL*Plus AUTOTRACE PGA I/O Statistics sort (memory) 18 sort (disk) sort (disk) SORT_AREA_SIZE SQL*Plus AUTOTRACE PGA PGA sort (disk) I/O sorts (disk) sort (disk) SORT_AREA_SIZE SORT_AREA_SIZE 16

17 SQL*Plus AUTOTRACE SQL> select * fromemp; PL/SQL Statistics recursive calls 13 db block gets 91 consistent gets 8 physical reads SQL SQL> select * fromemp; Statistics recursive calls 0 recursive calls ( SQL) 12 db block gets 6 consistent gets 0 physical reads SQL*Plus AUTOTRACE SQL PL/SQL SQL SQL SQL PL/SQL PL/SQL Alter system flush shared_pool; PL/SQL SQL recursive calls recursive calls SELECT * FROM emp PL/SQL SELECT * FROM emp ecursive calls PL/SQL SQL recrusive calls 17

18 SQL*Plus AUTOTRACE PL/SQL Statistics recursive calls SQL recrusive calls SQL*Plus AUTOTRACE SQL recrusive calls SQL SQL EMP emp SQL SQL SQL SQL SQL SQL Select * fromemp ; Select * from EMP; Select * fromscott.emp; Select * from test.emp; 18

19 III. SQL tkprof 19

20 III. SQL tkprof SQL tkprof SQL SQL 20

21 SQL tkprof SQL USER_DUMP_DEST tkprof SQL SQL SQL SQL PARSEEXECUTE FETCH CPU SQL SQL TKPROF 21

22 SQL tkprof SQL ON MAX_DUMP_FILE_SIZE USER_DUMP_DEST TIMED_STATISTICS < > SQL_TRACETRUE < > ALTER SESSION SET SQL_TRACE=TRUE; SQL OFF 5. tkprof $ tkprof explain=usr/passwd ; SQL 1. MAX_DUMP_FILE_SIZE USER_DUMP_DEST TIMED_STATISTICS Oracle Enterprise Edition for Windows NT timed_statistics = true user_dump_dest = E: Oracle admin DB UDUMP max_dump_file_size = SQL CPU INIT.ORA TIMED_STATISTICS Alter session set timed_statistics = ture; 2. SQL SQL 3. SQL 4. SQL 5. TKPROF USER_DUMP_DEST 22

23 SQL tkprof TKPROF SQL SQL EXPLAIN PLAN SQL SQL select avg(sal) fromemp group by deptno call count cpu elapsed disk query current rows Parse Execute Fetch total Misses in library cache during parse: 1 Optimizer goal: CHOOSE Parsing user id: 38 (TEST) Rows Execution Plan SELECT STATEMENT GOAL: CHOOSE 4 SORT (GROUP BY) 16 TABLE ACCESS GOAL: ANALYZED (FULL) OF 'EMP' EXPLAIN PLAN 23

24 SQL tkprof EXPLAIN PLAN Rows Execution Plan SELECT STATEMENT GOAL: CHOOSE 4 SORT GROUP BY) 16 TABLE ACCESS GOAL: ANALYZED (FULL) OF 'EMP' tkprof EXPLAIN PLAN P9 ROWS tkprof SELECT avg (sal) FROM emp group by deptnosql 16 TABLE ACCESS GOAL: ANALYZED FULLOF EMP 16 EMP GROUP BY 4 SELECT STATEMENT GOAL:CHOOSE SQL SELECT 4 24

25 SQL tkprof SQL disk query + current call count cpu elapsed disk query current rows Parse Execute Fetch total rows cpu CPU elapsed %ORACLE_HOME% tkprof TKPROF SQL PARSE SQL EXECUTE SQL DML SELECT FETCH SELECT DISK QUERYCURRENT CPU ELAPSED ROWS CPU SQL 25

26 SQL tkprof I/O call count cpu elapsed disk query current rows Parse Execute Fetch total cpu elapsed I/O disk/ (query + current) tkprof I/O 1(disk / (query + current)) /( )) = % DB_BLOCK_BUFFERS p16 cpu elapsed I/O 26

27 SQL tkprof DB ACCOUNTS SELECT balance FROM accounts WHERE acc_num = call count cpu elapsed disk query current rows Parse Execute Fetch total query + current / rows 20 tkprof SQL rows = querycurrent / rows 20 acc_num SQL rows = SELECT balance FROM accounts WHERE acc_num= call count cpu elapsed disk query current rows Parse Execute Fetch total

28 IV. UTLBSTAT/UTLESTAT 28

29 IV. UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT 29

30 UTLBSTAT/UTLESTAT BSTATESTAT report.txt BSTAT ESTAT UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT utlbstat.sql utlestat.sql report.txt utlbstat.sql BEGIN utlestat.sql END V$ STATS$ UTLBSTAT/UTLESTAT 30

31 UTLBSTAT/UTLESTAT report.txt report.txt I/O report.txt report.txt UTLBSTAT/UTLESTAT 31

32 UTLBSTAT/UTLESTAT TIMED_STATISTICSTRUE utlestat.sql utlbstat.sql report.txt SQL*Plus Ver.8.1 sysdba rdbms admin utlbstat rdbms admin utlestat utlestat.sql report.txt report.txt UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT utlbstat.sql utlestat.sql report.txt 1. TIMED_STATISTICSTRUE TIMED_STATISTICS Alter session set timed_statistics = ture; 2. utlbstat.sql utlestat.sql 3. Server Manager sysdba SQL SQL@%ORACLE_HOME% rdbms admin utlbstat.sql; SQL@%ORACLE_HOME% rdbms admin utlestat.sql; Ver.8 Server Manager Ver.8.1 SQL*Plus 4. report.txt BSTAT/ESTAT report.txt utlestat.sql report.txt 32

33 UTLBSTAT/UTLESTAT PINHITRATIO 90% PINSRELOADS RELOADS/PINS100 SQL SHARED_POOL_SIZE report.txt SVRMGR> Rem Select Library cache statistics. The pin hit rate should be high. SVRMGR> select namespace library, gets, 2> round(decode(gethits,0,1,gethits)/decode(gets,0,1,gets),3) gethitratio, 3> pins, round(decode(pinhits,0,1,pinhits)/decode(pins,0,1,pins),3) pinhitratio, 4> reloads, invalidations 5> fromstats$lib; LIBRARY GETS GETHITRATI PINS PINHITRATI RELOADS INVALIDATI BODY CLUSTER INDEX OBJECT PIPE SQL AREA TABLE/PROCED TRIGGER SQL SQL EMP emp SQL SHARED_POOL_SIZE 33

34 SVRMGR> select n1.name "Statistic", 2> n1.change "Total", 3> round(n1.change/trans.change,2) "Per Transaction", 4> round(n1.change/((start_users + end_users )/2),2) "Per Logon", 5> round(n1.change/(to_number(to_char(end_time, 'J'))*60*60*24-6> to_number(to_char(start_time, 'J'))*60*60*24 + 7> to_number(to_char(end_time, 'SSSSS')) - 8> to_number(to_char(start_time, 'SSSSS'))) 9>, 2) "Per Second" 10> from 11> stats$stats n1, 12> stats$stats trans, 13> stats$dates 14> where 15> trans.name='user commits' 16> and n1.change!= 0 17> order by n1.name; Statistic Total Per Transact Per Logon Per Second CPU used by this session CPU used when call started DBWR checkpoint buffers wri DBWR undo block writes SQL*Net roundtrips to/from background timeouts buffer is not pinned count bytes received via SQL*Net bytes sent via SQL*Net to c calls to get snapshot scn: calls to kcmgas calls to kcmgcs commit cleanouts commit cleanouts successful consistent gets cursor authentications db block changes db block gets enqueue releases enqueue requests execute count free buffer requested

35 logons cumulative messages received messages sent no work - consistent read g opened cursors cumulative parse count (hard) parse count (total) parse time cpu parse time elapsed physical reads physical reads direct physical writes physical writes direct physical writes non checkpo process last non-idle time recursive calls recursive cpu usage redo blocks written redo entries redo size redo synch writes redo wastage redo write time redo writes session connect time session logical reads session pga memory session pga memory max session uga memory session uga memory max sorts (disk) sorts (memory) sorts (rows) table fetch by rowid table scan blocks gotten table scan rows gotten table scans (short tables) total file opens user calls user commits

36 UTLBSTAT/UTLESTAT 1. CPU used by this session Statistic Total Per Transact Per Logon Per Second CPU used by this session parse time cpu consistent gets db block gets physical reads CPU used by this session CPU used by this sessionparse time cpu parse time cpu SQL SQL P16 90% DB_BLOCK_BUFFERS 1 physical reads/ (consistent gets + db block gets) = 1 - (18/ ( ) Statistic P16Total Per Transact Per Logon Per Second sorts (disk) sorts (memory) sorts (rows)

37 UTLBSTAT/UTLESTAT buffer busy wait undo header segment header (* 1) V$SESSION_WAIT *1. FIFO first in first out SVRMGR> Rem Buffer busy wait statistics. SVRMGR> select * fromstats$waitstat 2> where count!= 0 order by count desc; CLASS COUNT TIME UNDO_SEGMENT0 RBS SVRMGR> select * fromstats$roll; UNDO_ TRANS_ TRANS_ UNDO_ SEGMENT_SIZE XACTS SHRINKS WRAPS SEGMENT TBL_GETS TBL_WAITS BYTES_WRITTEN BYTES

38 UTLBSTAT/UTLESTAT / SHARED_POOL_SIZE stats$dc GET_MISS/GET_REQS100>=15 SHARED_POOL_SIZE CUR_USAGCOUNT SHARE_POOL_SIZE SVRMGR> Rem get_miss and scan_miss should be very low compared to the requests. SVRMGR> Rem cur_usage is the number of entries in the cache that are being used. SVRMGR> select * fromstats$dc 2> where get_reqs!= 0 or scan_reqs!= 0 or mod_reqs!= 0; NAME GET_REQS GET_MISS SCAN_REQ SCAN_MIS MOD_REQS COUNT CUR_USAG dc_tablespaces dc_segments dc_users dc_user_grants dc_objects dc_usernames dc_object_ids dc_profiles dc_histogram_de

39 UTLBSTAT/UTLESTAT I/O I/O TABLE_ BLKS_ READ_ BLKS_ WRITE_ AVG_RT SPACE FILE_NAME READS READ TIME WRITES WRT TIME MEGABYTES blocks/rd INDX /disk4/index.dbf RBS /disk2/rbs01.dbf SYSTEM /disk1/system01.dbf USERS /disk3/user01.dbf read I/O I/O multiblock read INDX READS/BLKS_READ 1 READ USERS READS168 BLKS_READ672 I/O4 READ TABLE_SPACE utlbstat.sql utlestat.sql START_TIME END_TIME nov-00 10:15:40 20-nov-00 10:18:30 39

40 V. STATSPACK 40

41 V. STATSPACK STATSPACK STATPACK(statistics package) BSTAT/ESTAT STATSPACK 41

42 42 STATSPACK Ver UTLBSTAT/UTLESTAT snap1 snap2 snap3 snap4 snap5 STATSPACK UTLBSTAT/UTLESTAT Ver SNAP SNAP2 SNAP2 SNAP4 SNAP1 SNAP5 3 STATSPACK (Ver Ver8.1.7 ) statspack.doc spdoc.txt STATSPACK

43 STATSPACK UTLBSTAT/UTLESTAT SQL etc. UTLBSTAT/UTLESTAT UTLBSTAT/UTLESTAT SQL STATSPACK Feature Statspack BSTAT/ESTAT Instance summary page Y N Normalization of instance statistics by time and number of transactions Y N Wait events Y Y High-resource SQL Y* N Instance-activity statistics Y Y Tablespace and file I/O statistics Y Y Buffer-wait breakdown by type Y Y Enqueue statistics Y N Rollback-segment activity and storage data Y Y Latch activity Y Y Latch-sleep breakdown Y N Latch children Y** N Buffer-pool statistics Y N Dictionary-cache activity Y Y Library-cache activity Y Y SGA memory summary Y N SGA memory breakdown Y N Nondefault init.ora parameters Y Y Configurable output name Y N Ability to move performance data Y N Configurable amount of data collected Y N Ability to run in multiple instances for Oracle Parallel Server Y N *Level 5 (default) data collection **Level 10 data collection level 5,10 43

44 STATSPACK Version sysdba STATSPACK %ORACLE_HOME% rdbms admin statscre.sql; perfstat 2. perfstat SQL> connect perfstat/perfstat; SQL> execute statspack.snap; 3. rdbms admin statsrep.sql; STATSPACK 1. STATSPACK SQL*Plussysdba Ver statscre.sql Ver spcreate.sql Server Manager SQL*Plus statscre.sql statscur.sql statsctab.sql statspack.sql statscur.sql STATSPACK perfstat V$ SELECT Specify perfstat perfstat user s default tablespace: tools; Specify perfstat user s temporary tablespace: temp ; Enter tablespace where STATSPACK objects will be created: tools ; timed_statistics true 2. perfstat statspack.snap snap_id 3. Enter begining Snap Id : 1; perfstat Ver statsrep.sql Enter ending Snap Id : 4; Ver spreport.sql Sp_id Sp_id Enter name of output file[st_1_2]: st_1_4; 44

45 STATSPACK dbms_job job_queue_processes 1 dbms_job.interval execute dbms_job.interval(<job number>, sysdate+(1/48) ); execute dbms_job.remove(<job number>); statsauto.sql STATSPACK dbms_job job_queue_processes dbms_job.interval dbms_job.interval (<job number>, sysdate+(1/48) ) 1/48 30 dbms_job.remove(<job number>) statsauto.sql 45

46 STATSPACK i_snap_level level 0: level 5: 0SQL level 10: 5 DB (R8.1.7 ) SQL> %ORACLE_HOME% rdbms admin sppurge.sql i_snap_level snapshot1 level5 snapshot2 level10 level5 sppurge.sql sptrunc.sql 46

47 STATSPACK Summary CPU/ Summary Summary BSTAT/ ESTAT BSTAT/ESTAT 1. DB Name DB Id Instance Inst Num Release OPS Host db db NO HSAITO01 2. Snap Length Start Id End Id Start Time End Time (Minutes) Dec-00 17:12:07 25-Dec-00 17:19: init.ora Cache Sizes ~~~~~~~~~~~ db_block_buffers: db_block_size : 8192 log_buffer: shared_pool_size:

48 STATSPACK Summary 4. Per Second Per Transaction Load Profile ~~~~~~~~~~~~ Per Second Per Transaction Redo size: , REDO Logical reads: , Block changes: Physical reads: Physical writes: User calls: Parses: , Hard parses: Sorts: Transactions: 0.00 Rows per Sort: % Pct Blocks changed / Read: 9.56 % Recursive Call Pct: % Rollback / transaction Pct:

49 STATSPACK Summary 100 SQL Redo db_block_buffers shared_pool_size log_buffer Instance Efficiency Percentages (Target 100%) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Buffer Nowait Ratio: Buffer Hit Ratio: Library Hit Ratio: SQL Redo NoWait Ratio: Redo In-memory Sort Ratio: Soft Parse Ratio: Latch Hit Ratio: Shared Pool Statistics Begin End ~~~~~~ ~~~~~ Memory Usage Pct: Pct SQL with executions > 1: SQL Pct Memory for SQL w/exec > 1: SQL 49

50 STATSPACK Summary 5 6. control file sequential write 1 db file sequential read DB 1 SQL / control file parallel write Top 5 Wait Events ~~~~~~~~~~~~~~~~~ Wait % Total Event Waits Time (cs) Wt Time control file sequential read db file sequential read control file parallel write READ free buffer waits, buffer busy wait db_block_buffers I/O write complete waits DBWR I/O SQL 50

51 STATSPACK 51

52 VI. Oracle Enterprise Manager 52

53 V. Oracle Enterprise Manager Oracle Enterprise Manager Oracle Diagnostics Pack Oracle Tuning Pack 53

54 Oracle Enterprise Manager Oracle GUI Oracle Diagnostics Pack Oracle Tuning Pack Oracle Change Management Pack Oracle Enterprise Manager Oracle Enterprise Manager Oracle GUI Oracle Diagnostics Pack Oracle Tuning Pack Oracle Change Management Pack Oracle Enterprise Manager Oracle Diagnostics PackOracle Tuning Pack 54

55 Oracle Enterprise Manager Oracle Diagnostics Pack Capacity Planner Performance Manager Advanced Events TopSessions Oracle Trace Performance Manager I/O Oracle Enterprise Manager Oracle Diagnostics Pack Oracle Diagnostics Pack Oracle Enterprise Manager Oracle Capacity Planner Oracle Performance Manager Oracle TopSessions Oracle Lock Manager Oracle Advanced Events Oracle TRACE 55

56 Oracle Enterprise Manager Oracle Tuning Pack Oracle Expert Oracle SQL Analyze Index Tuning Wizard Oracle Tablespace Map Reorg Wizard Oracle Enterprise Manager Oracle Tuning Pack Oracle Tuning Pack Oracle Enterprise Manager SQL Oracle Tuning Pack Oracle Enterprise Manager Oracle Expert Oracle SQL Analyze SQL Index Tuning Wizard Oracle Tablespace MapReorg Wizard 56

57 Oracle Oracle8i days SQL days 1 day day INDEX day INDEX day TEL FAX 57

58 Oracle Oracle8Oracle8iNet8 58

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co 072 DB Magazine 2007 September ~~~~~~~~~~~~~~~~~~ wait Call CPU time 1,055 34.7 latch: library cache 7,278 750 103 24.7 latch: library cache lock 4,194 465 111 15.3 job scheduler coordinator slave wait

More information

untitled

untitled Oracle Direct Seminar SQL Agenda SQL SQL SQL SQL 11g SQL FAQ Oracle Direct SQL Server MySQL PostgreSQL Access Application Server Oracle Database Oracle Developer/2000 Web Oracle Database

More information

Slide 1

Slide 1 Oracle Direct Seminar 実践!! パフォーマンスチューニング - モニタリング編 - 日本オラクル株式会社 Agenda 1. なぜモニタリングが必要か 2. モニタリングを行う方法紹介 3. パフォーマンスの分析方法 4. GUI によるパフォーマンス監視 チューニング Oracle Direct の無償技術サービス SQL Server

More information

スライド 1

スライド 1 ! ~Oracle Database を監視しよう ~ Session by Shinnosuke Akita 2014.02.00 Self Introduction Shinnosuke Akita Oracle DBA をやっています 今の現場は DB 設計もやっています 入社 2 年目 休日はランニングと家族サービス たまに小説も書いたり 勉強会にでかけたり 大衆酒場めぐりがマイブーム Today

More information

Oracle8簡単チューニング for Windows NT

Oracle8簡単チューニング for Windows NT Oracle8 ... 2 0.... 3 1.WINDOWS NT... 4 1.1.CPU...4 1.2....8 W INDOWS NT...9 2.ORACLE... 10 2.1.SHARED_POOL_SIZE...10 2.2.DB_BLOCK_BUFFERS...11 2.3.SORT_AREA_SIZE...14 2.4.DB_FILE_MULTIBLOCK_READ_COUNT...15

More information

Oracle Enterprise Manager概説 リリース2.2

Oracle Enterprise Manager概説 リリース2.2 Oracle Enterprise Manager 2.2 2000 11 : J02261-01 Oracle Enterprise Manager 2.2 : J02261-01 Oracle Enterprise Manager Concepts Guide, Release 2.2 A85250-01 Copyright 1996, 2000, Oracle Corporation. All

More information

目次 1 集計関数 / 分析関数とは 2 集計関数 / 分析関数のパフォーマンス効果 3 ケーススタディグループ小計やクロス集計を計算するランキングを表示する前月比較を表示する累計を計算する移動平均を計算する構成比を計算する Oracle8i SQL Oracle8i Oracle Oracle C

目次 1 集計関数 / 分析関数とは 2 集計関数 / 分析関数のパフォーマンス効果 3 ケーススタディグループ小計やクロス集計を計算するランキングを表示する前月比較を表示する累計を計算する移動平均を計算する構成比を計算する Oracle8i SQL Oracle8i Oracle Oracle C Oracle8i データウェアハウス機能活用法 ~ レポーティングに有効な集計関数 分析関数 ~ Creation Date: Oct. 11, 2000 Last Update: Oct. 11, 2000 Version: 1.0!! DWH etc Business Intelligence Oracle8i RDBMS DWH Oracle8i Oracle Corporation Japan

More information

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2 Oracle Enterprise Manager Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2 2000 11 : J02263-01 Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2

More information

imt_817_tuning_11_1822.PDF

imt_817_tuning_11_1822.PDF intermedia Text Tuning Guide Creation Date: Mar 12, 2001 Last Update: Apr 19, 2001 Version: 1.1 4 intermedia Text 4 5 5 5 6 6 intermedia 6 6 6 7 7 7 7 8 8 8 8 R816 9 10 10 10 12 12 13 14 15 catalog index

More information

D1印刷用.PDF

D1印刷用.PDF [ D-1 ] Windows Oracle8i for Windows Oracle8i for Windows / / Visual Basic - Oracle8i SQL Oracle Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i Personal Edition Oracle8i Workgroup Server Oracle8i

More information

橡ExCtrlPDF.PDF

橡ExCtrlPDF.PDF THE Database FOR Network Computing Oracle Oracle Oracle Oracle Oracle Oracle (Oracle Object for OLE Oracle Developer) SQL Oracle8 Enterprise Edition R8.0.5 for Windows NT Oracle8 Enterprise Edition R8.0.5

More information

Oracleの領域管理~トラブル防止のテクニック~

Oracleの領域管理~トラブル防止のテクニック~ THE Database FOR Internet Computing Oracle ... 3... 4... 4... 5... 5... 7... 8... 9... 12... 13... 13... 16... 17... 18... 20... 22... 23... 23... 24... 25... 25... 26... 28... 31... 31... 31... 33...

More information

これは何? ORACLE の内部状態を示す情報の一つである 待機イベントについて解説します 待機イベントを知ることで 一歩進んだパフォーマンスチューニングが出来ます また 待機イベントという切り口を通して ORACLE のアーキテクチャに対する理解を深めていきます なお ORACLE のバージョンは

これは何? ORACLE の内部状態を示す情報の一つである 待機イベントについて解説します 待機イベントを知ることで 一歩進んだパフォーマンスチューニングが出来ます また 待機イベントという切り口を通して ORACLE のアーキテクチャに対する理解を深めていきます なお ORACLE のバージョンは ORACLE 入門講座待機イベントを知ろう アリエル ネットワーク鈴木健介 これは何? ORACLE の内部状態を示す情報の一つである 待機イベントについて解説します 待機イベントを知ることで 一歩進んだパフォーマンスチューニングが出来ます また 待機イベントという切り口を通して ORACLE のアーキテクチャに対する理解を深めていきます なお ORACLE のバージョンは 10.2 を想定しています

More information

Recovery Managerのバックアップおよびリカバリの最適化

Recovery Managerのバックアップおよびリカバリの最適化 Recovery Manager 2005 7 Recovery Manager... 3 Recovery Manager... 4 Recovery Manager... 4... 4... 5... 5... 5... 6... 6... 6... 7... 7... 8... 9 I/O I/O... 9... 10... 12... 12... 12... 13... 14 /... 14...

More information

Oracle Enterprise Manager Oracle Diagnostics Packスタート・ガイド リリース2.2

Oracle Enterprise Manager Oracle Diagnostics Packスタート・ガイド リリース2.2 Oracle Enterprise Manager Oracle Diagnostics Pack 2.2 2000 11 : J02267-01 Oracle Enterprise Manager Oracle Diagnostics Pack 2.2 : J02267-01 Getting Started with the Oracle Diagnostics Pack, Release 2.2

More information

Oracle9i

Oracle9i Oracle9i 2002 2 Oracle9i... 4... 4... 4 Oracle... 4 SQL... 6... 6... 6... 7... 7... 9... 9... 9 CUBE... 10... 11... 11... 11 OR... 12... 12... 14... 14... 15... 15... 16... 16... 18... 18... 18... 19...

More information

はじめに コース概要と目的 Oracle データベースのパフォーマンス問題の分析方法 解決方法を説明します 受講対象者 データベース管理者の方を対象としています 前提条件 データベース アーキテクチャ データベース マネジメント を受講された方 もしくは同等の知識 をお持ちの方 テキスト内の記述につ

はじめに コース概要と目的 Oracle データベースのパフォーマンス問題の分析方法 解決方法を説明します 受講対象者 データベース管理者の方を対象としています 前提条件 データベース アーキテクチャ データベース マネジメント を受講された方 もしくは同等の知識 をお持ちの方 テキスト内の記述につ はじめに コース概要と目的 Oracle データベースのパフォーマンス問題の分析方法 解決方法を説明します 受講対象者 データベース管理者の方を対象としています 前提条件 データベース アーキテクチャ データベース マネジメント を受講された方 もしくは同等の知識 をお持ちの方 テキスト内の記述について 構文 [ ] 省略可能 { A B } A または B のどちらかを選択 n _ 数値の指定 デフォルト値

More information

Oracle Diagnostics, Tuning, Change Management Pack日本語リリース・ノート, リリース2.2

Oracle Diagnostics, Tuning, Change Management Pack日本語リリース・ノート, リリース2.2 Oracle Diagnostics, Tuning, Change Management Pack 2.2 2001 6 J03360-02 : Readme for Oracle Change Management, Diagnostics and Tuning Packs Release 2.2.0.0.0 A85214-02 1.... 3 1.1... 3 1.2 2.2... 3 1.3

More information

Oracle Direct 無償支援サービス ヒアリング・シート利用手順

Oracle Direct 無償支援サービス ヒアリング・シート利用手順 パフォーマンス クリニック サービス パフォーマンス診断ツール の使い方 日本オラクル株式会社 Copyright 2016, Oracle and/or its affiliates. All rights reserved. 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は

More information

Oracle9i Reportsのチューニング

Oracle9i Reportsのチューニング Oracle9i Reports 2002 5 Oracle9i Reports...3...4...4...9...14...18 Oracle9i Forms...19...19...20 A...22 B...24 Oracle9i Reports 2 Oracle9i Reports Oracle9i Reports Oracle9i Oracle9i Reports 3 Oracle9i

More information

PowerPoint -O80_REP.PDF

PowerPoint -O80_REP.PDF Oracle8 Core Technology Seminar 1997109,31 Oracle8 OS: UNIX Oracle8 : Release8.0.3 Oracle8 Quick Start Package Lesson 5 -- Enhancements to Distributed Facilities Oracle8 -- - Oracle8 LOB Oracle8 -- - Updates

More information

untitled

untitled Oracle Direct Seminar !?Oracle Database 11g Agenda Oracle Database Enterprise Manager Oracle Direct Concierge SQL Server MySQL PostgreSQL Access Oracle Database Oracle Developer/2000

More information

KWCR3.0 instration

KWCR3.0 instration KeyWeb Creator R3.0 R3.0 for MS-Windows 2005 10 B25586-01 Oracle Oracle Oracle Corporation Copyright 2005, Oracle Corporation All Right Reserved KeyWeb Creator R3.0 2005 10 Copyright 1997-2005 KeyWeb Creator

More information

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス Oracle Database 10g Release 2 2005 9 Oracle Database 10g Release 2... 3... 3... 3 Automatic Workload Repository AWR... 3 Automatic Database Diagnostic Monitor ADDM... 4 Automatic SQL Tuning SQL... 4 SQL

More information

Oracle Database 11g × Hitachi Storage Solutionsのベストプラクティス

Oracle Database 11g × Hitachi Storage Solutionsのベストプラクティス - 1 - 1... 4 2... 5 2.1 ORACLE11G DATABASE REPLAY... 5 2.1.1 DB... 5 2.1.2... 6 2.2 DATABASE REPLAY... 6 2.2.1 DB... 6 2.2.2... 6 3... 8 3.1 ORACLE DATABASE 11G DATABASE REPLAY... 8 3.1.1 Database Replay...

More information

日本オラクル株式会社

日本オラクル株式会社 FISC 6 Oracle Database 10g ~ ~ : 2005 7 26 : 2005 7 31 : 1.0 2004 4 (* ) FISC ) (* ) FISC 6 (* FISC 6 ) FISC 6 Oracle g Database 10 (FISC) http://www.fisc.or.jp FISC http://www.fisc.or.jp/info/info/050307-1.htm

More information

Agenda はじめに 目的とゴール Part1の振り返り AWRを使用した性能分析 AWR 概要 AWRに格納される情報 AWR レポートにおける分析アプローチ AWR 確認ポイント Case Study AWRとアーキテクチャの関係 まとめ Part2のポイント まとめ Copyright 20

Agenda はじめに 目的とゴール Part1の振り返り AWRを使用した性能分析 AWR 概要 AWRに格納される情報 AWR レポートにおける分析アプローチ AWR 確認ポイント Case Study AWRとアーキテクチャの関係 まとめ Part2のポイント まとめ Copyright 20 Oracle Direct Seminar オラクルコンサルタントが語る性能分析の真髄 Part2 日本オラクル株式会社 Agenda はじめに 目的とゴール Part1の振り返り AWRを使用した性能分析 AWR 概要 AWRに格納される情報 AWR レポートにおける分析アプローチ AWR 確認ポイント Case Study AWRとアーキテクチャの関係

More information

OM.indd

OM.indd _ INDEX 3 4 5 6 7 8 9 Platinum 10 Gold 12 Silver 14 Bronze 16 18 20 FAQ 21 22 1997 10 15 Platinum Platinum IT 保々雅世 3 IT Control Real Application Cluster Grid Oracle Application Server 10g CLE MASTER ORA

More information

第 5 章 結合 結合のパフォーマンスに影響を与える結合の種類と 表の結合順序について内部動作を交えて 説明します 1. 結合処理のチューニング概要 2. 結合の種類 3. 結合順序 4. 結合処理のチューニングポイント 5. 結合関連のヒント

第 5 章 結合 結合のパフォーマンスに影響を与える結合の種類と 表の結合順序について内部動作を交えて 説明します 1. 結合処理のチューニング概要 2. 結合の種類 3. 結合順序 4. 結合処理のチューニングポイント 5. 結合関連のヒント はじめに コース概要と目的 Oracle をより効率的に使用するための SQL チューニング方法を説明します また 索引の有無 SQL の記述方 法がパフォーマンスにどのように影響するのかを実習を通して習得します 受講対象者 アプリケーション開発者 / データベース管理者の方 前提条件 SQL トレーニング データベース アーキテクチャ コースを受講された方 もしくは同等の知識をお持 ちの方 テキスト内の記述について

More information

領域サイズの見積方法

領域サイズの見積方法 White Paper 1998 3 1998 7 NULL 1998 9 2 8.03 Design & Migration Services Oracle Corporation Japan 1998 Printed in Japan Oracle and SQL*Loader are registered trademarks. Oracle7 Oracle Corporation Oracle

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

NEC Storage series NAS Device

NEC Storage series NAS Device NEC Storage NV Series NAS Device Guide for Oracle Storage Compatibility Program Snapshot Technologies is-wp-04-001 Rev-1.00(J) Oct, 2004 NEC Solutions NEC Corporation. - 1 - Copyright 2004 NEC Corporation

More information

BIG_RM_BAS_OPEN

BIG_RM_BAS_OPEN Oracle8 & 1998 1 21 1 1 1998 1 21 2 2 1998 1 21 3 3 1998 1 21 4 4 1998 1 21 5 5 1998 1 21 6 6 7 1998 1 21 7 Oracle Oracle Enterprise Enterprise Manager Manager Recovery Recovery Manager Manager GUI Oracle8

More information

サポートエンジニアが語るパフォーマンス問題の原因調査とチューニング 日本オラクル株式会社データベーステクノロジーサポート本部 Principal Technical Support Engineer 田島教子

サポートエンジニアが語るパフォーマンス問題の原因調査とチューニング 日本オラクル株式会社データベーステクノロジーサポート本部 Principal Technical Support Engineer 田島教子 サポートエンジニアが語るパフォーマンス問題の原因調査とチューニング 日本オラクル株式会社データベーステクノロジーサポート本部 Principal Technical Support Engineer 田島教子 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード

More information

自己管理型データベース: アプリケーションおよびSQLチューニング・ガイド

自己管理型データベース: アプリケーションおよびSQLチューニング・ガイド : SQL 2005 9 : SQL... 3 SQL... 6... 8... 9 SQL :... 9 SQL... 10... 11 SQL... 12 SQL TUNING SET... 13 SQL... 14 ADDM SQL... 14 SQL... 15 STS... 15... 16 SQL... 16 DBMS_SQLTUNE... 17... 17 SQL... 19 SQL

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

第 3 章代表的なチューニングポイント 3 Q. ストアド プロシージャを使用した SQL 共有率の向上 A. ストアド プロシージャを使用した場合 同じストアド プロシージャを実行する複数のユーザーが 同じ共有 PL/SQL 領域を使用します また ストアド プロシージャは解析済みで格納されている

第 3 章代表的なチューニングポイント 3 Q. ストアド プロシージャを使用した SQL 共有率の向上 A. ストアド プロシージャを使用した場合 同じストアド プロシージャを実行する複数のユーザーが 同じ共有 PL/SQL 領域を使用します また ストアド プロシージャは解析済みで格納されている Oracle パフォーマンスチューニング ~ 研修受講後のスキルアップサポート ~ 対応バージョン :Oracle 10gR1 ~ 12cR1 本資料は アシスト Oracle 研修をご受講いただいたお客様からのご質問や 研修ではご案内できなかった情報などを FAQ にまとめたものです 研修受講後のスキルアップの一助として 是非お役立てください ご利用上の注意事項は最後のページにまとめられております

More information

Oracle for Linux を使いこなす技

Oracle for Linux を使いこなす技 Oracle9i for Linux Linux Monitoring the Oracle Monitoring the Server vs vs OS vs Oracle vs SQL vs 3 I/O I/O STEP1: STEP2:DB DB STEP3: STEP4: DB etc STEP5:SQL SQL STEP6: Oracle STEP7: I/O I/O STEP8:

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

untitled

untitled Oracle Direct Seminar !? Oracle Database 11g - - Agenda Copyright 2009, Oracle. All rights reserved. 2 Agenda Copyright 2009, Oracle. All

More information

BC4J...4 BC4J Association JSP BC4J JSP OC4J

BC4J...4 BC4J Association JSP BC4J JSP OC4J lê~åäévá=gaéîéäçééê= 9.0.3/9.0.4 BC4J Creation Date: Oct 08, 2003 Last Update: Feb 27, 2004 Version 1.0 ...3... 3 BC4J...4 BC4J...4... 4... 5... 6...7... 8... 9 Association... 13... 15... 20... 22... 25

More information

Microsoft PowerPoint - Oracle8i-tuning⁄U.ppt

Microsoft PowerPoint - Oracle8i-tuning⁄U.ppt Oracle8/8i パフォーマンスチューニング Ⅱ 日本オラクル株式会社 1 1 アジェンダ OLTPシステムのチューニング バッチ処理のチューニング DSSのチューニング 2 2 OLTP システムのチューニング OLTPシステムの特徴 チューニング事例 STEP0 エラーの回避 STEP1 共有プールの調整 STEP2 データベース バッファの最適化 STEP3 I/O (DBWR) の最適化

More information

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

ハイウォーターマークを知る

ハイウォーターマークを知る THE Database FOR Network Computing Oracle Oracle Oracle7 Oracle8 Oracle8 Enterprise Edition R8.0.4 for Windows NTOracle7 Server R7.3.4 for Windows NT Oracle7Oracle8 Oracle,Oracle7,Oracle8 1.5.1.... 6 1.5.2.

More information

ORACLE RECOVERY MANAGER (RMAN) 10g: 再起動

ORACLE RECOVERY MANAGER (RMAN) 10g: 再起動 ORACLE RECOVERY MANAGER (RMAN) 10g: Tammy Bednar, Oracle Oracle (DBA) Oracle Oracle Data Guard 1 Oracle Oracle Oracle Oracle Recovery Manager Oracle Database 10g Oracle Database 10g RECOVERY MANAGER Recovery

More information

MOTIF XF 取扱説明書

MOTIF XF 取扱説明書 MUSIC PRODUCTION SYNTHESIZER JA 2 (7)-1 1/3 3 (7)-1 2/3 4 (7)-1 3/3 5 http://www.adobe.com/jp/products/reader/ 6 NOTE http://japan.steinberg.net/ http://japan.steinberg.net/ 7 8 9 A-1 B-1 C0 D0 E0 F0 G0

More information

Agenda

Agenda Oracle データベースの監査機能 株式会社アクアシステムズアプリケーション統括部 PAU001J-00-00SE 株式会社アクアシステムズ Oracle データベースを専門とする技術者集団 Oracle データベースチューニング & 監視ツール Performance Analyzer の開発 / 販売 Oracle データベース診断及びパフォーマンスチューニング Oracle データベースに関するコンサルティング

More information

Microsoft Word - D JP.docx

Microsoft Word - D JP.docx Application Service Gateway Thunder/AX Series vthunder ライセンスキー インストール 手順 1 1.... 3 2. vthunder... 3 3. ACOS... 3 4. ID... 5 5.... 8 6.... 8 61... 8 62 GUI... 10 2 1. 概要 2. vthunder へのアクセス 方法 SSHHTTPSvThunder

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

橡実践Oracle Objects for OLE

橡実践Oracle Objects for OLE THE Database FOR Network Computing 2 1. 2 1-1. PL/SQL 2 1-2. 9 1-3. PL/SQL 11 2. 14 3. 16 3-1. NUMBER 16 3-2. CHAR/VARCHAR2 18 3-3. DATE 18 4. 23 4-1. 23 4-2. / 24 26 1. COPYTOCLIPBOARD 26 III. 28 1.

More information

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

意外と簡単!?

意外と簡単!? !?Access Oracle Oracle Migration Workbench MS-Access Oracle Creation Date: Oct 01, 2004 Last Update: Mar 08, 2005 Version: 1.1 !? Oracle Database 10g / GUI!? / Standard Edition!? /!?!? Oracle Database

More information

<Documents Title Here>

<Documents Title Here> Oracle9i Database R9.2.0 for Windows Creation Date: Mar 06, 2003 Last Update: Mar 24, 2003 CD 1 A99346-01 Oracle9i Database Release 2 (9.2.0.1.0) for Microsoft Windows NT/2000/XP CD 1 of 3 2 A99347-01

More information

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev

More information

C3印刷用.PDF

C3印刷用.PDF [ C-3 ] Oracle8i On Windows Agenda Windows Oracle8i Oracle8i for Windows NT/2000 R8.1.7 Oracle HTTP Server Oracle intermedia Oracle Workflow Windows Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i

More information

…l…b…g…‘†[…N…v…“…O…›…~…fi…OfiÁŸ_

…l…b…g…‘†[…N…v…“…O…›…~…fi…OfiÁŸ_ 13 : Web : RDB (MySQL ) DB (memcached ) 1: MySQL ( ) 2: : /, 3: : Google, 1 / 23 testmysql.rb: mysql ruby testmem.rb: memcached ruby 2 / 23 ? Web / 3 ( ) Web s ( ) MySQL PostgreSQL SQLite MariaDB (MySQL

More information

AJACS18_ ppt

AJACS18_ ppt 1, 1, 1, 1, 1, 1,2, 1,2, 1 1 DDBJ 2 AJACS3 2010 6 414:20-15:20 2231 DDBJ DDBJ DDBJ DDBJ NCBI (GenBank) DDBJ EBI (EMBL-Bank) GEO DDBJ Omics ARchive(DOR) ArrayExpress DTA (DDBJ Trace Archive) DRA (DDBJ

More information

Null

Null Technical Discussion Night ~ 今宵のテーマ : エキスパートはどう考えるか? 体感! パフォーマンスチューニング ~ Japan Oracle User Group 日本オラクル株式会社クラウド テクノロジー事業統括 Database & Exadata プロダクトマネジメント本部 Copyright 2017, Oracle and/or its affiliates.

More information

Web Web Web Web Web, i

Web Web Web Web Web, i 22 Web Research of a Web search support system based on individual sensitivity 1135117 2011 2 14 Web Web Web Web Web, i Abstract Research of a Web search support system based on individual sensitivity

More information

Null

Null Oracle Database Connect 2017 ~ 最新のデータベース技術がここにある ~ エキスパートはどう考えるか? 体感! パフォーマンスチューニング Japan Oracle User Group 日本オラクル株式会社クラウド テクノロジー事業統括 Database & Exadata プロダクトマネジメント本部 Copyright 2017, Oracle and/or its

More information

PostgreSQL SQL チューニング入門 ~ Explaining Explain より ~ 2012 年 11 月 30 日 株式会社アシスト 田中健一朗

PostgreSQL SQL チューニング入門 ~ Explaining Explain より ~ 2012 年 11 月 30 日 株式会社アシスト 田中健一朗 PostgreSQL SQL チューニング入門 ~ Explaining Explain より ~ 2012 年 11 月 30 日 株式会社アシスト 田中健一朗 アジェンダ 1.EXPLAIN とは 2. 表アクセスの基本 3. 結合の基本 4. 統計情報とは 5.EXPLAIN コマンド 6. 問題解決例 7. まとめ 2 1.EXPLAIN とは 実行計画とは - 目的地は 1 つでもアクセス方法は複数

More information

PA4

PA4 SQL チューニングによる 性能改善の効果とポイント 株式会社アクアシステムズ PPA4003J-00-00 株式会社アクアシステムズ Oracle データベースを専門とする技術者集団 Oracle チューニング & 監視ツール Performance Analyzer の開発 / 販売 Oracle 診断及びパフォーマンスチューニング Oracle データベースに関するコンサルティング Oracle

More information

Slide 1

Slide 1 Oracle Direct Seminar 実践!! パフォーマンスチューニング ~ Statspack 解析 Tips ~ 日本オラクル株式会社 アジェンダ Statspackとは? Statspackの解析方法 データベース自動チューニング機能 Oracle Direct の無償技術サービス SQL Server からの移行アセスメント MySQL からの移行相談

More information

DocuWide 2051/2051MF 補足説明書

DocuWide 2051/2051MF 補足説明書 ëêèõ . 2 3 4 5 6 7 8 9 0 2 3 4 [PLOTTER CONFIGURATION] [DocuWide 2050/205 Version 2.2.0] [SERIAL] BAUD_RATE =9600 DATA_BIT =7 STOP_BIT = PARITY =EVEN HANDSHAKE =XON/XOFF EOP_TIMEOUT_VALUE =0 OUTPUT RESPONSE

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - InputMan Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 GrapeCity Microsoft Visual Studio.NET VB.NET Oracle Tips InputMan InputMan Oracle.NET Oracle

More information

Microsoft Word - Meta70_Preferences.doc

Microsoft Word - Meta70_Preferences.doc Image Windows Preferences Edit, Preferences MetaMorph, MetaVue Image Windows Preferences Edit, Preferences Image Windows Preferences 1. Windows Image Placement: Acquire Overlay at Top Left Corner: 1 Acquire

More information

第 2 章 問合せの基本操作 この章では データベースから情報を検索する際に使用する SELECT コマンド および SELECT コマンドと 同時に使用する句について説明します 1. 問合せとは 2. 基本的な問合せ 3. 列の別名 4. 重複行を一意にする 5. 検索行の絞込み 6. 文字パター

第 2 章 問合せの基本操作 この章では データベースから情報を検索する際に使用する SELECT コマンド および SELECT コマンドと 同時に使用する句について説明します 1. 問合せとは 2. 基本的な問合せ 3. 列の別名 4. 重複行を一意にする 5. 検索行の絞込み 6. 文字パター はじめに コース概要と目的 データベース処理に使用する SQL の基本構文と使用方法について説明します 受講対象者 SQL を使用してアプリケーション開発される方 管理者となられる方 前提条件 Oracle 概要 コースを受講された方 もしくは同等の知識をお持ちの方 テキスト内の記述について 構文 [ ] 省略可能 { A B } A または B のどちらかを選択 n _ 数値の指定 デフォルト値

More information

Oracle Database 10gのOracle Data Guard

Oracle Database 10gのOracle Data Guard Oracle Database 10g Oracle Data Guard 2004 Oracle Data Guard... 3... 3... 3 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 5 Oracle Data Guard... 6 Oracle Data

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information

RN14.PDF

RN14.PDF Oracle Designer/2000 for Windows 95/NT 1.4 A46659-1 1997 7 Oracle Designer/2000 for Windows 95/NT 1.4 Oracle Designer/2000 for Windows 95/NT CD-ROM (PC) ( ) CASE Exchange SQL*Net SQL*Plus OLE Designer/2000

More information

橡CoreTechAS_HighAvailability.PDF

橡CoreTechAS_HighAvailability.PDF Oracle Application Server 10g Oracle Developer Suite 10g High Availability Page 1 1 Oracle Application Server 10g (9.0.4) 10g(9.0.4) Oracle Application Server 10g(9.0.4) New Enhanced Page 2 2 OracleAS

More information

Microsoft Word - 430_15_Developing_Stored_Procedure.doc

Microsoft Word - 430_15_Developing_Stored_Procedure.doc Java Oracle 1998 11 Java 3 Java Web GUI Java Java Java Oracle Java Oracle8i Oracle / Oracle Java Virtual Machine VM CORBA Enterprise JavaBeans Oracle Java Java Java Oracle Oracle Java Virtual Machine Oracle

More information

今さら聞けない!? Oracle入門 ~後編~

今さら聞けない!? Oracle入門 ~後編~ Oracle Direct Seminar 今さら聞けない!? Oracle 入門 ~ 後編 ~ 日本オラクル株式会社 Agenda 1. Oracle の基本動作 2. Oracle のファイル群 3. Oracle のプロセス群と専用メモリ領域. データベース内部動作 今さら聞けない!? オラクル入門 ~ 後編 ~. データベース内部動作 検索時の動作更新時の動作バックアップについて

More information

How to Use the PowerPoint Template

How to Use the PowerPoint Template 運用ヘルスチェックでトラブルを予防しよう! 今西由人スタッフコンサルタント クラウド テクノロジーコンサルティング統括本部テクニカルアーキテクト本部 DB ソリューション部 2 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント

More information

1 138

1 138 5 1 2 3 4 5 6 7 8 1 138 BIOS Setup Utility MainAdvancedSecurityPowerExit Setup Warning Item Specific Help Setting items on this menu to incorrect values may cause your system to malfunction. Select 'Yes'

More information

はじめに Oracle のチューニングポイントは 待機イベントを減らすこと!! 待機イベントの解消 = パフォーマンス向上 2

はじめに Oracle のチューニングポイントは 待機イベントを減らすこと!! 待機イベントの解消 = パフォーマンス向上 2 おら! オラ!Oracle - どっぷり検証生活 - リスクに備えたログ管理の重要性 ~DB 特権ユーザのモニタリング~ Oracle Database 現場で役立つパフォーマンスチューニング 2010 年 8 月 25 日株式会社インサイトテクノロジーエンジニアリング本部テクノロジーコンサルティング部松尾亮 1 はじめに Oracle のチューニングポイントは 待機イベントを減らすこと!! 待機イベントの解消

More information

Oracle9i DB R2構築手順

Oracle9i DB R2構築手順 HP Integrity サーバ + HP-UX 11i v2 (11.23 Oracle9i DB R2 構築手順 APPENDIX A. サンプル スクリプト / サンプル ファイル 第 2 版 2006/08 目次 1. データベース作成スクリプト... 2 orcl.sh... 3 init.ora... 3 CreateDB.sql... 4 CreateDBFiles.sql... 4

More information

MaxGauge_診断分析プロセス

MaxGauge_診断分析プロセス Easy Use -1- MaxGauge 診断 / 分析プロセス Easy Use -2- システム性能低下認識 システムレベル分析 : トレンド アラート等 診断 / 分析対象の時間帯を特定 トップダウンアプローチ 概要分析 : アクティブセッション / 滞留 /CPU 詳細領域分析 :I/O メモリー ロック 上位 ロック 上位 SQL... セッション診断 / 分析 SQL 診断 / 分析

More information

Agenda Scalability Availability CAP Theorem Scalability Availability Consistency BASE Transaction

Agenda Scalability Availability CAP Theorem Scalability Availability Consistency BASE Transaction Cloud --- Scalability Availability --- Agenda Scalability Availability CAP Theorem Scalability Availability Consistency BASE Transaction Scale-out Scale-out Availability Scalabilty Availability Scalability

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - SPREAD Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

Oracle Developer Release 6i

Oracle Developer Release 6i Oracle Developer Release 6i 1.1 ...1...5...6 ORACLE DEVELOPER... 6...6...6 Oracle Developer...6...9...9... 10... 10...10...11...12... 13... 13... 13...14... 14 ORACLE DEVELOPER R6I... 14 R6i...15...15...15

More information

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能 Oracle Enterprise Manager 10g R2 Grid Control: 2005 8 Oracle Enterprise Manager 10g R2 Grid Control:... 3... 3 GRID CONTROL... 4... 4... 4... 5... 5 GRID CONTROL... 5... 5 SQL /... 6... 7 HANG ANLYSIS...

More information

untitled

untitled cibm() Information Management DB2 UDB V8.2 SQL cibm() Information Management 2 DB2 UDB V8.2 SQL cibm() Information Management 3 DB2 UDB V8.2 SQL cibm() Information Management 4 cibm() Information Management

More information

Configuring_01

Configuring_01 Symantec Backup Exec Dell EqualLogic Microsoft Exchange Server SQL Server IT / / 24 365 Symantec Backup Exec Advanced Disk-based Backup Option (ADBO) Dell Equal- Logic Microsoft Exchange Server 2003 2007

More information

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

More information

橡EN1165.PDF

橡EN1165.PDF G780(7ZMMP-KK F1C) BIOS Setup 1 G780(7ZMMP-KK F1C) 2 G780(7ZMMP-KK F1C) 3 G780(7ZMMP-KK F1C) 4 G780(7ZMMP-KK F1C) 1st Boot Device 2nd Boot Device 3rd Boot Device S.M.A.R.T. for Hard Disks BootUp Num-Lock

More information

untitled

untitled FutureNet Microsoft Corporation Microsoft Windows Windows 95 Windows 98 Windows NT4.0 Windows 2000, Windows XP, Microsoft Internet Exproler (1) (2) (3) COM. (4) (5) ii ... 1 1.1... 1 1.2... 3 1.3... 6...

More information

Express5800/R110a-1Hユーザーズガイド

Express5800/R110a-1Hユーザーズガイド 4 Phoenix BIOS 4.0 Release 6.0.XXXX : CPU=Xeon Processor XXX MHz 0640K System RAM Passed 0127M Extended RAM Passed WARNING 0B60: DIMM group #1 has been disabled. : Press to resume, to

More information

00.目次_ope

00.目次_ope 816XL ii iii iv iv User Entry 1 3 v vi vii viii 1 1 C: >VTTERM 1- 1 1-3 1 1-4 1 1-5 1 1-6 1 1-7 1 1-8 1 1-9 1 1-10 C: >VTN 1 Host Name: 1-11 1 01 1-1 0.0.0.0 1 1-13 1 1-14 - -3 Port status and configuration

More information

Slide 1

Slide 1 Oracle Direct Seminar もうアプリ改修は必要ない! これからの SQL チューニング 日本オラクル株式会社 Agenda 従来の SQL チューニング 一般的なチューニングの流れ 一般的なチューニング ポイント 画期的な SQL チューニング SQL チューニング アドバイザ SQL プロファイル チューニング実施手順 11g 新機能

More information

new_logo.eps

new_logo.eps Oracle for Windows NT and Windows 95/98 8.1.5 1999 5 : A62908-1 Oracle for Windows NT and Windows 95/98 8.1.5 : A62908-1 1 1999 5 1 Oracle Call Interface Getting Started Release 8.1.5 for Windows NT and

More information

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved.

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved. Windows Oracle -Web - Copyright Oracle Corporation Japan, 2004. All rights reserved. Agenda Oracle Windows Windows Oracle 1 / Active Directory/Enterprise User Security 1-1 Windows 1-2 Kerberos 1-3 Enterprise

More information

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

Microsoft Word - J doc

Microsoft Word - J doc SQL*Plus for Windows 8.1.6 2000 5 : J01601-01 : : Oracle Windows Windows NT 4.0 Windows 2000 Windows 95 Windows 98 Windows NT Windows NT 4.0 Windows 2000 Oracle Oracle Oracle Corporation Oracle7 Oracle8i

More information

ProVisionaire Control V3.0セットアップガイド

ProVisionaire Control V3.0セットアップガイド ProVisionaire Control V3 1 Manual Development Group 2018 Yamaha Corporation JA 2 3 4 5 NOTE 6 7 8 9 q w e r t r t y u y q w u e 10 3. NOTE 1. 2. 11 4. NOTE 5. Tips 12 2. 1. 13 3. 4. Tips 14 5. 1. 2. 3.

More information

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版)

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版) JEE ADOBE EXPERIENCE MANAGER FORMS WEBLOGIC http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 AEM forms 2 AEM Forms 3 4 - WebLogic Server 4.1............................................................................

More information

自己管理データベース: 自動SGAメモリー管理

自己管理データベース: 自動SGAメモリー管理 : SGA Tirthankar Lahiri, Arvind Nithrakasyhap, Brian Hirano, Kant Patel, Poojan Kumar, Sushil Kumar Oracle Corporation Oracle Database 10g 1 SGA Oracle Oracle Oracle SGA SQL PL/SQL Java Java Java SGA shared_pool_size

More information