개요오라클과티베로에서 JDBC 를통해접속한세션을구분할수있도록 JDBC 접속시 ConnectionProperties 를통해구분자를넣어줄수있다. 하나의 Node 에다수의 WAS 가있을경우 DB 에서 Session Kill 등의동작수행시원하는 Session 을선택할수있다.
|
|
- 민환 공
- 6 years ago
- Views:
Transcription
1 설치및환경설정 JDBC 접속세션구분 / 확인
2 개요오라클과티베로에서 JDBC 를통해접속한세션을구분할수있도록 JDBC 접속시 ConnectionProperties 를통해구분자를넣어줄수있다. 하나의 Node 에다수의 WAS 가있을경우 DB 에서 Session Kill 등의동작수행시원하는 Session 을선택할수있다. 사용하기 JEUS 에서설정방법 1 Oracle JEUSMain.xml 파일에다음항목을추가한다. <database> <vendor>oracle</vendor> <export-name>orads</export-name> <data-source-class-name>oracle.jdbc.pool.oracleconnectionpooldatasource</data-source-classname> <data-source-type>connectionpooldatasource</data-source-type> <database-name>ora11g</database-name> <port-number>1521</port-number> <server-name> </server-name> <user>scott</user> <password>tiger</password> <name>drivertype</name> <type>java.lang.string</type> <value>thin</value> <name>connectionproperties</name> <type>java.util.properties</type> <value>v$session.program=was1_orads</value> <connection-pool> <pooling> <min>2</min> <max>20</max> <period>500000</period> </pooling> <wait-free-connection> <enable-wait>true</enable-wait> <wait-time>60000</wait-time> </wait-free-connection> <check-query>select 1 FROM DUAL</check-query> <check-query-period>120000</check-query-period> 2
3 </connection-pool> </database> 위의빨간부분과같이 ConnectionProperties 에 v$session.program 으로정의해주면된다. DB 쪽에서다음과같은 SQL 문을통해서확인이가능하다. SQL> select username, program, status, osuser, machine from v$session where username='scott' order by program; USERNAME PROGRAM STATUS OSUSER MACHINE SCOTT JDBC Thin Client INACTIVE ozke901 kkam SCOTT JDBC Thin Client INACTIVE ozke901 kkam SCOTT was1_orads INACTIVE ozke901 kkam SCOTT was1_orads INACTIVE ozke901 kkam SQL> 해당설정을하지않은경우는 PROGRAM 이 JDBC Thin Client 로나온다. 만약 v$session 의조회권한이없을시 sys or system 계정에서다음명령을통해권한을부여해주면확인이가능하다. SQL> grant select on v_$session to scott; v$session 이아닌 v_$session 에권한을부여할수있다. 2 Tibero JEUSMain.xml 파일에다음항목을추가한다. <database> <vendor>tibero</vendor> <export-name>tbds3</export-name> <data-source-class-name> com.tmax.tibero.jdbc.ext.tbconnectionpooldatasource </data-source-class-name> <data-source-type>connectionpooldatasource</data-source-type> <database-name>tibero</database-name> <port-number>8629</port-number> <server-name> </server-name> <user>tibero</user> <password>tmax</password> <name>connectionproperties</name> 3
4 <type>java.util.properties</type> <value>program_name=was1_tbds</value> <connection-pool> <pooling> <min>2</min> <max>10</max> <step>1</step> <period>300000</period> </pooling> <wait-free-connection> <enable-wait>true</enable-wait> <wait-time>60000</wait-time> </wait-free-connection> <check-query>select 1 from dual</check-query> </connection-pool> </database> 위의빨간부분과같이 ConnectionProperties 에 program_name 으로정의해주면된다. DB 쪽에서다음과같은 SQL 문을통해서확인이가능하다. SQL> select username, prog_name, status, osuser, machine from v$session where username='tibero' order by prog_name; USERNAME PROG_NAME STATUS OSUSER MACHINE TIBERO JDBC Thin Client ACTIVE ozke901 kkam TIBERO JDBC Thin Client ACTIVE ozke901 kkam TIBERO tbsql ACTIVE tb5 public1 TIBERO tbsql ACTIVE tb5 public1 TIBERO was1_tbds ACTIVE ozke901 kkam TIBERO was1_tbds ACTIVE ozke901 kkam 해당설정을하지않은경우는 PROGRAM 이 JDBC Thin Client 로나온다. 만약 v$session 의조회권한이없을시 sys 계정에서다음명령을통해권한을부여해주면확인 이가능하다. SQL> grant select on v$session to tibero 4
5 Tibero 의경우는 JDBC Driver 버전이 Tibero 5 rev 이상, Tibero 5 이상에서사용이가능하다. 버전확인은다음명령을통해확인할수있다. 1) JDBC Driver 버전확인 $ java -jar tibero5-jdbc.jar Tibero JDBC Driver 5.0 (Rev.68181M) 2) DB 버전확인 $ tbboot -v Tibero 5 (Build 68328, DB 5.0) 드라이버버전과 DB 버전모두조건을만족해야사용이가능하다. 다음과같은에러가발생한다면버전을확인해보기바란다. [ :44:50][0][0_576] [container1-15] [JDBC-0352] Could not find the property [ConnectionProperties] in the driver's class [com.tmax.tibero.jdbc.ext.tbconnectionpooldatasource] for the data source [tbds]. Please check if it is valid property for this data source. << Exception >> java.lang.nosuchmethodexception: com.tmax.tibero.jdbc.ext.tbconnectionpooldatasource.setconnectionproperties( java.util.properties) at java.lang.class.getmethod(class.java:1581) at jeus.jdbc.datasource.dbdsbinder.invokemethod(dbdsbinder.java:98) at jeus.jdbc.datasource.datasourcegenerator.getdatasource(datasourcegenerator.java:64) at jeus.jdbc.connectionpool.connectionpool.getdatasource(connectionpool.java:328) at jeus.jdbc.connectionpool.connectionpool.getpooledconnection(connectionpool.java:452) at jeus.jdbc.connectionpool.connectionstore.createpooledconnection(connectionstore.java:424) at jeus.jdbc.connectionpool.connectionstore.sizeup(connectionstore.java:418) at jeus.jdbc.connectionpool.connectionstore.getjeuspooledconnectionusermatched(connectionstore.java:178) at jeus.jdbc.connectionpool.connectionpool.prepareconnection(connectionpool.java:854) at jeus.jdbc.connectionpool.connectionpool.innergetconnection(connectionpool.java:736) at jeus.jdbc.connectionpool.connectionpool.getconnection(connectionpool.java:662) at jeus.jdbc.datasource.datasourcewrapper.getconnection(datasourcewrapper.java:42) at jeus_jspwork._500_ds2_5fjsp._jspservice(_500_ds2_5fjsp.java:56) at jeus.servlet.jsp.httpjspbase.service(httpjspbase.java:54) at javax.servlet.http.httpservlet.service(httpservlet.java:856) 5
6 at jeus.servlet.jsp.jspservletwrapper.executeservlet(jspservletwrapper.java:147) at jeus.servlet.servlets.jspservlet.execute(jspservlet.java:365) at jeus.servlet.engine.httprequestprocessor.run(httprequestprocessor.java:284) <<!Exception >> [ :44:50][0][0_576] [container1-15] [JDBC-0003] Failed to create the new data source instance; export-name=[tbds] [ :44:50][1][0_576] [container1-15] [JDBC-0007] Failed to create a new PooledConnection from [tbds] << Exception >> jeus.jdbc.connectionpool.jeussqlexception: Failed to create the new data source instance; exportname=[ tbds] at jeus.jdbc.connectionpool.connectionpool.getdatasource(connectionpool.java:331) at jeus.jdbc.connectionpool.connectionpool.getpooledconnection(connectionpool.java:452) at jeus.jdbc.connectionpool.connectionstore.createpooledconnection(connectionstore.java:424) at jeus.jdbc.connectionpool.connectionstore.sizeup(connectionstore.java:418) at jeus.jdbc.connectionpool.connectionstore.getjeuspooledconnectionusermatched(connectionstore.java:178) at jeus.jdbc.connectionpool.connectionpool.prepareconnection(connectionpool.java:854) at jeus.jdbc.connectionpool.connectionpool.innergetconnection(connectionpool.java:736) at jeus.jdbc.connectionpool.connectionpool.getconnection(connectionpool.java:662) at jeus.jdbc.datasource.datasourcewrapper.getconnection(datasourcewrapper.java:42) at jeus_jspwork._500_ds2_5fjsp._jspservice(_500_ds2_5fjsp.java:56) at jeus.servlet.jsp.httpjspbase.service(httpjspbase.java:54) at javax.servlet.http.httpservlet.service(httpservlet.java:856) at jeus.servlet.jsp.jspservletwrapper.executeservlet(jspservletwrapper.java:147) at jeus.servlet.servlets.jspservlet.execute(jspservlet.java:365) at jeus.servlet.engine.httprequestprocessor.run(httprequestprocessor.java:284) Caused by: jeus.jdbc.datasource.dbdatasourceexception: Could not find the property [ConnectionProperties] in the driver's class [com.tmax.tibero.jdbc.ext.tbconnectionpooldatasource] for the data source [tbds]. Please check if it is valid property for this data source. at jeus.jdbc.datasource.datasourcegenerator.getdatasource(datasourcegenerator.java:104) at jeus.jdbc.connectionpool.connectionpool.getdatasource(connectionpool.java:328) more Caused by: java.lang.nosuchmethodexception: com.tmax.tibero.jdbc.ext.tbconnectionpooldatasource.setconnectionproperties( java.util.properties) at java.lang.class.getmethod(class.java:1581) 6
7 at jeus.jdbc.datasource.dbdsbinder.invokemethod(dbdsbinder.java:98) at jeus.jdbc.datasource.datasourcegenerator.getdatasource(datasourcegenerator.java:64) more <<!Exception >> 3. 추가설정방법 ConnectionProperties 를통해서 user, password 까지한번에설정이가능하다. 하지만이는주의해서사용해야한다. Oracle 의경우는 ConnectionProperties 에설정된 user, password 를무시하고 <user>, <password> 또는 로 user, password 를설정해야만 DB 로세션을생성할수있다. 이두가지설정중하나라도없이 ConnectionProperties 에 user, password 를설정할경우에러가발생한다. Tibero 의경우는 ConnectionProperties 에설정된값을무시하지는않지만혼용하여사용할경우최종적으로 setting 된값이적용되기에순서를주의해서사용해야한다. ConnectionProperties 의 <value>user=sys,password=tibero,program_name=was1_tbds</value> 와 <user>tibero</user> 를동시에쓸경우나중에쓴값이적용되고이는 JDBC Spec 에어떤방식을사용하라고명시된것이없다. CASE #1 <user>tibero</user> <password>tmax</password> <name>connectionproperties</name> <type>java.util.properties</type> <value>user=sys,password=tibero,program_name=tbds</value> CASE #2 <name>connectionproperties</name> <type>java.util.properties</type> <value>user=sys,password=tibero,program_name=tbds</value> <user>tibero</user> <password>tmax</password> CASE #3 <user>tibero</user> <name>connectionproperties</name> 7
8 <type>java.util.properties</type> <value>user=sys,password=tibero,program_name=tbds</value> <password>tmax</password> CASE #1 의경우는 sys 유저로 Tibero 에접속된다. CASE #2 의경우는 tibero 유저로 Tibero 에접속된다. CASE #3 의경우는 sys 유저의 password 를 tmax 로입력한것과같아서에러가발생한다. 가능한 ConnectionProperties 에 user, password 를명시하지않을것을권고한다. Stand-Alone JAVA Application 에서설정방법 Oracle public class JdbcTest{ public static void main(string[] args) throws Exception{ Class.forName("oracle.jdbc.driver.OracleDriver"); Properties prop = new Properties(); prop.setproperty("user","scott"); prop.setproperty("password","tiger"); prop.setproperty("v$session.program","java"); Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:ora11g", prop); DB 쪽에서다음과같은 SQL 문을통해서확인이가능하다. SQL> select username, program, status, osuser, machine from v$session where username='scott' order by program; USERNAME PROGRAM STATUS OSUSER MACHINE SCOTT JAVA INACTIVE ozke901 kkam SQL> 2 Tibero public class JdbcTest{ public static void main(string[] args) throws Exception{ Class.forName("com.tmax.tibero.jdbc.TbDriver"); Properties prop = new Properties(); prop.setproperty("user","tibero"); 8
9 prop.setproperty("password","tmax"); prop.setproperty("program_name","java"); Connection conn = DriverManager.getConnection("jdbc:tibero:thin:@localhost:8629:tibero", prop); DB 쪽에서다음과같은 SQL 문을통해서확인이가능하다. SQL> select username, prog_name, status, osuser, machine from v$session where username='tibero' order by prog_name; USERNAME PROG_NAME STATUS OSUSER MACHINE TIBERO JAVA ACTIVE tiberokkam TIBERO tbadmin ACTIVE ozke901 kkam 결론 이기능은동일노드에서다수의 DB Connection 이연결될경우이를구분하기위한목적으 로사용이가능하며, DB 관점에서모니터링, Session Kill 시유용하게사용할수있음. 9
10 Copyright 2013 TmaxSoft Co., Ltd. All Rights Reserved. TmaxSoft Co., Ltd. Trademarks Tmax, WebtoB, WebT, JEUS, ProFrame, SysMaster and OpenFrame are registered trademarks of TmaxSoft Co., Ltd. Other products, titles or services may be registered trademarks of their respective companies. Contact Information TmaxSoft can be contacted at the following addresses to arrange for a consulting team to visit your company and discuss your options for legacy modernization. Korea - TmaxSoft Co., Ltd. Corporate Headquarters Seohyeon-dong, Bundang-gu, Seongnam-si, South Korea, Tel : (+82) Fax : (+82) Website : U.S.A. - TmaxSoft Inc. 560 Sylvan Avenue Englewood Cliffs, NJ 07632, USA Tel : (+1) Fax : (+1) Website : Japan TmaxSoft Japan Co., Ltd. 5F Sanko Bldg, Mita, Minato-Ku, Tokyo, Japan Tel : (+81) Fax: (+81) Website : China TmaxSoft China Co., Ltd. Room 1101, Building B, Recreo International Center, East Road Wang Jing, Chaoyang District, Beijing, , P.R.C Tel : (+86) Fax: (+86) (#800) Website : China(JV) Upright(Beijing) Software Technology Co., Ltd Room 1102, Building B, Recreo International Center, East Road Wang Jing, Chaoyang District, Beijing, , P.R.C Tel : (+86) Fax: (+86) (#800) Website : TN-JSIT-C
목차 JEUS EJB Session Bean가이드 stateful session bean stateful sample 가이드 sample source 결과확인 http session에
개념정리및샘플예제 EJB stateful sample 문서 2016. 01. 14 목차 JEUS EJB Session Bean가이드... 3 1. stateful session bean... 3 1.1 stateful sample 가이드... 3 1.1.1 sample source... 3 1.1.2 결과확인... 6 1.2 http session에서사용하기...
More information튜닝및모니터링 HP JVM 튜닝옵션
HP JVM 튜닝옵션 2013. 11. 01 목차 1. 개요... 3 2. JVM 특징소개... 3 3. JVM 주요옵션소개... 3 4. 분석기술... 16 2 1. 개요 HP JVM 의특징을살펴보고, TroubleShooting 방법과, 실제 Site 튜닝사례를살펴보도록한다. 2. JVM 특징소개 JVM 메모리영역. 3. JVM 주요옵션소개 GC command-line
More information개발및운영 Eclipse 를이용한 ANT 활용방법
Eclipse 를이용한 ANT 활용방법 2014. 04. 09 목차 Eclipse를이용한 ANT 활용방법... 3 1. ant 사용전준비사항... 3 1.1 ant Install... 3 1.2 Java Project 생성... 5 2. ant 활용방법... 10 2.1 ant project 생성... 10 3. ant 설정... 13 3.1 ant directory...
More information개발및운영 Tibero DB Link (Tibero To Oracle) - Local 방식
Tibero DB Link (Tibero To Oracle) - Local 방식 2014. 04. 16. 목차 1. 구성환경... 3 2. 환경설정... 3 2.1. Tibero 서버 (AIX) 에 Oracle instance Client 파일을업로드... 3 2.2. Oracle Instance Client에대한환경설정등록 (.profile)... 4 2.3.
More information[JEUS 7] eclipse plug-in 연동 1. 개요 Eclipse 와 JEUS 7 연동시필요한 plug-in 제공및환경설정에관한가이드제공하여 Eclipse 에서 JEUS 7 기동및 종료테스트할수있는방법을기술하였습니다. 2. Plug-in 설치 2.1 [Step
기타지식 [JEUS 7.0] eclipse plug-in 연동 2015. 06. 09 [JEUS 7] eclipse plug-in 연동 1. 개요 Eclipse 와 JEUS 7 연동시필요한 plug-in 제공및환경설정에관한가이드제공하여 Eclipse 에서 JEUS 7 기동및 종료테스트할수있는방법을기술하였습니다. 2. Plug-in 설치 2.1 [Step. 1]
More information기술교육 SSL 설정및변환방법
SSL 설정및변환방법 2014. 03. 10 목차 WebtoB에서의 SSL 설정방법... 3 1. WebtoB 에서의 SSL 인증서발급절차... 3 1.1 openssl사용... 3 1.1.1 newreq.pem 파일설명... 3 1.1.2 인증기관에 CSR파일전송... 4 1.1.3 p7b파일변환... 4 1.2 WebtoB의환경설정... 5 1.2.1 http.m
More information설치및환경설정 JEUS Thread State Notify 설정
JEUS Thread State Notify 설정 2014. 07. 02 목차 1. thread-state-notify 설정... 3 1.1 시나리오 #1. max-thread-active-time : 10초... 3 1.2 시나리오 #2. max-thread-active-time : 10초, thread-interrupt-execution : true...
More information목차 1. 노드매니저종류 Java Type SSH Type 노드설정파일및로깅 nodes.xml jeusnm.properties <servername>.properties...
개발및운영 JEUS7 Node Manager 가이드 2014. 12. 15 목차 1. 노드매니저종류... 3 1.1 Java Type... 3 1.2 SSH Type... 3 2. 노드설정파일및로깅... 3 2.1 nodes.xml... 3 2.2 jeusnm.properties... 4 2.3 .properties... 4 2.4 JeusNodeManager.log...
More information개발및운영 Tibero Perl 연동
Tibero Perl 연동 2014. 05. 27. 목차 1. Windows에서의홖경구성... 3 1.1 Tibero ODBC Driver 설치... 3 1.2. Tool 설치... 5 2. Unix에서의홖경구성... 6 2.1 iodbc 설치... 7 2.2 Tibero 설치... 7 2.3 Iodbc drvier manager 등록... 7 3. Tibero
More information목차 1. 개요 현상 문제분석 문제해결
이슈및장애 OutOfMemory 장애조치방법 2013. 11. 01 목차 1. 개요... 3 2. 현상... 3 3. 문제분석... 5 4. 문제해결... 13 2 1. 개요 OutOfMemory Exception 정의 Garbage Collector 가새로운 Object 를유지하기위해충분한메모리공간을확보하지못할때발생함. Vendor 사의 JVM 메모리모델방식을참조하여야함.
More information단계
TIBERO-WAS 연동 Guide 본문서에서는 Tibero RDBMS 에서제공하는 JDBC 통한 JEUS, WEBLOGIC 등다양한 WAS (Web Application Server) 제품과의연동방법을알아본다. Contents 1. Connection Pool 방식... 2 2. JEUS 연동... 3 2.1. JEUSMain.xml 설정 (Thin 방식
More information튜닝및모니터링 OS 별 TCP Recommend Parameter for WebtoB/JEUS
OS 별 TCP Recommend Parameter for WebtoB/JEUS 2014. 11. 26 목차 1. AIX... 3 1.1 TCP_KEEPINIT... 3 1.2 TCP_KEEPIDLE... 3 1.3 TCP_KEEPINTVL... 4 1.4 TCP_KEEPCNT... 4 1.5 TCP_TIMEWAIT... 4 1.6 CLEAN_PARTIAL_CONNS...
More informationConnection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET
135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26
More informationInterstage5 SOAP서비스 설정 가이드
Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service
More informationÃÖÁ¾PDF¿ë
Meet A to Z of Global Leading IT Meet A to Z of Global Leading IT Contents Introduction CEO Message Brand Identity & Vision Core Competence Smart Technology, Service & Smart People Leadership & Love Global
More informationFileMaker ODBC and JDBC Guide
FileMaker 13 5 5 5 6 6 6 7 7 8 8 8 8 9 9 10 10 11 11 12 12 12 12 12 12 13 13 14 14 16 16 18 4 19 19 20 20 21 21 21 23 23 23 23 25 26 26 26 26 27 28 28 28 28 29 31 31 32 33 33 33 33 34 34 35 35 35 36 1
More informationLinux 권장커널파라미터 1. 커널파라미터별설명및설정방법 1.1 nofile ( max number of open files ) 설명 : 지원되는열린파일수를지정합니다. 기본설정이보통대부분의응용프로그램에대해충분합니다. 이매개 변수에설정된값이너무낮으면파일열기오류, 메모리
튜닝및모니터링 Linux 권고커널파라미터 2014. 12. 11 Linux 권장커널파라미터 1. 커널파라미터별설명및설정방법 1.1 nofile ( max number of open files ) 설명 : 지원되는열린파일수를지정합니다. 기본설정이보통대부분의응용프로그램에대해충분합니다. 이매개 변수에설정된값이너무낮으면파일열기오류, 메모리할당장애또는연결설정오류가발생할수있습니다.
More informationTibero
Tibero WAS 연동가이드 Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구황새울로 329 번길 5 티맥스빌딩우 ) 463-824 Restricted Rights
More information설치및환경설정 Tibero tbprobe 사용법과원격지포트체크
Tibero tbprobe 사용법과원격지포트체크 2014. 04. 23. 목차 1. tbprobe 사용... 3 1.1. 로컬호스트 tibero 체크... 3 1.2. 원격호스트 tibero 체크... 3 2. tbprobe 상태값... 5 3. tbprobe 연결방법... 6 3.1. IP 와 listener_port 기재시... 6 3.2. IP 와 listener_port
More information목차 JEUS JNLP Client Sample 가이드 JNLP 란 JNLP의이점 TEST TEST 환경 TEST Sample sample application 셋팅 (ser
기술교육 JEUS JNLP Sample 가이드 2015. 06. 19 목차 JEUS JNLP Client Sample 가이드... 3 1. JNLP 란... 3 2. JNLP의이점... 3 3. TEST... 3 3.1 TEST 환경... 3 3.2 TEST Sample... 4 3.2.1 sample application 셋팅 (server side)...
More information윈백및업그레이드 Tibero Flashback 가이드
Tibero Flashback 가이드 2014. 05. 09. 목차 1. FLASHBACK 소개... 3 1.1. Flashback 개요... 3 1.2. Flashback 기능... 3 2. FLASHBACK 기능... 3 2.1. FLASHBACK QUERY... 3 2.1.1. FLASHBACK QUERY 개요... 3 2.1.2. FLASHBACK QUERY
More information목차 1. TABLE MIGRATOR 란? TABLE MIGRATOR 홖경설정 TABLE MIGRATOR 바이너리 Shell 설정 Migrator.Properterties 파일설정 TAB
윈백및업그레이드 Tibero Table Migrator 사용법 2014. 05. 12. 목차 1. TABLE MIGRATOR 란?... 3 2. TABLE MIGRATOR 홖경설정... 3 2.1. TABLE MIGRATOR 바이너리... 3 2.2. Shell 설정... 4 2.3. Migrator.Properterties 파일설정... 4 3. TABLE
More informationTmax
Tmax JTmaxServer User Guide Tmax v5.0 SP1 Copyright 2009 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2009 TmaxSoft Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구서현동 263 분당스퀘어 (AK 프라자
More informationMicrosoft Word - AnyLink Introduction v3.2.3.doc
Copyright 2007 Tmax Soft Co., Ltd. All Rights Reserved. AnyLInk Copyright Notice Copyright 2007 Tmax Soft Co., Ltd. All Rights Reserved. Tmax Soft Co., Ltd. 대한민국서울시강남구대치동 946-1 글라스타워 18 층우 )135-708 Restricted
More information목차 1. 개요 개요 연동테스트홖경 PowerBuilder Connection Tibero ODBC Driver 설정 PowerBuilder Connection 설정 Tiber
개발및운영 Tibero Powerbuilder 연동 2014. 05. 27. 목차 1. 개요... 3 1.1 개요... 3 1.2 연동테스트홖경... 3 2. PowerBuilder Connection... 4 2.1 Tibero ODBC Driver 설정... 4 2.2 PowerBuilder Connection 설정... 5 3. Tibero - PowerBuilder
More informationSSL 접속테스트 본문서에서 WebtoB 가설치된디렉토리는 [WEBTOBDIR] 로표기하겠습니다.. 윈도우계열과리눅스 / 유닉스계열모두명령은동일하므로윈도우를기준으로설명하도록하겠습니다. 1. WebtoB 설정 1.1 Test 용인증서생성 SSL 접속테스트를위해 Webto
개발및운영 SSL 접속테스트 Console 을통한 SSL 접속테스트 2014. 06. 27 SSL 접속테스트 본문서에서 WebtoB 가설치된디렉토리는 [WEBTOBDIR] 로표기하겠습니다.. 윈도우계열과리눅스 / 유닉스계열모두명령은동일하므로윈도우를기준으로설명하도록하겠습니다. 1. WebtoB 설정 1.1 Test 용인증서생성 SSL 접속테스트를위해 WebtoB
More informationFileMaker ODBC and JDBC Guide
FileMaker 14 5 5 5 5 6 6 6 7 7 7 8 8 8 9 9 10 10 11 11 12 12 12 12 12 13 13 14 15 16 17 18 18 19 19 20 20 20 21 21 21 22 22 22 22 23 24 24 24 24 25 27 27 28 29 29 29 29 30 30 31 31 31 32 1 1 1 1 1 1 1
More informationFileMaker 15 ODBC 및 JDBC 설명서
FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker, Inc... FileMaker.
More informationFY2005 LIG
FY2005 LIG www.lig.co.kr FY2005 LIG 2005 LIG 7-44 "Profitable Growth" 14.5% 3 3,849 0.6%p 14.8% 3 355 306 7,300 5 3,691 2006 4 CI 2 "Profitable Growth 15.2% 2 1,000 VISION LIG LIG Leading Company 482006331
More informationSpring Boot/JDBC JdbcTemplate/CRUD 예제
Spring Boot/JDBC JdbcTemplate/CRUD 예제 오라클자바커뮤니티 (ojc.asia, ojcedu.com) Spring Boot, Gradle 과오픈소스인 MariaDB 를이용해서 EMP 테이블을만들고 JdbcTemplate, SimpleJdbcTemplate 을이용하여 CRUD 기능을구현해보자. 마리아 DB 설치는다음 URL 에서확인하자.
More informationSSL(Secure Socket Layer) 과 TLS(Transport Layer Security) 개요 전자상거래가활발해지면서웹보안이매우중요해지고있으며, 최근정보통신망법의개정으로아무리소상공인이라 도홈페이지운영시개인정보를취급하고있다면아래와같은내용을조치하도록되어있습니다
기타지식 SSL 과 TLS 2015. 07.20 SSL(Secure Socket Layer) 과 TLS(Transport Layer Security) 개요 전자상거래가활발해지면서웹보안이매우중요해지고있으며, 최근정보통신망법의개정으로아무리소상공인이라 도홈페이지운영시개인정보를취급하고있다면아래와같은내용을조치하도록되어있습니다 이러한 보안서버 의기반이되는 SSL/TLS
More informationNoSQL
MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good
More informationJ2EE Concepts
! Introduction to J2EE (1) - J2EE Servlet/JSP/JDBC iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g
More informationMicrosoft Word - ntasFrameBuilderInstallGuide2.5.doc
NTAS and FRAME BUILDER Install Guide NTAS and FRAME BUILDER Version 2.5 Copyright 2003 Ari System, Inc. All Rights reserved. NTAS and FRAME BUILDER are trademarks or registered trademarks of Ari System,
More informationLayout 1
천연대리석 마루 www.qmaru.co.kr OWENS CORNING BM (KOREA), LTD 18F ILSONG BUILDING 157-37 SAMSUNG-DONG GANGNAM-GU SEOUL 135-090, KOREA TEL 822.2050.7490 FAX 822.2050.7499 www.owenscorning.co.kr www.qmaru.co.kr
More informationORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O
Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration
More informationIntro to Servlet, EJB, JSP, WS
! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g
More informationFileMaker ODBC 및 JDBC 가이드
FileMaker ODBC JDBC 2004-2019 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, FileMaker Cloud, FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker,
More information본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인
스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게
More informationH_AR_.....29P05..5..17..
GROWING IN THE TIME OF UNCERTAINTY HYNIX 2005 ANNUAL REPORT CONTENTS 03 GROWING HYNIX 15 GROWTH PLATFORMS 32 REPORT OF FINANCIALS HYNIX 2005 ANNUAL REPORT 3 GROWING HYNIX HOW WILL YOU GROW IN AN UNCERTAIN
More information10.ppt
: SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL
More informationThe Self-Managing Database : Automatic Health Monitoring and Alerting
The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG
More informationBTSK
목장이야기 STORY OF SEASONS 1 사용하기 전에 게임 소개 2 어떤 게임? 3 게임의 재미 요소 4 스토리 5 주인공 소개 6 결혼 상대 후보 7 목장 주인과 주민 준비하기 8 조작 방법 9 게임 시작 방법 10 데이터 저장 화면 설명 11 필드 화면 12 메뉴 화면 목장 생활의 기본 13 계절과 시간 14 주인공의 상태 15 액션(1) 16 액션(2)
More information한아IT 브로셔-팜플렛최종
N e t w o r k A n a l y z e r / P r o t o c o l A n a l y z e r / V o I P M o n i t o r i n g / P e r f o r m a n c e What s in your Network? 목 차 와일드패킷 솔루션 WatchPoint 와일드패킷 분산 네트워크 분석 OmniPeek 4 6 7 8
More information단계
본문서에서는 Tibero RDBMS 에서제공하는 Oracle DB Link 를위한 gateway 설치및설정방법과 Oracle DB Link 사용법을소개한다. Contents 1. TIBERO TO ORACLE DB LINK 개요... 3 1.1. GATEWAY 란... 3 1.2. ORACLE GATEWAY... 3 1.3. GATEWAY 디렉터리구조...
More information목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate
ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition
More informationNo Slide Title
J2EE J2EE(Java 2 Enterprise Edition) (Web Services) :,, SOAP: Simple Object Access Protocol WSDL: Web Service Description Language UDDI: Universal Discovery, Description & Integration 4. (XML Protocol
More informationPWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (
PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step
More information2012-민간네트워크-05_중국
2012- fi '-05_` 2012.3.19 1:0 PM ` 161 600DPI 95LPI 161 2012- fi '-05_` 2012.3.19 1:0 PM ` 162 600DPI 95LPI 2012 Global Business Network of Korea 162 http://www.exportcenter.go.kr 2012- fi '-05_` 2012.3.19
More information교육2 ? 그림
Interstage 5 Apworks EJB Application Internet Revision History Edition Date Author Reviewed by Remarks 1 2002/10/11 2 2003/05/19 3 2003/06/18 EJB 4 2003/09/25 Apworks5.1 [ Stateless Session Bean ] ApworksJava,
More informationMicrosoft Word - s.doc
오라클 백서 2010년 9월 WebLogic Suite를 위해 최적화된 오라클 솔루션 비즈니스 백서 개요...1 들어가는 글...2 통합 웹 서비스 솔루션을 통해 비즈니스 혁신 추구...3 단순화...4 기민한 환경 구축...5 탁월한 성능 경험...6 판도를 바꾸고 있는 플래시 기술...6 오라클 시스템은 세계 최고의 성능 제공...6 절감 효과 극대화...8
More information.
JEUS 6 & WebtoB 4.1 관리자 2015.09 Ⅰ Ⅱ Ⅲ JEUS 설정 WebtoB 연동설정 Tibero 연동설정 Ⅰ JEUS 설정 컨테이너생성 Application 디플로이 컨테이너생성 관리자화면접속 http://ip-address:9744/webadmin 접속 ID : administrator PW : 설치단계에서설정한관리자암호 3/36 컨테이너생성
More informationuntitled
2007 5 8 NCsoft CORPORATION OK-san Bldg 157-33, Samsung-dong, Kangnam-gu, Seoul 135-090, KOREA Tel: +82-2-2186-3300 Fax : +82-2-2186-3550 Copyright NCsoft Corporation. All Rights Reserved WWW.NCSOFT.COM
More informationSKC_AR_±¹¹® 01pdf
SKC Annual Report 2006 The Next Growth Contents 02 04 06 08 10 12 14 22 24 26 28 40 41 42 44 49 96 98 15,000 12,000 13,263 14,090 12,118 1,200 1,000 962 1,170 10,000 8,000 8,167 9,000 6,000 3,000 800 600
More informationIntra_DW_Ch4.PDF
The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology
More information목차 BUG DEQUEUE 의 WAIT TIME 이 1 초미만인경우, 설정한시간만큼대기하지않는문제가있습니다... 3 BUG [qp-select-pvo] group by 표현식에있는컬럼을참조하는집합연산이존재하지않으면결괏값오류가발생할수있습니다... 4
ALTIBASE HDB 6.5.1.5.10 Patch Notes 목차 BUG-46183 DEQUEUE 의 WAIT TIME 이 1 초미만인경우, 설정한시간만큼대기하지않는문제가있습니다... 3 BUG-46249 [qp-select-pvo] group by 표현식에있는컬럼을참조하는집합연산이존재하지않으면결괏값오류가발생할수있습니다... 4 BUG-46266 [sm]
More informationGetting Started Guide
1 5 2 8 3 12 4 13 Pending 5 21. Canon LASER SHOT LBP3000... (PDF) CD-ROM. CD-ROM 28 "CD-ROM ". ( ) CD-ROM : Manual_1.pdf. CD-ROM : Manual_2.pdf,,. PDF CD-ROM. (28 "CD- ROM " ) CD-ROM (Manual_1.pdf, etc.)
More informationUSB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C
USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step
More informationChapter 1
3 Oracle 설치 Objectives Download Oracle 11g Release 2 Install Oracle 11g Release 2 Download Oracle SQL Developer 4.0.3 Install Oracle SQL Developer 4.0.3 Create a database connection 2 Download Oracle 11g
More informationSpring Boot
스프링부트 (Spring Boot) 1. 스프링부트 (Spring Boot)... 2 1-1. Spring Boot 소개... 2 1-2. Spring Boot & Maven... 2 1-3. Spring Boot & Gradle... 3 1-4. Writing the code(spring Boot main)... 4 1-5. Writing the code(commandlinerunner)...
More informationMasoJava4_Dongbin.PDF
JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: MasoJava4_Dongbindoc Revision number: Issued by: < > SI, dbin@handysoftcokr
More informationrmi_박준용_final.PDF
(RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:
More information<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>
i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,
More informationCD-RW_Advanced.PDF
HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5
More information키오스크12 p
What kind of KIOSKS can we build for you? 02 _ KORYO DIGIWORKS KORYO KIOSK _ 03 MODEL X5 2009 Best Model MODEL T7 MODEL T11FS 04 _ KORYO DIGIWORKS MODEL S5 MODEL C4 MODEL M1/M2 KORYO KIOSK _ 05 MODEL DF1
More information141124 rv 브로슈어 국문
SMART work MOBILE office Home Office 원격제어에 대한 가장 완벽한 해답, 스마트워크 및 모바일 오피스를 위한 최적의 솔루션 시간과 공간의 한계를 넘어서는 놀라운 세계, 차원 이 다른 원격제어 솔루션을 지금 경험해보십시오! RemoteView? 리모트뷰는 원거리의 내 PC 또는 관리할 서버에 프로그램 설치 후, 인터넷을 통해 언제
More informationI T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r
I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :
More informationuFOCS
1 기 : 기 UF_D_V250_002 기 기 기 품 ufocs 기 v2.5.0 히기기기기기기기기기 기 Manual 기 version 기 3.2 기품 2011.7.29 히기 345-13 1 Tel : 02-857-3051 Fax : 02-3142-0319 : http://www.satu.co.kr 2010 SAT information Co., Ltd. All
More informationPowerPoint 프레젠테이션
Synergy EDMS www.comtrue.com opyright 2001 ComTrue Technologies. All right reserved. - 1 opyright 2001 ComTrue Technologies. All right reserved. - 2 opyright 2001 ComTrue Technologies. All right reserved.
More information목 차
Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle
More informationAPI STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum
API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date
More information<31302E204D43545F47535FC3D6C1BEBAB8B0EDBCAD2E687770>
2011년도 부품 소재혁신연구회 MCT Global Scoreboard 제 출 문 한국산업기술진흥원장 귀 하 본 보고서를 2011년도 부품 소재혁신연구회 MCT Global Scoreboard (지원기간: 2012. 1. 2 ~ 2012. 3. 31) 과제의 최종보고서로 제출합니다. 2012. 3. 31 연구회명 : MCT K-Star 발굴 연구회 (총괄책임자)
More informationHardware Manual TSP100
Trademark acknowledgments TSP: Star Micronics., Ltd. Notice All rights reserved. Reproduction of any part of this manual in any form whatsoever, without STAR s express permission is forbidden. The contents
More information다음 사항을 꼭 확인하세요! 도움말 안내 - 본 도움말에는 iodd2511 조작방법 및 활용법이 적혀 있습니다. - 본 제품 사용 전에 안전을 위한 주의사항 을 반드시 숙지하십시오. - 문제가 발생하면 문제해결 을 참조하십시오. 중요한 Data 는 항상 백업 하십시오.
메 뉴 다음 사항을 꼭 확인하세요! --------------------------------- 2p 안전을 위한 주의 사항 --------------------------------- 3p 구성품 --------------------------------- 4p 각 부분의 명칭 --------------------------------- 5p 제품의 규격
More informationOracle hacking 작성자 : 임동현 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용
Oracle hacking 작성자 : 임동현 (ddongsbrk@naver.com) 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용 Skill List 1. Oracle For Pentest 1. Find TNS Listener (Default 1521 port) (with nmap or amap) 2. Get the
More informationSQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자
SQL Developer Connect to TimesTen 유니원아이앤씨 DB 팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 2010-07-28 작성자 김학준 최종수정일 2010-07-28 문서번호 20100728_01_khj 재개정이력 일자내용수정인버전
More informationuntitled
2007 8 8 NCsoft CORPORATION OK-san Bldg 157-33, Samsung-dong, Kangnam-gu, Seoul 135-090, KOREA Tel: +82-2-2186-3300 Fax : +82-2-2186-3550 Copyright NCsoft Corporation. All Rights Reserved WWW.NCSOFT.COM
More informationInstallation Area : Baseball Stadium Lighting Sajik Baseball Stadium Busan, Korea 시애틀 구단이 조명 시설을 이벤트 기능으로 활용하는 모습이 좋았고, 선수들의 반응도 괜찮았습니다. 우리도 이를 접목시킨다면
LED FLOOD LIGHTING SPORTS LIGHTING CASE STUDY Sajik Baseball Stadium Busan Korea Installation Area : Baseball Stadium Lighting Sajik Baseball Stadium Busan, Korea 시애틀 구단이 조명 시설을 이벤트 기능으로 활용하는 모습이 좋았고,
More information내용물 시작 3 구성품 4 MDA200 기본 사항 5 액세서리 6 헤드셋 연결 7 탁상 전화기: 연결 및 통화 8 탁상 전화기(표준) 8 탁상 전화기+ HL10 거치대와 전원 공급 장치(별도 구매) 10 탁상 전화기+ EHS 케이블 12 컴퓨터: 연결 및 통화 13 컴
MDA200 오디오 스위처 사용 설명서 내용물 시작 3 구성품 4 MDA200 기본 사항 5 액세서리 6 헤드셋 연결 7 탁상 전화기: 연결 및 통화 8 탁상 전화기(표준) 8 탁상 전화기+ HL10 거치대와 전원 공급 장치(별도 구매) 10 탁상 전화기+ EHS 케이블 12 컴퓨터: 연결 및 통화 13 컴퓨터 연결 및 전화 걸기 13 MDA200 LED 표시등
More information목차 1. TAC 구성준비사항 TAC 구성순서 VirtualBox 으로 CentOS 설치 VirtualBox 에서 TAC 구성
설치및환경설정 VirtualBox TAC 구성가이드 2015. 08. 04 목차 1. TAC 구성준비사항... 3 2. TAC 구성순서... 3 2.1 VirtualBox 으로 CentOS 설치... 3 2.2 VirtualBox 에서 TAC 구성... 40 2 1. TAC 구성준비사항 1. CentOS-5.9 64bit 2. Tibero 5 SP1 FS01
More informationCopyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper
Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,
More information소만사 소개
개인정보 라이프사이클에 걸친 기술적 보호대책 - DB방화벽과 PC내 개인정보 무단 저장 검출 및 암호화솔루션 2009.10 소만사 소개 소만사 [소프트웨어를 만드는 사람들 ] 개인정보보호 토털 솔루션 전문업체, 해외수출 기업 금융/통신/대기업/공공 600여 고객 보안1세대 기업 97년 창립(13년) 마이크로소프트 선정 - 10년 후 세계적 소프트웨어 기업 장영실상(IR52),
More information슬라이드 1
RFID 2004. 11 Allixon Overview Company Profile (www.allixon.com) 2003128 31474-16 3 Tel 02-3471-9340 / Fax 02-3471-9337 RFID & EPC Network ALLIXON = ALL + LINK + ON Allixon Overview Vision & Mission RFID
More informationAPOGEE Insight_KR_Base_3P11
Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows
More information歯sql_tuning2
SQL Tuning (2) SQL SQL SQL Tuning ROW(1) ROW(2) ROW(n) update ROW(2) at time 1 & Uncommitted update ROW(2) at time 2 SQLDBA> @ UTLLOCKT WAITING_SESSION TYPE MODE_REQUESTED MODE_HELD LOCK_ID1
More informationMicrosoft PowerPoint - 18-DataSource.ppt
18 장 : JDBC DataSource DataSource JDBC 2.0의 javax.sql 패키지에포함되어도입됨 DataSource 인터페이스는데이터베이스커넥션을만들거나사용하는데좀더유연한아키텍처를제공하기위해도입됨 DataSource를이용할경우, 클라이언트코드는한줄도바꾸지않고서도다른데이터베이스에접속할수있도록해줌 즉 DataSource 는커넥션상세사항들을캡슐화
More information문서 템플릿
HDSI 툴분석 [sql injection 기술명세서 ] Sql injection 기술명세서 Ver. 0.01 이문서는 sql injection 기술명세가범위입니다. Copyrights Copyright 2009 by CanvasTeam@SpeeDroot( 장경칩 ) All Rights Reserved. 장경칩의사전승인없이본내용의전부또는일부에대한복사, 전재,
More informationAssign an IP Address and Access the Video Stream - Installation Guide
설치 안내서 IP 주소 할당 및 비디오 스트림에 액세스 책임 본 문서는 최대한 주의를 기울여 작성되었습니다. 잘못되거나 누락된 정보가 있는 경우 엑시스 지사로 알려 주시기 바랍니다. Axis Communications AB는 기술적 또는 인쇄상의 오류에 대해 책 임을 지지 않으며 사전 통지 없이 제품 및 설명서를 변경할 수 있습니다. Axis Communications
More informationPortal_9iAS.ppt [읽기 전용]
Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C
More information부서: 기획감사실 정책: 군정기획 역량 강화 단위: 군정종합기획 평가 -노 력 상 100,000원 * 1명 100 -채택제안 부상금 50,000원 * 10명 500 -기 념 품 10,000원 * 60명 600 303 포상금 1,800 0 1,800 01 포상금 1,80
2014년도 본예산 일반회계,기타특별회계,공기업특별회계 전체 세 출 예 산 사 업 명 세 서 부서: 기획감사실 정책: 군정기획 역량 강화 단위: 군정종합기획 평가 기획감사실 7,426,370 6,304,198 1,122,172 도 22,192 군 7,404,178 군정기획 역량 강화 982,350 264,560 717,790 군정종합기획 평가 982,350
More informationJ2EE & Web Services iSeminar
9iAS :, 2002 8 21 OC4J Oracle J2EE (ECperf) JDeveloper : OLTP : Oracle : SMS (Short Message Service) Collaboration Suite Platform Email Developer Suite Portal Java BI XML Forms Reports Collaboration Suite
More information06_±è¼öö_0323
166 167 1) 2) 3) 4) source code 5) object code PC copy IP Internet Protocol 6) 7) 168 8) 9)10) 11) 12)13) / / 14) 169 PC publisher End User distributor RPG Role-Playing Game 15) FPS First Person Shooter
More informationSpotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA
Spotlight on Oracle V10.x DELL SOFTWARE KOREA 2016-11-15 Spotlight on Oracle 목차 1. 시스템요구사항... 2 1.1 지원하는데이터베이스...2 1.2 사용자설치홖경...2 2. 프로그램설치... 3 2.1 설치프로그램실행...3 2.2 라이선스사용관련내용확인및사용동의...3 2.3 프로그램설치경로지정...4
More information最即時的Sybase ASE Server資料庫診斷工具
TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser
More informationPowerPoint 프레젠테이션
@ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field
More information<3035303432365FC8A8C6E4C0CCC1F620B0B3B9DF20BAB8BEC8B0A1C0CCB5E5C3D6C1BE28C0FAC0DBB1C7BBE8C1A6292E687770>
개 요 홈페이지 해킹 현황 및 사례 홈페이지 개발시 보안 취약점 및 대책 주요 애플리케이션 보안 대책 결 론 참고자료 [부록1] 개발 언어별 로그인 인증 프로세스 예제 [부록2] 대규모 홈페이지 변조 예방을 위한 권고(안) [부록3] 개인정보의 기술적 관리적 보호조치 기준(안) [부록4] 웹 보안관련 주요 사이트 리스트 7000 6,478 6000 5000
More information쉽게 풀어쓴 C 프로그래밊
Power Java 제 27 장데이터베이스 프로그래밍 이번장에서학습할내용 자바와데이터베이스 데이터베이스의기초 SQL JDBC 를이용한프로그래밍 변경가능한결과집합 자바를통하여데이터베이스를사용하는방법을학습합니다. 자바와데이터베이스 JDBC(Java Database Connectivity) 는자바 API 의하나로서데이터베이스에연결하여서데이터베이스안의데이터에대하여검색하고데이터를변경할수있게한다.
More information