Integration of Tibero and Python

Size: px
Start display at page:

Download "Integration of Tibero and Python"

Transcription

1 Development and Operation Integration of Tibero and Python

2 Table of Contents 1. Checking the Basic Environment Python Version gcc Version Checking Tibero Installing a Basic Package Python-devel unixodbc-devel Installing pyodbc Reference USR Points to Consider When Installing pyodbc Reinstalling Python Installing pyodbc and Configuring the ODBC Environment Check that pyodbc is Operating Normally Configuring DSN Applying Tibero Environment Variables DNS Connection Test Python Test Example Execution

3 Integration of Tibero and Python 1. Checking the Basic Environment 1.1. Python Version ~]# Python Python (#1, Feb , 16:05:45) [GCC (Red Hat )] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> 1.2. gcc Version ~]# gcc v Using built-in specs. Target: x86_64-redhat-linux Configured with:../configure --prefix=/usr --mandir=/usr/share/man -- infodir=/usr/share/info --enable-shared --enable-threads=posix --enablechecking=release --with-system-zlib --enable- cxa_atexit --disable-libunwindexceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,objc++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --withjava-home=/usr/lib/jvm/java gcj /jre --with-cpu=generic --host=x86_64- redhat-linux Thread model: posix gcc version (Red Hat ) 1.3. Checking Tibero The following is an example of verifying that a Tibero server or a Tibero client is installed correctly in Python. # ps -ef grep tbsvr Or # cd / # find./ -name "libtbodbc.so" 2. Installing a Basic Package 2.1. Python-devel A developer package is necessary to compile pyodbc. Use yum to install the package. [root@tiberovm ~]# yum install Python-devel Loaded plugins: fastestmirror, security Loading mirror speeds from cached hostfile * base: ftp.iij.ad.jp * extras: ftp.iij.ad.jp * updates: ftp.iij.ad.jp Setting up Install Process Resolving Dependencies 3

4 ... Complete! 2.2. unixodbc-devel ~]# yum install unixodbc-devel Loaded plugins: fastestmirror, security Loading mirror speeds from cached hostfile * base: ftp.iij.ad.jp * extras: ftp.iij.ad.jp * updates: ftp.iij.ad.jp Setting up Install Process Resolving Dependencies... Complete! 3. Installing pyodbc 3.1. Reference USR Category pyodbc download Python download Python development Details Points to Consider When Installing pyodbc An error occurs in Python when pyodbc is installed. To ensure Python is compiled successfully, reinstallation is necessary with pyodbc versions 2.6.x and higher and with Python 3.x and earlier. [root@tiberovm pyodbc-3.0.7]# Python setup.py build... gcc -pthread -fno-strict-aliasing -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic - D_GNU_SOURCE -fpic -fpic -DPYODBC_VERSION= I/usr/include/Python2.4 -c /tmp/pyodbc-3.0.7/src/pyodbcmodule.cpp -o build/temp.linux-x86_64-2.4/tmp/pyodbc /src/pyodbcmodule.o -Wno-write-strings /tmp/pyodbc-3.0.7/src/connection.h:27: error: 'uintptr_t' does not name a type error: command 'gcc' failed with exit status 1... gcc -pthread -fno-strict-aliasing -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic - D_GNU_SOURCE -fpic -fpic -DPYODBC_VERSION= I/usr/include/Python2.4 -c /tmp/pyodbc-3.0.7/src/cursor.cpp -o build/temp.linux-x86_64-2.4/tmp/pyodbc /src/cursor.o -Wno-write-strings /tmp/pyodbc-3.0.7/src/cursor.cpp:2153: error: invalid conversion from 'const char*' to 'char*' error: command 'gcc' failed with exit status 1 4

5 3.3. Reinstalling Python Check the Python installation. # which Python /usr/bin/python Install Python version # cd /tmp # tar -xvf Python tar # cd Python #./ configure # make # make install Link to the Python newly installed in /usr/bin. # ln -s /tmp/python-2.7.5/python /usr/bin/python [root@tiberovm bin]# Python Python (default, Oct , 22:12:16) [GCC (Red Hat )] on linux2 Type "help", "copyright", "credits" or "license" for more information. >> 4. Installing pyodbc and Configuring the ODBC Environment Unzip pyodbc and go to the source directory to install pyodbc. # cd /tmp/pyodbc [root@tiberovm pyodbc-3.0.7]# Python setup.py build [root@tiberovm pyodbc-3.0.7]# Python setup.py install 4.1. Check that pyodbc is Operating Normally If pyodbc is not installed correctly, an error occurs when importing it. If pyodbc is running normally, no message is displayed. [root@tiberovm pyodbc-3.0.7]# Python Python (default, Oct , 22:12:16) [GCC (Red Hat )] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import pyodbc 5

6 4.2. Configuring DSN Specify the following information in /etc/odbc.ini and /root/.odbc.ini. A DSN is configured in /etc/odbc.ini by default. However, if DSN fails, also configure /etc/odbc.ini. [ODBC Data Sources] tibero5 = Tibero5 ODBC driver [ODBC] Trace = 1 TraceFile = /tmp/odbc.trace [tibero5] Driver = /home/tibero/tibero5/client/lib/libtbodbc.so Description = Tibero5 ODBC Datasource SID = tibero User = tibero Password = tmax 4.3. Applying Tibero Environment Variables Find the Tibero server or Tibero client account installed on the Python development server, and apply Tibero environment variables of.bash_profile to.bash_profile of the root. ### Tibero RDBMS 5 ENV ### export TB_HOME=/home/tibero/tibero5 export TB_SID=tibero export TB_PROF_DIR=$TB_HOME/bin/prof export PATH=.:$TB_HOME/bin:$TB_HOME/client/bin:$PATH export LD_LIBRARY_PATH=$TB_HOME/lib:$TB_HOME/client/lib:$LD_LIBRARY_PATH 4.4. DNS Connection Test [root@tiberovm py_test]# isql -v tibero Connected! sql-statement help [tablename] quit SQL> select * from dual; DUMMY X SQLRowCount returns 1 1 rows fetched 6

7 5. Python Test 5.1. Example py_test]# vi test2.py # -*- coding: cp949 -*- import pyodbc db = pyodbc.connect('dsn=tibero5;uid=tibero;pwd=tmax') cursor = db.cursor() cursor.execute('select * from test1') data = cursor.fetchall() for x in data: print (x[0]) cursor.close() db.close() 5.2. Execution If the output displays a broken Korean letter, set "export TB_NLS_LANG=UTF8". [root@tiberovm py_test]# Python test2.py AAA?± 浿 export TB_NLS_LANG=UTF8 [root@tiberovm py_test]# Python test2.py AAA 홍길동 7

8 Copyright 2014 TmaxData Co., Ltd. All Rights Reserved. Trademarks Tibero RDBMS is a registered trademark of TmaxData Co., Ltd. Other products, titles or services may be registered trademarks of their respective companies. Contact Information TmaxData can be contacted at the following addresses to arrange for a consulting team to visit your company and discuss your options. Korea TmaxData 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, Minato-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 contato.brasil@tmaxsoft.com TN-TRDV-D

[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

IBM Netezza JDBC 연동가이드

IBM Netezza JDBC 연동가이드 개발및운영 IBM Netezza JDBC 연동가이드 2015. 08. 31 IBM Netezza JDBC 연동가이드 1. Netezza 개요 IBM Netezza 데이터웨어하우스어플라이언스는서버, 스토리지및데이터베이스를어플라이언스에통합하여빅데 이터에대한분석을수행합니다. 2. Netezza JDBC 연동방법 2.1 Netezza JDBC Driver nzjdbc3.jar

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

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

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

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

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

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

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

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

Comp 524 Spring 2009 Exercise 1 Solutions Due in class (on paper) at 3:30 PM, January 29, 2009.

Comp 524 Spring 2009 Exercise 1 Solutions Due in class (on paper) at 3:30 PM, January 29, 2009. Comp 524 Spring 2009 Exercise 1 Solutions Due in class (on paper) at 3:30 PM, January 29, 2009. 1. (20 pts) Construct tombstone diagrams to illustrate the use of the tools developed in Programming Assignment

More information

Tibero Migration Utility Guide

Tibero Migration Utility Guide Tibero Migration Utility Guide Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si,

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

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

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

DataTAG Advance Reservation WP2 Database Management in GARA

DataTAG Advance Reservation WP2 Database Management in GARA DataTAG Advance Reservation WP2 Installation and Configuration Manual Network reservation in Gara With database MySQL/MyODBC 1 Installation and Configuration Manual... 1 1.1 Introduction... 3 1.2 Packages

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

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

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

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

Tibero Backup & Recovery Guide

Tibero Backup & Recovery Guide Tibero Backup & Recovery Guide Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si,

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

McGill University School of Computer Science Sable Research Group. *J Installation. Bruno Dufour. July 5, w w w. s a b l e. m c g i l l.

McGill University School of Computer Science Sable Research Group. *J Installation. Bruno Dufour. July 5, w w w. s a b l e. m c g i l l. McGill University School of Computer Science Sable Research Group *J Installation Bruno Dufour July 5, 2004 w w w. s a b l e. m c g i l l. c a *J is a toolkit which allows to dynamically create event traces

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

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

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

ODBC for Linux documentation. SQream Technologies Version 2.23

ODBC for Linux documentation. SQream Technologies Version 2.23 ODBC for Linux documentation SQream Technologies 2018-12-31 Version 2.23 Table of Contents 1. Prerequisites: Install UnixODBC............................................................ 1 2. Install the

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

LABORATORY OF DATA SCIENCE. Data Access: Relational Data Bases. Data Science and Business Informatics Degree

LABORATORY OF DATA SCIENCE. Data Access: Relational Data Bases. Data Science and Business Informatics Degree LABORATORY OF DATA SCIENCE Data Access: Relational Data Bases Data Science and Business Informatics Degree RDBMS data access 2 Protocols and API ODBC, OLE DB, ADO, ADO.NET, JDBC Python DBAPI with ODBC

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

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

Included original file, but not rpt-hw.hpp

Included original file, but not rpt-hw.hpp Included original file, but not rpt-hw.hpp 09:36:38 **** Incremental Build of configuration Debug for project VNA_2 **** make all Building file:../src/modules/module_i2c/ci2c.cpp /MODULE_I2C/CI2C.h" -include/home/os64/rpi-hw/include/rpi-hw.hpp

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

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

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

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

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

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

Innovative leader of RDBMS

Innovative leader of RDBMS Innovative leader of RDBMS Tibero RDBMS opens a new paradigm for enterprise RDBMS. Architecture Tibero RDBMS is the standard DBMS based on the relational model. It provides consistent and efficient data

More information

Wireless LAN Setting Guide

Wireless LAN Setting Guide xxxxxxxx xxxxxxxxxxxxxxxxxxx....................................................................... x xxxxxxxxxxxxxxxxxxx....................................................................... x xxxxxxxxxxxxxxxxxxx.......................................................................

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Tibero Client Installation Guide

Tibero Client Installation Guide Tibero Client Installation Guide Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Restricted Rights Legend All TIBERO Software

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

Migrating Cisco ACE Configuration to STINGRAY Traffic Manager Configuration

Migrating Cisco ACE Configuration to STINGRAY Traffic Manager Configuration User Guide Migrating Cisco ACE Configuration to STINGRAY Traffic Manager Configuration Riverbed Technical Marketing Contents Migrating Cisco ACE Configuration to STINGRAY Traffic Manager Configuration...1

More information

mod_ssl.x86_64 1: el6.centos Complete! Start the Webserver service httpd start Starting httpd: [ OK ]

mod_ssl.x86_64 1: el6.centos Complete! Start the Webserver service httpd start Starting httpd: [ OK ] Total download size: 1.7 M Is this ok [y/n]: y Downloading Packages: Setting up and reading Presto delta metadata updates/prestodelta 210 kb 00:00 Processing delta metadata Download delta size: 525 k (1/4):

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

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

Linux Quick Installation Guide

Linux Quick Installation Guide 2009 Aradial This document contains proprietary and confidential information of Aradial and shall not be reproduced or transferred to other documents, disclosed to others, or used for any purpose other

More information

Ganglia is monitring system for high performance computing systems. We have two node potter.isb.ots.com and harry.isb.ots.com both are HPC nodes.

Ganglia is monitring system for high performance computing systems. We have two node potter.isb.ots.com and harry.isb.ots.com both are HPC nodes. Date : 13-Oct-2009 Ganglia installation Howto By Syed Asim Abbas For comments and suggestions : asimabbas31 at gmail dot com ------------------------------------------------------ Ganglia is monitring

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Graphics Hardware Certification

Graphics Hardware Certification Autodesk Mudbox 2011 Subscription Advantage Pack Graphics Hardware Certification Linux Platform Last updated: October 1 st 2010. Contents Readme First What s New Important Notes Professional Graphics Cards

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

SBMS 2.0. Installation & User Manual. Sample Banking Management System for isbs. Version 2.1

SBMS 2.0. Installation & User Manual. Sample Banking Management System for isbs. Version 2.1 Sample Banking Management System for isbs SBMS.0 Installation & User Manual Version. MicroDigital Co., Ltd. #A-0, Korea Bio Park B/D, 694-, SamPyung-Dong, BunDang-Gu, SungNam-Si, GyungGi-Do, 463-400, Korea

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

Instructions for setting up to compile and run OSGPS code under Linux

Instructions for setting up to compile and run OSGPS code under Linux Instructions for setting up to compile and run OSGPS code under Linux A. The latest and greatest OSGPS software is available on SorceForge. If you are not already monitoring this, you need to be. To set

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

Wireless LAN Setting Guide

Wireless LAN Setting Guide Wireless LAN Setting Guide Setting the XXXXXX XXXXXXXXX wireless LAN P.1-1 Troubleshooting P.2-1 Starter Guide For procedures other than printer installation and wireless LAN setup, please refer to the

More information

GNU17V3 Setup Guide. Rev.2.0

GNU17V3 Setup Guide. Rev.2.0 GNU17V3 Setup Guide Rev.2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation, demonstration, or

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

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

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

BioStar INSTALLATION GUIDE. Version 1.00 English

BioStar INSTALLATION GUIDE. Version 1.00 English BioStar 2.6.0 INSTALLATION GUIDE Version 1.00 English Contents Getting Started... 3 System Requirements... 3 BioStar 2 Video Extension... 3 BioStar 2 API Server... 3 Installing BioStar 2... 4 Login...

More information

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

LED Power Supply. October From The World s No.1 Power Supply Company. Supply From The World s No.1 Supply Company October 2018 www.deltapsu.com Product Introduction LNE Download DeltaPSU AR app from the App Store or Google Play. Scan product image with the AR logo to view

More information

Auto Transfer File Creation Tool for MP2000 Series Machine Controller MPLoad Maker USER'S MANUAL TYPE: CPMC-MPL710 MANUAL NO.

Auto Transfer File Creation Tool for MP2000 Series Machine Controller MPLoad Maker USER'S MANUAL TYPE: CPMC-MPL710 MANUAL NO. Auto Transfer File Creation Tool for MP2000 Series Machine Controller MPLoad Maker USER'S MANUAL TYPE: CPMC-MPL710 MANUAL NO. SIEP C880781 02C Copyright 2006 YASKAWA ELECTRIC CORPORATION All rights reserved.

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

On2 Flix Engine for Linux Installation

On2 Flix Engine for Linux Installation On2 Flix Engine for Linux Installation Topics Preparing the System Java Perl PHP Python Installation Instructions 1. Accept the EULA 2. Verify Prerequisites 3. Uninstall the Previous Version 4. Verify

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

Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018

Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018 Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018 This guide will help you download and install IBM Db2 software on Red Hat

More information

MYB ADVANCE TECHNOLOGY SYSTEMS

MYB ADVANCE TECHNOLOGY SYSTEMS MYB ADVANCE TECHNOLOGY SYSTEMS M1,Building No.5261, Behind Lebanese Flower Restaurant Khalidiyah Street, P.O. Box 47748 - AUH Tel: +97126588820 Fax: +97126588830 Mobile : +971 50 8355255 Email: info@mybtechnology.com

More information

Introduction to the C-Language and Programming Environment

Introduction to the C-Language and Programming Environment Introduction to the C-Language and Programming Environment Part 1: Basics to get started C Language Tutorial System Programming 251-0053 Winter Semester 2005/06 René Müller, IFW B45.2 SysProg WS05/06 1

More information

Installing Prime Optical

Installing Prime Optical 5 CHAPTER This section describes how to install Cisco Prime Optical 9.8 with an Oracle 11g database. To ensure a successful installation, use the checklist provided in the Installation Scenarios and Checklists,

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

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

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

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

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

Installation and Setup Guide for Client

Installation and Setup Guide for Client FUJITSU Software Symfoware Server V12.0.0 Installation and Setup Guide for Client Windows/Linux J2UL-1735-03ENZ0(00) November 2013 Preface Purpose of this document This document describes how to install

More information

FLOTHERM Version 5.1 Release Notes - HPUX, Linux

FLOTHERM Version 5.1 Release Notes - HPUX, Linux FLOTHERM Version 5.1 Release Notes - HPUX, Linux Copyright This document is copyright and may not be reproduced by any method, translated, transmitted, or stored in a retrieval system without prior written

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

Enhanced Performance & Ease of Installation. High Resolution Day & Night Built-in Varifocal Lens Camera

Enhanced Performance & Ease of Installation. High Resolution Day & Night Built-in Varifocal Lens Camera 480TV lines 530TV lines Enhanced Performance & Ease of Installation High Resolution Day & Night Built-in Varifocal Lens Camera Built-in auto iris 3X varifocal lens (f 3~9mm) High resolution of 530TV lines

More information

7.3 Install on Linux and Initial Configurations

7.3 Install on Linux and Initial Configurations 7.3 Install on Linux and Initial Configurations This section describes how to install SoftEther VPN Server to a Linux operating system. This assumes that in the Linux operating system, no extra application

More information

Stingray Traffic Manager 9.0

Stingray Traffic Manager 9.0 WHITE PAPER Stingray Traffic Manager 9.0 Network Deployment Options CONTENTS Introduction... 2 Stingray Aptimizer products... 2 Stingray Aptimizer for SharePoint and Windows IIS deployments... 2 Stingray

More information