IBM Netezza JDBC 연동가이드

Size: px
Start display at page:

Download "IBM Netezza JDBC 연동가이드"

Transcription

1 개발및운영 IBM Netezza JDBC 연동가이드

2 IBM Netezza JDBC 연동가이드 1. Netezza 개요 IBM Netezza 데이터웨어하우스어플라이언스는서버, 스토리지및데이터베이스를어플라이언스에통합하여빅데 이터에대한분석을수행합니다. 2. Netezza JDBC 연동방법 2.1 Netezza JDBC Driver nzjdbc3.jar / Release P-3 driver [build 44291] 2.2 Netezza JDBC URL 정보 DRIVER CLASS JDBC URL FORMAT org.netezza.driver jdbc:netezza://<host>:<port>/<dabase_name> 2.3 JDBC JAVA Sample import java.sql.connection; import java.sql.drivermanager; import java.sql.preparedstement; import java.sql.resultset; import java.sql.sqlexception; import java.sql.stement; import java.util.properties; import javax.naming.context; import javax.naming.initialcontext; import javax.naming.namingexception; import javax.sql.dasource; public class JDBCTest { public JDBCTest() { public stic void main(string[] args) { Connection con = null; Stement stmt = null; ResultSet rs = null; try { String h =null; if(args[0]!=null){ h=args[0]; int j = Integer.parseInt(h); Class.forName("org.netezza.Driver"); 2

3 String url = "jdbc:netezza:// :5480/testdw"; String user = "usmds"; String pw = "usmds"; con = DriverManager.getConnection(url, user, pw); System.out.println(con); for (int i=0;i<=j ;i++ ) { stmt = con.creestement(); String sql = "select * from table"; rs = stmt.executequery(sql); boolean isexistrow = rs.next(); if(isexistrow){ System.out.println("####### SUCCESS!!! #######"); cch (ClassNotFoundException e) { e.printstacktrace(); cch (Exception e) { e.printstacktrace(); finally{ if(rs!= null) try{ rs.close(); cch(sqlexception sqle){ if(stmt!= null) try{ stmt.close(); cch(sqlexception sqle){ if(con!= null) try{ con.close(); cch(sqlexception sqle){ 3. JEUS - Netezza 연동방법 3.1 JEUS 환경정보 1) 제품버전 : JEUS 6.0 fix9 2) Java Version : java 1.7 (IBM JDK 64bit) 3) OS :AIX 7.1 4) Netezza JDBC Driver : Release P-3 driver [build 44291] * 테스트및적용했던고객사의환경정보이며정상적으로동작하는것을확인하였습니다. 3

4 3.2 Netezza 연동설정 ( JEUSMain.xml 설정 ) 1) Netezza JDBC Driver 문제로 ConnectionPoolDaSource 를사용할수없습니다. 2) jeus.jdbc.driver.blackbox.blackboxconnectionpooldasource 를이용해야연동이가능합니다. 3) JDBC Driver 업로드 : $JEUS_HOME/lib/dasource/nzjdbc3.jar 파일업로드해야합니다. <dabase> <vendor>others</vendor> <da-source-id>ntz_ms_ds</da-source-id> <da-source-classname>jeus.jdbc.driver.blackbox.blackboxconnectionpooldasource</da-source-classname> <da-source-type>connectionpooldasource</da-source-type> <name>driverclassname</name> <value>org.netezza.driver</value> <name>url</name> <value>jdbc:netezza://10.xxx.xxx.xxx:5480/testdw</value> <name>user</name> <value>usxxx</value> <name>password</name> <value>usxxx</value> <connection-pool> <pooling> <min>2</min> <max>30</max> <step>1</step> <period> </period> </pooling> </connection-pool> </dabase> 3.3. 로그인에러발생시해결방법 1) 아래로그와같이정상적인 id, password 정보를입력하였지만, 로그인이실패하는현상이발생할수있습니다. -. JEUS BlackboxConnectionPoolDaSource 로연결하면로그인이실패 -. JDBCTest..java 로확인결과대소문자차이로로그인이성공하거나실패하는현상이발생함.( 대소문자구분함.) [ :46:36][0][b396] [JES01-41] [JDBC-0314] failed to initialize pool [ntz_ms_ds] << Exception >> jeus.jdbc.connectionpool.connectionpoolexception: failed to cree the connection pool[ntz_ms_ds] jeus.jdbc.connectionpool.connectionpoolimpl.initialize(connectionpoolimpl.java:181) jeus.jdbc.connectionpool.serversideconnectionpoolinitializer.makeconnectionpool(serve rsideconnectionpoolinitializer.java:43) 4

5 jeus.jdbc.connectionpool.connectionpoolmanager.creeconnectionpool(connectionpoolman ager.java:51) jeus.jdbc.management.jdbcresourceinternal.creeconnectionpool(jdbcresourceinternal.j ava:258) sun.reflect.nivemethodaccessorimpl.invoke0(nive Method) sun.reflect.nivemethodaccessorimpl.invoke(nivemethodaccessorimpl.java:88) sun.reflect.delegingmethodaccessorimpl.invoke(delegingmethodaccessorimpl.java:55) java.lang.reflect.method.invoke(method.java:618) sun.reflect.misc.trampoline.invoke(methodutil.java:87) sun.reflect.generedmethodaccessor18.invoke(unknown Source) sun.reflect.delegingmethodaccessorimpl.invoke(delegingmethodaccessorimpl.java:55) java.lang.reflect.method.invoke(method.java:618) sun.reflect.misc.methodutil.invoke(methodutil.java:291) com.sun.jmx.mbeanserver.standardmbeanintrospector.invokem2(standardmbeanintrospector. java:124) com.sun.jmx.mbeanserver.standardmbeanintrospector.invokem2(standardmbeanintrospector. java:58) com.sun.jmx.mbeanserver.mbeanintrospector.invokem(mbeanintrospector.java:249) com.sun.jmx.mbeanserver.perinterface.invoke(perinterface.java:150) com.sun.jmx.mbeanserver.mbeansupport.invoke(mbeansupport.java:264) com.sun.jmx.interceptor.defaultmbeanserverinterceptor.invoke(defaultmbeanserverinterc eptor.java:831) com.sun.jmx.mbeanserver.jmxmbeanserver.invoke(jmxmbeanserver.java:813) jeus.management.jeusmbeanserveraccesscontroller.invoke(jeusmbeanserveraccesscontrolle r.java:681) javax.management.remote.generic.serverintermediary.handlerequest(serverintermediary.j ava:270) javax.management.remote.generic.serverintermediary$privilegedrequestjob.run(serverint ermediary.java:941) java.security.accesscontroller.doprivileged(accesscontroller.java:366) javax.management.remote.generic.serverintermediary$requesthandler.handlembsreqmessage (ServerIntermediary.java:717) javax.management.remote.generic.serverintermediary$requesthandler.execute(serverinter mediary.java:619) jeus.management.remote.generic.serversynchromessagenonblockingconnectionimpl.readmess age(serversynchromessagenonblockingconnectionimpl.java:168) jeus.management.remote.jeusmp.socketnonblockingconnection$1.run(socketnonblockingconn ection.java:468) jeus.util.stisticthreadpoolexecutor$stisticrunnable.run(stisticthreadpoolexecut or.java:119) jeus.util.threadpoolexecutor$worker.runtask(threadpoolexecutor.java:981) jeus.util.threadpoolexecutor$worker.run(threadpoolexecutor.java:1017) java.lang.thread.run(thread.java:804) Caused by: org.netezza.error.nzsqlexception: Password authenticion failed for user 'USMDS' 5

6 org.netezza.sql.nzconnection$initializer.authentice(nzconnection.java:2522) org.netezza.sql.nzconnection$initializer.init(nzconnection.java:2057) org.netezza.sql.nzconnection.open(nzconnection.java:279) org.netezza.dasource.nzdasource.getconnection(nzdasource.java:602) org.netezza.dasource.nzdasource.getconnection(nzdasource.java:589) org.netezza.driver.connect(driver.java:153) java.sql.drivermanager.getconnection(drivermanager.java:582) java.sql.drivermanager.getconnection(drivermanager.java:226) jeus.jdbc.driver.blackbox.blackboxconnectionpooldasource.getpooledconnection(blackb oxconnectionpooldasource.java:59) jeus.jdbc.queue.jdbcconnectionrepository.creepooledconnection(jdbcconnectionreposit ory.java:284) jeus.jdbc.queue.jdbcconnectionrepository.initconnectionrepository(jdbcconnectionrepos itory.java:79) jeus.jdbc.connectionpool.pooledconnectionproviderimpl.initprovider(pooledconnectionpr oviderimpl.java:45) jeus.jdbc.connectionpool.connectionpoolimpl.initialize(connectionpoolimpl.java:163) more <<!Exception >> 2) AS-IS 환경설정주석처리하고, TO-BE 환경설정으로변경후정상적으로연결된것을확인하였습니다.. ID, PASSWORD 가정확한정보인데도불구하고로그인이안될경우에 user, password 부분에대해 TO-BE 환경설정으로변경하시기바랍니다. AS-IS 환경설정 <name>user</name> <value>usxxx</value> <name>password</name> <value>usxxx</value> TO-BE 환경설정 <user>usxxx</user> <password>usxxx</password> 4. 참고자료 4.1 IBM Netezza 한국사이트 How to access netezza using java through JDBC 6

7 4.3 ETC 1) JDBC driver installion for UNIX/Linux on a supported plform 01.ibm.com/support/knowledgecenter/SSULQD_7.1.0/com.ibm.nz.dacon.doc/c_dacon_jdbc_driver_installion_unix_lin ux_sup.html?lang=en 2) Sample JDBC driver connection URL forms 01.ibm.com/support/knowledgecenter/SSEP7J_10.2.0/com.ibm.swg.ba.cognos.vvm_ag_guide doc/c_ag_samjdcurlfo rm.html%23ag_samjdcurlform 3) Netezza JDBC Driver and URL Informion 7

8 Copyright 2015 TmaxSoft Co., Ltd. All Rights Reserved. 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 Informion TmaxSoft can be contacted the following addresses to arrange for a consulting team to visit your company and discuss your options. Korea TmaxSoft Co., Ltd 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si, Gyeonggi-do. South Korea Tel: Fax: info@tmax.co.kr Web (Korean): Technical Support: USA TmaxSoft, Inc. 560 Sylvan Avenue Englewood Cliffs, NJ U.S.A Tel: Fax: info@tmaxsoft.com Web (English): Russia Tmax Russia L.L.C. Grand Setun Plaza, No A204 Gorbunova st.2, Moscow, Tel: +7(495) info.rus@tmaxsoft.com Web (Russian): Singapore Tmax Singapore Pte. Ltd. 430 Lorong 6, Toa Payoh #10-02, OrangeTee Building. Singapore Tel: info.sg@tmaxsoft.com United Kingdom TmaxSoft UK Ltd. Surrey House, Suite 221, 34 Eden Street, Kingston-Upon- Thames, KT1 1ER United Kingdom Tel: + 44-(0) info.uk@tmaxsoft.com Web (English): Japan TmaxSoft Japan Co., Ltd. 5F Sanko Bldg, Mita, Mino-Ku, Tokyo, Japan Tel: Fax: info.jp@tmaxsoft.com Web (Japanese): China TmaxSoft China Co., Ltd. Beijing Silver Tower, RM 1508, 2 North Rd Dong San Huan, Chaoyang District, Beijing, China, China Tel: ~8 Fax: info.cn@tmaxsoft.com Web (Chinese): Brazil TmaxSoft Brazil Avenida Copacabana, andar 18 do Forte Empresarial, Alphaville - Barueri, Sao Paulo, SP-Brasil CEP conto.brasil@tmaxsoft.com TN-JS3P-E

[JEUS 6.0] MBean 을통한 Application 정보확인

[JEUS 6.0] MBean 을통한 Application 정보확인 기타지식 [JEUS 6.0] MBean 을통한 Application 정보확인 2015. 06. 08 MBean 을이용한 Application 정보확인 1. 개요 외부프로그램을통해 JEUS 서버에접속을하여 Container 별 Application 정보를확인할수있는방법을기술하였습 니다. 2. Mbean 연동방법 2.1 프로그램소스 import java.util.hashtable;

More information

Integration of Tibero and Python

Integration of Tibero and Python Development and Operation Integration of Tibero and Python 2014. 05. 12. Table of Contents 1. Checking the Basic Environment... 3 1.1. Python Version... 3 1.2. gcc Version... 3 1.3. Checking Tibero...

More information

Development and Operation. Partitioning Guide

Development and Operation. Partitioning Guide Development and Operation Partitioning Guide 2014. 06. 13. Table of Contents 1. What is Partitioning?... 3 1.1. Why Partition?... 3 1.2. Partitioning Strategy... 4 1.3. Points to Consider When Selecting

More information

A Mainframe Rehosting Solution

A Mainframe Rehosting Solution A Rehosting Solution A rehosting solution that automatically migrates mainframe programs to an open system environment without modifications REHOSTING A Rehosting Solution Migrates mainframe programs without

More information

JEUS Webservice 구성 (ant)

JEUS Webservice 구성 (ant) JEUS Webservice 구성 (ant) 2015. 07. 15 목차 JEUS Webservice 구성... 3 1. 웹서비스샘플작성... 3 1.1 사전설치프로그램... 3 1.2 Dynamic Web project 생성... 3 1.3 interface 생성... 5 1.4 class 생성... 6 2. Ant를활용한 wsdl 생성... 8 2.1 service-config

More information

Tibero TSC Installation Guide

Tibero TSC Installation Guide Technical Training Tibero TSC Installation Guide 2014. 05. 26. Table of Contents 1. Pre-Installation Tasks... 4 1.1. Configuring the Operating System... 4 1.1.1. Installing Linux... 4 1.1.2. Creating VM

More information

Tibero SQL Operations Plan Guide

Tibero SQL Operations Plan Guide Tuning and Monitoring Tibero SQL Operations Plan Guide 2014. 06. 20. Table of Contents 1. Viewing SQL Query Execution Result using SQL Trace and tbprof.... 3 1.1. Using the SQL_TRACE parameter... 3 1.1.1.

More information

e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs!

e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs! e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs!) With private and hybrid cloud infrastructures now reaching critical

More information

SQream Connector JDBC SQream Technologies Version 2.9.3

SQream Connector JDBC SQream Technologies Version 2.9.3 SQream Connector JDBC 2.9.3 SQream Technologies 2019-03-27 Version 2.9.3 Table of Contents The SQream JDBC Connector - Overview...................................................... 1 1. API Reference............................................................................

More information

Java Database Connectivity

Java Database Connectivity Java Database Connectivity INTRODUCTION Dr. Syed Imtiyaz Hassan Assistant Professor, Deptt. of CSE, Jamia Hamdard (Deemed to be University), New Delhi, India. s.imtiyaz@jamiahamdard.ac.in Agenda Introduction

More information

e BOOK Virtualization and the Oracle database Waiting for the knock on the door?

e BOOK Virtualization and the Oracle database Waiting for the knock on the door? e BOOK Virtualization and the Oracle database Waiting for the knock on the door? Virtualization and the Oracle database waiting for the knock on the door? It will come as a surprise to many Oracle customers

More information

TIBERO. The RDBMS of choice. A highly compatible relational database management system that s a drop-in replacement for legacy systems

TIBERO. The RDBMS of choice. A highly compatible relational database management system that s a drop-in replacement for legacy systems TIBERO The RDBMS of choice A highly compatible relational database management system that s a drop-in replacement for legacy systems TIBERO The RDBMS of choice An innovative architecture geared toward

More information

Pro*C to Tibero Migration and Tmax Configuration

Pro*C to Tibero Migration and Tmax Configuration Development and Operation Pro*C to Tibero Migration and Tmax Configuration 2014. 05. 16. Table of Contents 1. Environment Configuration... 3 1.1. Configuring Environment Variables for each OS... 3 2. Starting

More information

DATABASE DESIGN I - 1DL300

DATABASE DESIGN I - 1DL300 DATABASE DESIGN I - 1DL300 Fall 2010 An introductory course on database systems http://www.it.uu.se/edu/course/homepage/dbastekn/ht10/ Manivasakan Sabesan Uppsala Database Laboratory Department of Information

More information

Accessing databases in Java using JDBC

Accessing databases in Java using JDBC Accessing databases in Java using JDBC Introduction JDBC is an API for Java that allows working with relational databases. JDBC offers the possibility to use SQL statements for DDL and DML statements.

More information

Market leading web application server product

Market leading web application server product JE US Market leading web application server product is the first Web Application Server in the world to be Java EE 6 Certified. can quickly and easily implement cloud environments and execute large transactions.

More information

Databases 2012 Embedded SQL

Databases 2012 Embedded SQL Databases 2012 Christian S. Jensen Computer Science, Aarhus University SQL is rarely written as ad-hoc queries using the generic SQL interface The typical scenario: client server database SQL is embedded

More information

CSC System Development with Java. Database Connection. Department of Statistics and Computer Science. Budditha Hettige

CSC System Development with Java. Database Connection. Department of Statistics and Computer Science. Budditha Hettige CSC 308 2.0 System Development with Java Database Connection Budditha Hettige Department of Statistics and Computer Science Budditha Hettige 1 From database to Java There are many brands of database: Microsoft

More information

Anti-Virus Measures for Instruments with Windows Operating System. White Paper

Anti-Virus Measures for Instruments with Windows Operating System. White Paper Anti-Virus Measures for Instruments with Windows Operating System White Paper Table of Contents 1 Introduction... 3 2 Anritsu s Effort... 3 3 Anti-Virus Measures by Customer... 3 3.1. CONFIGURING WINDOWS

More information

L N

L N R 1 2 3 4 5 6 { 3/8 in. (10 mm) 1 2 A B C 1 2 A B C 1 2 3 4 1 2 A B C 1 2 A B C 1 2 3 4 1 2 3 4 1 2 A B C 1 2 3 4 1 2 3 4 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 1 2 3 4

More information

C:/Users/zzaier/Documents/NetBeansProjects/WebApplication4/src/java/mainpackage/MainClass.java

C:/Users/zzaier/Documents/NetBeansProjects/WebApplication4/src/java/mainpackage/MainClass.java package mainpackage; import java.sql.connection; import java.sql.drivermanager; import java.sql.resultset; import java.sql.sqlexception; import java.sql.statement; import javax.ws.rs.core.context; import

More information

Mitsubishi Programmable Controllers

Mitsubishi Programmable Controllers Mitsubishi Programmable Controllers I N D E X The Answer to Optimum Control - Anytime, Anywhere! Choose a programmable controller. Choose quality. Choose MELSEC-AnS/QnAS! Need reliability? Choose the MELSEC-AnS/QnAS

More information

YASKAWA AC Drive-J1000 Option. RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC RS-232C SI-232/J, SI-232/JC J1000

YASKAWA AC Drive-J1000 Option. RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC RS-232C SI-232/J, SI-232/JC J1000 YASKAWA AC Drive-J1000 Option RS-232C Interface Technical Manual Type SI-232/J, SI-232/JC To properly use the product, read this manual thoroughly and retain for easy reference, inspection, and maintenance.

More information

A web server for reliable web system development

A web server for reliable web system development WEBtoB A web server for reliable web system development is a next generation web server that overcomes the structural problems of existing web servers to provide superior performance and reliability WEBtoB

More information

PRODUCT INTRODUCTION MD8480B. W-CDMA Signalling Tester MX848001A/41A-05. GSM Frequency Hopping ANRITSU CORPORATION

PRODUCT INTRODUCTION MD8480B. W-CDMA Signalling Tester MX848001A/41A-05. GSM Frequency Hopping ANRITSU CORPORATION PRODUCT INTRODUCTION MD8480B W-CDMA Signalling Tester MX848001A/41A-05 GSM Frequency Hopping CONFIDENTIAL 1 Copyright 2004 by The contents of this manual shall not be disclosed in any way or reproduced

More information

GK23A. User's Manual

GK23A. User's Manual GK23A User's Manual 100 Checking wear at part to transmit percussion energy Use the checking template to check the wear. 15mm of wear width indicates it has reached the end of it's lifetime.

More information

EJB - ACCESS DATABASE

EJB - ACCESS DATABASE EJB - ACCESS DATABASE http://www.tutorialspoint.com/ejb/ejb_access_database.htm Copyright tutorialspoint.com EJB 3.0, persistence mechanism is used to access the database in which container manages the

More information

PROFIBUS-DP INTERFACE UNIT INSTRUCTIONS

PROFIBUS-DP INTERFACE UNIT INSTRUCTIONS YASKAWA VS-606 V7 OPTION UNIT PROFIBUS-DP INTERFACE UNIT INSTRUCTIONS MODEL: SI-P1/V7 Upon receipt of the product and prior to initial operation, read these instructions thoroughly and retain them for

More information

Q Web Attack Analysis Report

Q Web Attack Analysis Report Security Level Public CDNetworks Q4 2016 Web Attack Analysis Report 2017. 2. Security Service Team Table of Contents Introduction... 3 Web Attack Analysis... 3 Part I. Web Hacking Statistics... 3 Part

More information

WEB SERVICES EXAMPLE 2

WEB SERVICES EXAMPLE 2 INTERNATIONAL UNIVERSITY HCMC PROGRAMMING METHODOLOGY NONG LAM UNIVERSITY Instructor: Dr. Le Thanh Sach FACULTY OF IT WEBSITE SPECIAL SUBJECT Student-id: Instructor: LeMITM04015 Nhat Tung Course: IT.503

More information

YASKAWA AC Drive-J1000 Option RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC

YASKAWA AC Drive-J1000 Option RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC YASKAWA AC Drive-J1000 Option RS-232C Interface Technical Manual Type SI-232/J, SI-232/JC To properly use the product, read this manual thoroughly and retain for easy reference, inspection, and maintenance.

More information

Installing VISA for Remote Control

Installing VISA for Remote Control Technical Note Installing VISA for Remote Control MS2690A/MS2691A/MS2692A Signal Analyzer Technical Note - Installing VISA for Remote Control - Anritsu March 2009 (1.00) Slide 1 VISA Setup for PC Controller

More information

An IBM Rational Software TechNote

An IBM Rational Software TechNote Data Driven Testing: How to Create a Data Driven Test with XDE Tester An IBM Rational Software TechNote 1 Creating a Data-Driven Test with XDE Tester By Dr. Gerd Weishaar The samples provided in the advanced

More information

while (rs.next()) { String[] temp_array = {"","",""}; int prodid = rs.getint(1); temp_array[0] = ""+prodid;

while (rs.next()) { String[] temp_array = {,,}; int prodid = rs.getint(1); temp_array[0] = +prodid; import java.sql.connection; import java.sql.drivermanager; import java.sql.resultset; import java.sql.sqlexception; import java.sql.statement; import java.util.arraylist; import java.util.scanner; public

More information

Platts on the Net DDE Link Set Up

Platts on the Net DDE Link Set Up Platts on the Net DDE Link Set Up Setting up a DDE Link to export data from POTN into Excel Windows XP Excel 2003 POTN has a function to export of data using a DDE link. To set up the link: Open Excel

More information

COMPACT HIGH POWER RELAY

COMPACT HIGH POWER RELAY COMPACT HIGH POWER RELAY 1 POLE - 40A (For automotive applications) FBR53-HW Series FEATURES Small 40A relay High temperature grade (-40 C to 125 C) Contact arrangement Form U (form A) Surface mount compatible

More information

LANTest. LANTest WLAN production software for use with the MT8860B. Transmit Power Levels. Transmit Spectrum Mask. Transmit Center Frequency Tolerance

LANTest. LANTest WLAN production software for use with the MT8860B. Transmit Power Levels. Transmit Spectrum Mask. Transmit Center Frequency Tolerance Product Information Sheet WLAN production software for use with the MT8860B Run Transmit Power Levels Transmit Spectrum Mask Transmit Center Frequency Tolerance Transmit Modulation Accuracy (EVM) Spectral

More information

POWER RELAY. FTR-K4 Series. 120A Latching Relay. Preliminary FTR-K1 SERIES

POWER RELAY. FTR-K4 Series. 120A Latching Relay. Preliminary FTR-K1 SERIES FTR-K1 SERIES POWER RELAY 10A Latching Relay FTR-K Series FEATURES Switching current : 10 A (1 form A) Contact resistance : Max. 0. mω (Initial) Compact size : 3.0 x 37.0 x.0 mm Plastic materials conform

More information

Verifying Effectiveness of Proprietary and Standard FEC in 40G/43G Networks

Verifying Effectiveness of Proprietary and Standard FEC in 40G/43G Networks Product Introduction Verifying Effectiveness of Proprietary and Standard FEC in 40G/43G Networks MP1595A 40G SDH/SONET Analyzer Verifying Effectiveness of Proprietary and Standard FEC in 40G/43G Networks

More information

Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564

Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564 Application Note Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564 MT1000A Network Master Pro MT1100A Network Master Flex MU100010A 10G Multirate Module MU110010A 10G Multirate

More information

ERwin and JDBC. Mar. 6, 2007 Myoung Ho Kim

ERwin and JDBC. Mar. 6, 2007 Myoung Ho Kim ERwin and JDBC Mar. 6, 2007 Myoung Ho Kim ERwin ERwin a popular commercial ER modeling tool» other tools: Dia (open source), Visio, ConceptDraw, etc. supports database schema generation 2 ERwin UI 3 Data

More information

DDR-3 DIMM Vertical Mount Socket

DDR-3 DIMM Vertical Mount Socket Not for New Designs DDR-3 DIMM Vertical Mount Socket FCN-07 Series FEATURES DDR-3: 240pin DIMM socket connector (press-fit or through hole type) Fujitsu original unique structure for twin contact points

More information

Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564

Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564 Application Note Ethernet Service Commissioning Test Shorter Commissioning Times with ITU-T Y.1564 MT1000A Network Master Pro MT1100A Network Master Flex MU100010A 10G Multirate Module MU100011A 100G Multirate

More information

RC90 Upgrade Procedures

RC90 Upgrade Procedures RC90 Upgrade Procedures EM136R2547F Table of Contents Thank you for purchasing our robot system. Before using the robot system, please read this manual thoroughly and use the product properly. Keep this

More information

USB-to-Serial Console Adapter

USB-to-Serial Console Adapter USB-to-Serial Console Adapter USER MANUAL UC232B EMC Information Federal Communication Commission Interference Statement: This equipment has been tested and found to comply with the limits for a Class

More information

COMPACT HIGH POWER RELAY

COMPACT HIGH POWER RELAY COMPACT HIGH POWER RELAY 1 POLE - 30A (For automotive applications) FBR3 Series FEATURES Compact for high density packaging High contact capability (30A continuous) High temperature grade (-40 C to 12

More information

FTR-K1 HIGH CAPACITY 20A TYPE

FTR-K1 HIGH CAPACITY 20A TYPE FTR-K1 HIGH CAPACITY 20A TYPE 1 POLE - Power Relay FTR-K1 Series FEATURES High capacity 20A (1 form A type) Low profile (height: 15.7mm) High insulation. Insulation distance: min. 10mm between coil and

More information

NETWORK CAMERA. Quick Guide XNP-6120H

NETWORK CAMERA. Quick Guide XNP-6120H NETWORK CAMERA Quick Guide XNP-6120H CAUTION: Be ware of the Rated Voltage and Polarity of the power connection. COMPONENT As for each sales country, accessories are not the same. Not Included : SD CARD

More information

Java Database Connectivity

Java Database Connectivity Java Database Connectivity PROGRAMMING Dr. Syed Imtiyaz Hassan Assistant Professor, Deptt. of CSE, Jamia Hamdard (Deemed to be University), New Delhi, India. s.imtiyaz@jamiahamdard.ac.in Agenda PreparedStatement

More information

Delta OPEN CNC Controller NC E Series

Delta OPEN CNC Controller NC E Series Automation for a Changing World Delta OPEN CNC Controller NC E Series www.deltaww.com Features Open-structured CNC System The new Open CNC Solution provides an open structure for hardware and software

More information

Web Applications and Database Connectivity using JDBC (Part II)

Web Applications and Database Connectivity using JDBC (Part II) Web Applications and Database Connectivity using JDBC (Part II) Advanced Topics in Java Khalid Azim Mughal khalid@ii.uib.no http://www.ii.uib.no/~khalid/atij/ Version date: 2007-02-08 ATIJ Web Applications

More information

FUJITSU Component Connector FCN-074B / 078B series Card Edge Connector for DDR4 Memory Module

FUJITSU Component Connector FCN-074B / 078B series Card Edge Connector for DDR4 Memory Module FUJITSU Component Connector FCN-074B / 078B series Card Edge Connector for DDR4 Memory Module Not for New Designs Overview This is a 288-pin DIMM socket that conforms to JEDEC standards. RoHS compliant

More information

ULTRA MINIATURE RELAY Flat High Frequency Relay Surface mount, 1 GHz-band, 2 Form C FTR-B3-RF Series

ULTRA MINIATURE RELAY Flat High Frequency Relay Surface mount, 1 GHz-band, 2 Form C FTR-B3-RF Series Non-promotional not for new designs FTR-K1 SERIES ULTRA MINIATURE RELAY Flat High Frequency Relay Surface mount, 1 GHz-band, 2 Form C FTR-B3-RF Series FEATURES Excellent high-frequency characteristics

More information

In-ceiling Housing. Installation Manual SHP-3701F

In-ceiling Housing. Installation Manual SHP-3701F In-ceiling Housing Installation Manual SHP-3701F TABLE OF CONTENTS Overview 3 What s Included 3 Installation Instructions 4 Installation (SCP-3430 Series) 4 Installation (SCP-3370/SNP-5200 SERIES) 9 Installation

More information

COMPACT HIGH POWER RELAY

COMPACT HIGH POWER RELAY COMPACT HIGH POWER RELAY For automotive applications POLE - 6A (For 2V Car Battery) FBR59-HW Series FEATURES pole, 6A, form U High temperature grade (-4 C to 25 C) Comparable capability with Power Mini

More information

COMPACT POWER RELAY. FTR-V1 Series. 1 POLE - 210A Battery Latching relay FTR-K1 SERIES FEATURES. Applications PARTNUMBER INFORMATION

COMPACT POWER RELAY. FTR-V1 Series. 1 POLE - 210A Battery Latching relay FTR-K1 SERIES FEATURES. Applications PARTNUMBER INFORMATION FTR-V1 Series FTR-K1 SERIES COMPACT POWER RELAY 1 POLE - 21A Battery Latching relay FEATURES 1 pole 21A 1 form B relay for 12V car battery Low profile Double winding latching relay 21A (at 85 o C) / 12A

More information

FBR57 Series. COMPACT HIGH POWER RELAY 1 POLE - 30A (28VDC) (For 24V battery automotive applications) FTR-K1 SERIES FEATURES

FBR57 Series. COMPACT HIGH POWER RELAY 1 POLE - 30A (28VDC) (For 24V battery automotive applications) FTR-K1 SERIES FEATURES FTR-K1 SERIES COMPACT HIGH POWER RELAY 1 POLE - 30A (28VDC) (For 24V battery automotive applications) FBR57 Series FEATURES High power contact capacity (carrying current: 40 A/10 minutes, 30 A/1 hour)

More information

VS-616PC5/P5 Option Instruction Manual

VS-616PC5/P5 Option Instruction Manual VS-66PC5/P5 Option Instruction Manual Isolated 4-20mA Output Monitor Card PRECAUTIONS! DANGER. Read this instruction manual in its entirety before installing the Isolated Monitor Card or operating the

More information

PI DataLink MUI Language Pack

PI DataLink MUI Language Pack PI DataLink MUI Language Pack Version 2015 (5.2.0) 2015 OSIsoft, LLC. All rights reserved Table of Contents Overview Fixes and Enhancements Known Issues Setup Operating Systems System Prerequisites Server

More information

BOX CAMERA HOUSING. User Manual SHB-4300HP

BOX CAMERA HOUSING. User Manual SHB-4300HP BOX CAMERA HOUSING User Manual SHB-4300HP BOX CAMERA HOUSING User Manual Copyright 2016 Hanwha Techwin Co., Ltd. All rights reserved. Trademark Each of trademarks herein is registered. The name of this

More information

Delta Vision Sensor VIS100 Series

Delta Vision Sensor VIS100 Series Automation for a Changing World Delta Vision Sensor VIS100 Series www.deltaww.com Compact vision sensor for flexible installation As industrial automation moves toward smart manufacturing, industries seek

More information

JDBC Architecture. JDBC API: This provides the application-to- JDBC Manager connection.

JDBC Architecture. JDBC API: This provides the application-to- JDBC Manager connection. JDBC PROGRAMMING JDBC JDBC Java DataBase Connectivity Useful for database driven applications Standard API for accessing relational databases Compatible with wide range of databases Current Version JDBC

More information

COMPACT POWER RELAY (automotive applications) FTR-P3 Series. Preliminary. 1 POLE - 6A (For 24V car battery) FEATURES. Part Numbers

COMPACT POWER RELAY (automotive applications) FTR-P3 Series. Preliminary. 1 POLE - 6A (For 24V car battery) FEATURES. Part Numbers COMPACT POWER RELAY (automotive applications) 1 POLE - 6A (For 24V car battery) FEATURES Compact for high density packaging. High contact capacity with proven contact material. (100,000 operations, 28V,

More information

NETWORK VIDEO RECORDER

NETWORK VIDEO RECORDER VIDEO RECORDER Quick Manual XRN-60/00/00/0 HDD Installation XRN-0 XRN-60/00/00 Remove the screws located on the left/right side and on the back side first, then remove the cover. Remove the screws on the

More information

12G-SDI/IP Multi-Channel Video Server. MBP-1000VS series. Preliminary. 12G-SDI/IP Multi-Channel Video Server. MBP-1000VS series

12G-SDI/IP Multi-Channel Video Server. MBP-1000VS series. Preliminary. 12G-SDI/IP Multi-Channel Video Server. MBP-1000VS series G-SDI/IP Multi-Channel Video Server Preliminary G-SDI/IP Multi-Channel Video Server Choose from a broad range of interfaces including G-SDI, 3G-SDI, and SFP+, for G-SDI or video over IP transmission. 4K

More information

Delta Multifunction Pressure Sensor DPA Series

Delta Multifunction Pressure Sensor DPA Series Automation for a Changing World Delta Multifunction Pressure Sensor DPA Series www.deltaww.com Multifunction Pressure Sensor DPA Series Energy-saving mode Various unit conversion function Various output

More information

Paragon II. The Cat5 Enterprise-class KVM Solution for Centralized Server Management. Technology Corporation

Paragon II. The Cat5 Enterprise-class KVM Solution for Centralized Server Management. Technology Corporation Paragon II The Cat5 Enterprise-class KVM Solution for Centralized Server Management Technology Corporation Paragon II It s That Easy Paragon is the premier Cat5 KVM (Keyboard, Video, Mouse) solution, providing

More information

COP4540 TUTORIAL PROFESSOR: DR SHU-CHING CHEN TA: H S IN-YU HA

COP4540 TUTORIAL PROFESSOR: DR SHU-CHING CHEN TA: H S IN-YU HA COP4540 TUTORIAL PROFESSOR: DR SHU-CHING CHEN TA: H S IN-YU HA OUTLINE Postgresql installation Introduction of JDBC Stored Procedure POSTGRES INSTALLATION (1) Extract the source file Start the configuration

More information

S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board)

S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board) MF1434-01 CMOS 8-BIT SINGLE CHIP MICROCOMPUTER S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board) NOTICE No part of this material may be reproduced or duplicated in any form or by any means without

More information

S1V3G340 External SPI-Flash Select Guide

S1V3G340 External SPI-Flash Select Guide S1V3G340 External SPI-Flash Select Guide Rev.1.00 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson

More information

NETWORK VIDEO ENCODER

NETWORK VIDEO ENCODER NETWORK VIDEO ENCODER Quick Guide SPE-110 VIDEO IN D RX RESET English What s Included As for each sales country, accessories are not the same. Network Video Encoder Instruction book, Installer S/W CD Quick

More information

Medical Power Supply. October From The World s No.1 Power Supply Company.

Medical Power Supply. October From The World s No.1 Power Supply Company. From The World s No.1 Company October 2018 www.deltapsu.com Product Introduction Open Frame and Enclosed MDS MDS MEB Safety pprovals to IEC 60601-1 3.1Ed. & IEC 60950-1 Compliant with IEC 60601-1-2 4th

More information

POWER RELAY. JSL Series. 1 POLE - 8A Polarized Latching Type

POWER RELAY. JSL Series. 1 POLE - 8A Polarized Latching Type POWER RELAY 1 POLE - 8A Polarized Latching Type JSL Series FEATURES Small footprint Width: 10mm Height: 12.5mm High insulation Insulation distance : 8.0 mm (between coil and contacts) Dielectric strength

More information

Microwave Multiport Measurement System

Microwave Multiport Measurement System Product Brochure Microwave Multiport Measurement System 40 MHz to 67 GHz* 12-Port Mixed-Mode and Balanced/Differential Multiport System *Operational to 70 GHz Microwave Multiport Measurement System Anritsu

More information

S1C17 Family Port Nested Interrupt Application Notes

S1C17 Family Port Nested Interrupt Application Notes S1C17 Family Port Nested Interrupt Application Notes Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering

More information

LONWORKS Option Card CM048

LONWORKS Option Card CM048 LONWORKS Option Card CM48! Unpack the LONWORKS Option Kit and verify that all components are present and undamaged. Part LONWORKS Option Board (UUX258) 1 LONWORKS Data Diskette 1 Installation Guide (IG.AFD.2)

More information

Databases and SQL Lab EECS 448

Databases and SQL Lab EECS 448 Databases and SQL Lab EECS 448 Databases A database is an organized collection of data. Data facts are stored as fields. A set of fields that make up an entry in a table is called a record. Server - Database

More information

S1C17 Family EEPROM Emulation Library Manual

S1C17 Family EEPROM Emulation Library Manual S1C17 Family EEPROM Emulation Library Manual Rev.1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation,

More information

INTRODUCTION TO JDBC - Revised Spring

INTRODUCTION TO JDBC - Revised Spring INTRODUCTION TO JDBC - Revised Spring 2006 - 1 What is JDBC? Java Database Connectivity (JDBC) is an Application Programmers Interface (API) that defines how a Java program can connect and exchange data

More information

Quick Start Guide MT8870A. Universal Wireless Test Set

Quick Start Guide MT8870A. Universal Wireless Test Set Quick Start Guide MT8870A Universal Wireless Test Set Table of Contents Table of Contents... 1 1. Introduction... 2 1.1. Checking Attachments... 2 1.2. Requirements for Setting-up MT8870A... 2 1.3. Terms...

More information

Data Sheet Fujitsu Narrow Pitch Stacking Connector FCN-280 Series

Data Sheet Fujitsu Narrow Pitch Stacking Connector FCN-280 Series ata Sheet FCN-28 series Not for New esign ata Sheet Fujitsu Narrow Pitch Stacking Connector FCN-28 Series Fujitsu board-to-board narrow pitch stacking connector for use in measurement and factory automation

More information

PPG/ED Bit Rate Expansion Option Low Pass Filter Option

PPG/ED Bit Rate Expansion Option Low Pass Filter Option Product Introduction PPG/ED Bit Rate Expansion Option Low Pass Filter Option MP2100A BERTWave Series MP2100A BERTWave Series PPG/ED Bit Rate Expansion Option Low Pass Filter Option New Software New Function

More information

S1C17 Family Application Library S1C17 Series Steps Calculation Library

S1C17 Family Application Library S1C17 Series Steps Calculation Library S1C17 Family Application Library S1C17 Series Steps Calculation Library Rev. 2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed

More information

Agilent. Integrated Dry Turbo Pumping System

Agilent. Integrated Dry Turbo Pumping System Agilent Mini-Task AG81 Integrated Dry Turbo Pumping System Agilent Mini-TASK AG81 Dry Turbo Pumping System Compact, Portable Vacuum System: Just Plug and Pump The Agilent Mini-TASK AG81 (Active Gauge)

More information

CMA 3000 SPECIFICATIONS. V-series Interface Measurement Option

CMA 3000 SPECIFICATIONS. V-series Interface Measurement Option CMA 3000 V-series Interface Measurement Option SPECIFICATIONS The easy way to test V-series interfaces When equipped with the V-series interface measurement option, the portable, easy-to-use and compact

More information

FUJITSU Component Thermal Printer FTP-63HMCL153 series

FUJITSU Component Thermal Printer FTP-63HMCL153 series FUJITSU Component Thermal Printer FTP-63HMCL153 series Fujitsu 3 high speed thermal printer mechanism Overview The compact, low voltage FTP-63HMCL series provides an ultra low profie design and high speed

More information

Delta Handheld Barcode Scanner DAH Series

Delta Handheld Barcode Scanner DAH Series Automation for a Changing World Delta Handheld Barcode Scanner DAH Series www.deltaww.com Delta Handheld Barcode Scanner DAH Series Wide Target Area, Fast and Reliable Capture Delta's latest handheld barcode

More information

Java Database Connectivity (JDBC) 25.1 What is JDBC?

Java Database Connectivity (JDBC) 25.1 What is JDBC? PART 25 Java Database Connectivity (JDBC) 25.1 What is JDBC? JDBC stands for Java Database Connectivity, which is a standard Java API for database-independent connectivity between the Java programming

More information

VanillaCore Walkthrough Part 1. Introduction to Database Systems DataLab CS, NTHU

VanillaCore Walkthrough Part 1. Introduction to Database Systems DataLab CS, NTHU VanillaCore Walkthrough Part 1 Introduction to Database Systems DataLab CS, NTHU 1 The Architecture VanillaDB JDBC/SP Interface (at Client Side) Remote.JDBC (Client/Server) Query Interface Remote.SP (Client/Server)

More information

1 POLE - 5A Change Over Relay

1 POLE - 5A Change Over Relay POWER RELAY 1 POLE - 5A Change Over Relay FTR-F3 Series FEATURES High density mounting Height: 15mm Mounting space: 164mm 2 High insulation Insulation distance: 7mm between coil and contacts (conforms

More information

Mobile Backhaul Test Synchronous Ethernet Evaluation

Mobile Backhaul Test Synchronous Ethernet Evaluation Application Note Mobile Backhaul Test Synchronous Ethernet Evaluation MT1000A Network Master Pro MT1100A Network Master Flex MU100010A 10G Multirate Module MU110010A 10G Multirate Module MU100011A 100G

More information

FUJITSU Component Thermal Printer FTP-64GMCL153 series

FUJITSU Component Thermal Printer FTP-64GMCL153 series FUJITSU Component Thermal Printer FTP-64GMCL153 series Fujitsu 4 high speed (200mm/s)thermal printer mechanism Overview The FTP-64GMCL series thermal printer driven by 24VDC provides high speed printing

More information

Product Guide.

Product Guide. Product Guide By leveraging more than 25 years of solid state storage design expertise, Greenliant Systems is dedicated to developing durable, reliable and secure storage solutions for embedded systems

More information

POWER RELAY. JY Series. 1 POLE - 3, 5A Medium Load Control (AgCdO contacts) Non Promotional (Not for new designs)

POWER RELAY. JY Series. 1 POLE - 3, 5A Medium Load Control (AgCdO contacts) Non Promotional (Not for new designs) POWER RELAY 1 POLE - 3, A Medium Load Control (AgCdO contacts) JY Series Non Promotional (Not for new designs) FEATURES UL, CSA recognized High sensitivity and low power consumption High insulation Wide

More information

Product Introduction ME7832L. LTE Protocol Conformance Test System

Product Introduction ME7832L. LTE Protocol Conformance Test System Product Introduction ME7832L LTE Protocol Conformance Test System ME7832L LTE Protocol Conformance Test System Product Introduction TS36.523 LTE Protocol Conformance Solution Slide 1 Approved LTE Protocol

More information

Machine Controller MP9 PROGRAMMING UNIT SOFTWARE INSTRUCTIONS

Machine Controller MP9 PROGRAMMING UNIT SOFTWARE INSTRUCTIONS YASKAWA Machine Controller MP9 PROGRAMMING UNIT SOFTWARE INSTRUCTIONS Upon receipt of the product and prior to installing the product, read these instructions thoroughly, and retain for future reference.

More information

Outdoor Housing Installation Manual SHP-3701H

Outdoor Housing Installation Manual SHP-3701H Outdoor Housing Installation Manual SHP-3701H OVERVIEW The outdoor-type housing (SHP-3701H) is the housing used to install the smart dome camera or network camera on a wall or ceiling outdoors. CAUTIONS

More information

Servlet 5.1 JDBC 5.2 JDBC

Servlet 5.1 JDBC 5.2 JDBC 5 Servlet Java 5.1 JDBC JDBC Java DataBase Connectivity Java API JDBC Java Oracle, PostgreSQL, MySQL Java JDBC Servlet OpenOffice.org ver. 2.0 HSQLDB HSQLDB 100% Java HSQLDB SQL 5.2 JDBC Java 1. JDBC 2.

More information

Brekeke PBX Version 3 IVR Developer s Guide Brekeke Software, Inc.

Brekeke PBX Version 3 IVR Developer s Guide Brekeke Software, Inc. Brekeke PBX Version 3 IVR Developer s Guide Brekeke Software, Inc. Version Brekeke PBX version 3 IVR Script Developer s Guide Copyright This document is copyrighted by Brekeke Software, Inc. Copyright

More information

MU120138A 10 Gigabit Ethernet Module

MU120138A 10 Gigabit Ethernet Module Product Introduction MU120138A 10 Gigabit Ethernet Module MD1230B Data Quality Analyzer MP1590B Network Performance Tester MU120138A Next-Generation 10GbE Module Product Overview Anritsu Corporation Slide

More information