DTM DB Stress 사용방법, 오라클 부하 테스트 프로그램 리뷰입니다.


DTM DB Stress 사용방법, 오라클 부하 테스트 프로그램 리뷰입니다..
DTM DB Stress 프로그램은 원도우 피씨를 이용해서 간편하게 오라클 데이터베이스에 대한 부하 테스트를 할 수 있는 프로그램입니다. 실질적인 테스트 보다는 간단한 테스트나 데이터베이스 관련 아이티 장비 테스트에 유용할 듯 합니다.

먼저, 프로그램 자체는 프리웨어인데 프리웨어는 쓰레드 제한과 쓰레드 실행 시 제한 시간이 있습니다. 즉, 부하를 걸어 놓고 어느 정도 시간이 지나면 관련 실행이 멈추면서 재시작을 해주어야합니다.









관련사이트에서 무료버전을 받을 수 있습니다.
관련사이트 : http://www.sqledit.com/stress/index.html

바로 다운로드 :





제작사의 관련프로그램 설명

DTM DB Stress Overview

DTM DB Stress is a utility for stress testing the server parts of information systems and applications, as well as databases and servers themselves. This tool allows you to create and configure a continuous set of requests to the server of the OLAP (query execution) and OLTP (adding/loading, modifying and deleting data in the database) types. The user can specify number of clients to be emulated, priority and type of requests for each task.

The stress tool is useful for any information system developer or QA department employee who wants to make sure the product under development can work with a large number of simultaneous connections and concurring queries and transactions. Database administrators can use this utility to evaluate the current performance of servers and to make plans about increasing processing power. Download free demo version: Standard, Professional or Enterprise.

DTM DB Stress in database system lifecycle

Key Features

  • Detailed and customizable measuring HTML [sample] or MS Excel-compatible text [sample] report for stress test project execution.
  • Database independent. You can test your Microsoft SQL Server database as well as IBM DB2 or Oracle database application. The stress tool supports all unified database interfaces: ODBC, IDAPI, OLE DB and Oracle Call Interface.
  • DTM DB Stress is a true Win32 application that supports Windows XP/Vista/7, Windows Server 2003/2008. x64 edition is available upon request for registered users.

Why DTM DB Stress

  • Five task execution methods and three modes, dozens of settings and task properties will help you to customize your stress test.
  • Value File allows you to emulate variations in the end-user activity.
  • Command line support (console mode) allows you to automate stress testing process or run it by schedule.
  • Built-in test data generator enables you to make test jobs more flexible.
  • Performance Counters plug-in creates report based on local and/or remote system counters. [Sample] report.
  • Runtime license helps your team to save a lot of money.
  • Report comparison feature is a great assistant in your performance tuning process [sample comparison report].
  • Report visualizer helps you to analyze reports in visual manner .
  • Show plan plug-in for MS SQL Server includes SQL statement execution plan to HTML report.





DTM DB Stress 사용방법

1. 프로그램 설치
2. 오라클클라이언트 설치 및 환경설정 설정
3. NEW 버튼 클릭으로 세팅
4. RUN으로 테스트


프로그램의 기본 화면입니다.  여기서 기존에 등록된 프로파일들이 있다면 바로 하단의 RUN으로 실행을 하게되는 것이죠.

먼저 NEW를 눌러서 연결될 데이터베이스를 설정해주어야겠지요..



저기 보시면 Data Source 에서 ORA10 을 자동으로 가져온 것을 알 수 있습니다.  자신의 컴퓨터에 오라클 클라이언트를 먼저 설치하고 해당 설치된 경로에서 접속 할 디비의 아이피주소 를 먼저 설정을 해주어야 여기에 자동으로 보여지게됩니다.

그런 후 디비의 생성되어 있는 계정으로 입력해서 TEST 해주면..

이렇게 디비에 접속 할 수 있다는 메시지가 나옵니다.  여기 까지 되었다면 다시 초기 화면에서 임의의 쿼리문으로 테스트 하시면 되겠습니다.


오라클 클라이언트 프로그램 설치방법
: http://wjsdlstn79.blog.me/123453722  여길 참고하세요.

오라클 클라이언트 원도우버전설치 후에 제일 중요한 부분은 수작업으로 몇개의 폴더와 파일을 생성해주어야합니다.
아래와 같은 부분인데 위 블로그 링크 참고하셔서 아래 파일 생성 후 경로지정해주시면 됩니다.


sqlnet.ora 에는 다음과 같은 내용을 넣고 저장시킨다.
SQLNET.AUTHENTICATION_SERVICES=(NTS)
NAMES.DIRECTORY_PATH=(TNSNAMES, ONAMES, HOSTNAME)


tnsnames.ora 에는 다음과 같은 내용을 넣고 저장시킨다.
데이터베이스명 ( ex : ORCL )=
(DESCRIPTION =
(ADDRESS =
(PROTOCOL = TCP)
(HOST = 호스트명 ( ex : local일 경우 자신의 컴퓨터이름 ) )
(PORT = 1521)
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = 서비스명 ( ex : orcl ) )
)
)
예제 )
ORCL =
(DESCRIPTION =
(ADDRESS =
(PROTOCOL = TCP)
(HOST = jeon)
(PORT = 1521)
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
)
)








이 포스트를 추천해 주시면 더욱 많은 분들에게 보여집니다~!