[工學] Database Tuning Loop constructs
페이지 정보
작성일 22-12-29 18:55
본문
Download : [공학] Database Tuning Loop constructs.ppt
JDBC를 사용하여 Insert
2000…(skip)
설명
[工學] Database Tuning Loop constructs
순서
[공학] Database Tuning Loop constructs , [공학] Database Tuning Loop constructs공학기술레포트 , 공학 Database Tuning Loop constructs
레포트/공학기술
공학,Database,Tuning,Loop,constructs,공학기술,레포트
[工學] Database Tuning Loop constructs
다.
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_01.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_01.gif)
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_02.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_02.gif)
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_03.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_03.gif)
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_04.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_04.gif)
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_05.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_05.gif)
![[공학]%20Database%20Tuning%20Loop%20constructs_ppt_06.gif](http://www.allreport.co.kr/View/%5B%EA%B3%B5%ED%95%99%5D%20Database%20Tuning%20Loop%20constructs_ppt_06.gif)
Download : [공학] Database Tuning Loop constructs.ppt( 99 )
Database Tuning Loop constructs 목 차 배경 및 목적 구현 내용 구현 환경 준비 작업 프로그래밍 實驗결과 結論 배경 및 목적 Database Tuning을 效果적으로 하는 방법중하나 Application 과 Database server 사이의 round-trips 의 수를 최소로 함 구현 내용 P173, 그림 5.3 Loop constructs 세개의 호로그램밍 Database Connection를 200번 수행하여 200개의 데이타를 가져온 시간측정(measurement) Database Connection시 하나의 명령문안에 200개의 질문을 넣어 수행한 시간 측정(measurement) Database Connection시 하나의 명령문안에 한 개의 질문을 넣어 200개의 데이타
Database Tuning Loop constructs
목 차
배경 및 목적
구현 내용
구현 환경
준비 작업
프로그래밍
實驗결과
結論
배경 및 목적
Database Tuning을 效果적으로 하는 방법중하나
Application 과 Database server 사이의 round-trips 의 수를 최소로 함
구현 내용
P173, 그림 5.3 Loop constructs
세개의 호로그램밍
Database Connection를 200번 수행하여 200개의 데이타를 가져온 시간측정(measurement)
Database Connection시 하나의 명령문안에 200개의 질문을 넣어 수행한 시간 측정(measurement)
Database Connection시 하나의 명령문안에 한 개의 질문을 넣어 200개의 데이타를 가져오는 시간측정(measurement)
세개의 호로그램을 비교하여 성능 평가
구현 환경 [1/2]
Server 환경
Hardware
CPU : AMD Duronxxxx@xxxx.0 Ghz
MEMORY : PC 2700 512 DDR MB
HDD : Segate 160GB 7200rpm
Software
OS: MS Windows XP Professional SP1
DBMS : Oracle 9i
구현 환경 [2/2]
클라이언트 환경
Hardware
CPU : 펜티엄 3700 Mhz
MEMORY : 384 MB
HDD : 12GB
Software
OS: MS Windows 2000 Professional
준비 작업
Create Table
SQL> create table employee(
??2? employee_name varchar2(10),
??3? employee_num number(8),
??4? employee_age number(3),
??5? employee_dept varchar2(10),
??6 );
테이블이 생성 되었습니다.