Database Infrastructure with Smart Software Layer For Semiconductor Manufacturing David Q. Kelly, Ph.D.

Size: px
Start display at page:

Download "Database Infrastructure with Smart Software Layer For Semiconductor Manufacturing David Q. Kelly, Ph.D."

Transcription

1 Database Infrastructure with Smart Software Layer For Semiconductor Manufacturing David Q. Kelly, Ph.D. VCSEL Product Engineering, Finisar Corporation

2 Vertical Cavity Surface-Emitting Laser (VCSEL) Product Portfolio Single Mode High Speed High Power Small die 150mm x 150mm Polarization controlled 850, 894nm >1mW optical power Custom wavelengths >28Gbps Multiple wavelengths Operation to >85C TT1%Fail > 10 years 1xN arrays Custom layouts CW Power > 10W Peak Power > 100W 850 and 940nm

3 New Growth Area for High-Power VCSELs for 3D Sensing Finisar's short-wave vertical cavity surface-emitting laser (VCSEL) technology was acquired from Honeywell in 2004 GaAs wafer fab located in Allen, TX, USA supplies VCSELs for use in optical transceivers New growth area is high-power VCSEL arrays for consumer, automotive, and commercial 3D sensing applications Typical VCSEL array chip size is 1-2 mm 2 VCSEL array chip can have hundreds of laser emitters Optical characteristics of each laser emitter must be measured Massive data storage requirements!

4 Motivation Data infrastructure needed overhaul to support growing VCSEL market Existing IT and software ecosystem relies heavily on Microsoft technologies: Microsoft SQL Server databases for data storage and recall operations Micosoft.NET Framework for test software development Finisar's legacy data infrastracture was overly complex and cumbersome Database tables that were originally developed for engineering use evolved into production tables Database tables were linked to one another by "lookup values" rather than strict primary key / foreign key relationships Wafer test data stored in a legacy file format which could only be interpreted by legacy software Inadequate data validation

5 Overview Given that Finisar's IT ecosystem already relied heavily on Microsoft technologies, the desire was to invent a new data infrastructure that achieved the following objectives: Data should be stored in a Microsoft SQL Server database Data must be validated before storing in the database Large amounts of raw data should be stored without sacrificing speed of read/write operations Database should be relational and all tables should make use of strictly-enforced primary key / foreign key relationships Finisar has developed a relational database infrastracture and a supporting "smart" software layer for all read/write operations

6 Relational Database Design Primary Key Foreign Key WAFER_KEY WAFER_NUMBER PRODUCT_KEY SCRIBE_ID AA AB DE WAFER Table Primary Key PRODUCT_KEY PRODUCT WAFER_DIAMETER DIE_SIZE_X DIE_SIZE_Y 1 VCSEL_ VCSEL_ VCSEL_ PRODUCT Table The primary keys of each table should be surrogate data values that represent the actual data

7 Binary Large Objects (BLOBs) Products with small die sizes can have up to 250k dies per wafer, with a dozen or more test values per die Millions of test values per wafer Row count would be unmanageable if every test value stored in a separate row in the database Row count still unmanageable even if all test values for a single die are stored in one row If a Binary Large Object (BLOB) is used to store the data, then all of the test values for all of the dies on the wafer can be stored in a single database row With Microsoft SQL Server, the data type for the column is varbinary(max) With a suitable compression scheme, all numbers can be stored using 2 bytes for each number Byte array organized as follows, where n is the number of tests, and m is the number of dies: b 0,0 [0] b 0,0 [1] b 0,n [0] b 0,n [1] b 1,0 [0] b 1,0 [1] b m,n [0] b m,n [1]

8 Wafer Probe Record Example PROBE_RECORD_KEY WAFER_KEY TEMPERATURE START_TIME STOP_TIME TESTER_KEY /1/17 1:00 AM 10/1/17 3:10 AM /1/17 2:30 AM 10/1/17 4:30 AM /2/17 4:15 PM 10/2/17 7:45 PM 6 PROBE_RECORD Table PROBE_RECORD_KEY DATA_BLOB 1 0x018F9C 2 0x1A4B6E 3 0x2FFF3A PROBE_DATA Table Main probe record table contains information about the probe data (wafer, temperature, start/stop time, tester, etc.) BLOB data is stored in a separate table, linked using a primary key BLOB columns contains all of the data for every die on the wafer

9 Data that can be stored as a BLOB Wafer probe raw data Wafer map information that instructs probers on which dies to probe Bin maps for die sorters Wafer acceptance or burn-in data Possibilities are endless Be careful not to overuse the BLOB, however: BLOB data requires a software layer to interpret the data If the BLOB is overused, it puts unnecessary barriers between the data and the data consumers

10 "Smart" Software Layer Since the information in a BLOB is stored as raw bytes, a software layer is required to "unwrap" the data and make it presentable to data consumers The "smart" software layer comes in two incarnations:.net class library (DLL) that can be used in test software, data visualization, data exporting tools, etc. Assemblies deployed to the server that contain user-defined CLR functions and stored procedures Microsoft documentation on CLR User-Defined Functions

11 SQL Query that returns the raw probe data for wafer measured at 50C: PROBE_RECORD_KEY WAFER_KEY TEMPERATURE START_TIME STOP_TIME TESTER_KEY /1/17 1:00 AM 10/1/17 3:10 AM /1/17 2:30 AM 10/1/17 4:30 AM /2/17 4:15 PM 10/2/17 7:45 PM 6 PROBE_RECORD Table PROBE_RECORD_KEY DATA_BLOB 1 0x018F9C 2 0x1A4B6E 3 0x2FFF3A PROBE_DATA Table WAFER_KEY WAFER_NUMBER PRODUCT_KEY SCRIBE_ID AA AB DE WAFER Table SELECT DATA_BLOB FROM PROBE_DATA WHERE PROBE_RECORD_KEY = (SELECT PROBE_RECORD_KEY FROM PROBE_RECORD WHERE WAFER_KEY = (SELECT WAFER_KEY FROM WAFER WHERE WAFER_NUMBER = ' ') AND TEMPERATURE = 50); Returns 0x2FFF3A Useless array of bytes as is Requires "unwrapping"

12 CLR function called "Get_PROBE_DATA_By_Temperature" deployed to the server from an assembly: SELECT * FROM Get_PROBE_DATA_By_Temperature(' ', 50) CLR function interprets the BLOB data, pulls the wafer map, pulls the test list, etc. PROBE_RECORD_KEY WAFER_NUMBER DIE_X DIE_Y TEST_NAME TEST_VALUE UNITS BIN_CODE Voltage1 0.1 V Voltage2 0.2 V Current1 0.4 A Current A Power W Power W Voltage V Voltage V Current A Current A Power W Power W 1 Data stored as BLOB, but output of query is human-readable!

13 "Smart" Software Layer Data Validation Example Scenario: Test software utilizing the "smart" software layer's class library (DLL) stores results locally while probing the wafer When wafer prober completes the wafer, the class library is used by the test software to push the results to the database Class library confirms that all dies in the wafer map are present in the results before allowing the data to be written to the database If data is incomplete, the class library throws an exception Incomplete probe data

14 "Smart" Software Layer Triggers and Post-Processing Capabilities Example Scenario: There is a need to probe the wafers at multiple temperatures and under different conditions A wafer can be probed 3 or 4 times depending on the product requirements The "smart" software layer can utilize CLR stored procedures to combine all probe results into a single bin map, which is triggered when the final probe result for a wafer is written Multiple wafer probe data sets Database trigger

15 "Smart" Software Layer used by Third-Party Data Tools Data analysis tools require an interface to the internal database where the data is stored Vendors that create data tools can utilize the "smart" software layer to pull data and format it according to their requirements Finisar uses YieldWatchDog for data monitoring

16 Data Infrastructure Database Software Layer User Interface Test Software MES Database (Factory Control) Database.NET Software Web Portal YieldWatchDog Data Visualization Tools

17 One Database, One Software Layer A single database is used for all data storage Relationships between data are controlled using strict primary key / foreign key relationships All data must go through the software validation layer

18 Conclusion Growth in Finisar's VCSEL business has necessitated upgrades to our data infrastructure Microsoft SQL Server has been utilized to store large amounts of wafer data using binary large objects (BLOBs) Primary key / foreign key relationships using surrogate data have been used for linking records.net class library and user-defined CLR functions and stored procedures constitute a "smart" software layer that performs the following functions: Interpretation and "unwrapping" of BLOB data Data validation Calculations and post-processing triggered on data inserts Interface for third-party data tools

VCSEL Technology and Digital

VCSEL Technology and Digital VCSEL Technology and Digital Applications Marco Ghisoni Zarlink Semiconductor AB marco.ghisoni@zarlink.com Outline Introduction Today's Digital Applications Mass market Parallel optical modules Future

More information

AIM Photonics: Manufacturing Challenges for Photonic Integrated Circuits

AIM Photonics: Manufacturing Challenges for Photonic Integrated Circuits AIM Photonics: Manufacturing Challenges for Photonic Integrated Circuits November 16, 2017 Michael Liehr Industry Driving Force EXA FLOP SCALE SYSTEM Blades SiPh Interconnect Network Memory Stack HP HyperX

More information

Kotura Analysis: WDM PICs improve cost over LR4

Kotura Analysis: WDM PICs improve cost over LR4 Kotura Analysis: WDM PICs improve cost over LR4 IEEE P802.3bm - 40 Gb/s & 100 Gb/s Fiber Optic Task Force Sept 2012 Contributors: Mehdi Asghari, Kotura Samir Desai, Kotura Arlon Martin, Kotura Recall the

More information

Finisar Corporation Company Overview

Finisar Corporation Company Overview Finisar Corporation Company Overview January 2019 1 Safe Harbor This presentation contains forward-looking statements as defined under the Private Securities Litigation Act of 1995. Except for historical

More information

Setting the Test Standard for Tomorrow. Nasdaq: AEHR

Setting the Test Standard for Tomorrow. Nasdaq: AEHR Setting the Test Standard for Tomorrow Nasdaq: AEHR Forward Looking Statements This presentation contains forward-looking statements that involve risks and uncertainties relating to projections regarding

More information

LUXEON Z UV. design freedom in the industry s only micro-package UV LED GENERAL ILLUMINATION

LUXEON Z UV. design freedom in the industry s only micro-package UV LED GENERAL ILLUMINATION GENERAL ILLUMINATION LUXEON Z UV design freedom in the industry s only micro-package UV LED At 1/5 th the size of other ultraviolet and violet LEDs, LUXEON Z UV LEDs, a SMT device, can be assembled in

More information

March 5-8, 2017 Hilton Phoenix / Mesa Hotel Mesa, Arizona Archive Session 7

March 5-8, 2017 Hilton Phoenix / Mesa Hotel Mesa, Arizona Archive Session 7 March 5-8, 2017 Hilton Phoenix / Mesa Hotel Mesa, Arizona Archive Session 7 2017 BiTS Workshop Image: tonda / istock Copyright Notice The presentation(s)/poster(s) in this publication comprise the Proceedings

More information

Next Generation Transceivers: The Roadmap Component Driver Contributions from Roadmap team. Dominic O Brien Mike Schabel

Next Generation Transceivers: The Roadmap Component Driver Contributions from Roadmap team. Dominic O Brien Mike Schabel Next Generation Transceivers: The Roadmap Component Driver Contributions from Roadmap team Dominic O Brien Mike Schabel Outline New markets Key challenges Potential evolution Recommendations Fibre to the

More information

Silicon Based Packaging for 400/800/1600 Gb/s Optical Interconnects

Silicon Based Packaging for 400/800/1600 Gb/s Optical Interconnects Silicon Based Packaging for 400/800/1600 Gb/s Optical Interconnects The Low Cost Solution for Parallel Optical Interconnects Into the Terabit per Second Age Executive Summary White Paper PhotonX Networks

More information

10-GbE XFP and SFP+ Transceiver Modules

10-GbE XFP and SFP+ Transceiver Modules LXP-10G-MMLC LXP-10G-SMCL10 LXP-10G-CX4 Product Data Sheet 10-GbE XFP and SFP+ Transceiver Modules Overview The 10-GbE XFP and SFP+ Transceiver Modules enable you to take advantage of 10-GbE connectivity.

More information

Why Quality Depends on Big Data

Why Quality Depends on Big Data Why Quality Depends on Big Data Korea Test Conference Michael Schuldenfrei, CTO Who are Optimal+? 2 Company Overview Optimal+ provides Manufacturing Intelligence software that delivers realtime, big data

More information

WL-XXX FIBER-COUPLED MODULE DESIGN STRATEGY

WL-XXX FIBER-COUPLED MODULE DESIGN STRATEGY SLT Technology WL-XXX FIBER-COUPLED MODULE DESIGN STRATEGY The rest of the world (ROW) is focused on commercial applications where cost is the key factor. SLT focuses on military applications where performance

More information

Collaborative Alliance for Semiconductor Test (CAST) Special Interest Group (SIG) Rich Interactive Test Data Base (RITdb) 2017

Collaborative Alliance for Semiconductor Test (CAST) Special Interest Group (SIG) Rich Interactive Test Data Base (RITdb) 2017 Collaborative Alliance for Semiconductor Test (CAST) Special Interest Group (SIG) Rich Interactive Test Data Base (RITdb) 2017 Streaming RITdb is a new standard which is intended to go beyond STDF SEMI

More information

I N V E S T O R S P R E S E N T A T I O N

I N V E S T O R S P R E S E N T A T I O N I N V E S T O R S P R E S E N T A T I O N Rafi Amit, CEO Moshe Eisenberg, CFO November 2018 SAFE HARBOR The information presented today contains forward-looking statements that relate to anticipated future

More information

MDF4 Lib. Product Information

MDF4 Lib. Product Information Product Information Table of Contents 1 Overview...3 1.1 Introduction...3 1.2 Application Areas...3 1.3 Overview of Advantages...3 2 Features and Advantages...4 2.1 Supported MDF Versions...4 3 Functional

More information

Fiber backbone cabling in buildings

Fiber backbone cabling in buildings White paper Fiber backbone cabling in buildings www.commscope.com 1 Contents Introduction 3 Backbone cabling speeds 3 Optical fiber in the backbone 3 10 Gbps optical fiber backbone 3 Migrating to 40 Gbps

More information

Imaging, BiCMOS ASIC and Silicon Photonics. Eric Aussedat Executive Vice President General Manager, Imaging, Bi-CMOS ASIC and Silicon Photonics Group

Imaging, BiCMOS ASIC and Silicon Photonics. Eric Aussedat Executive Vice President General Manager, Imaging, Bi-CMOS ASIC and Silicon Photonics Group Imaging, BiCMOS ASIC and Silicon Photonics Eric Aussedat Executive Vice President General Manager, Imaging, Bi-CMOS ASIC and Silicon Photonics Group IBP Leading Position Targets 2 Image Sensors Solutions

More information

OP-SFP Gbps SFP+ Transceiver

OP-SFP Gbps SFP+ Transceiver 10.3Gbps SFP+ Transceiver Product Description The OP-SFP + -300 series multi-mode transceivers are SFP + module for bi-directional serial optical data communications such as10gbase-sr and 10GBASE-SW. It

More information

PRELIMINARY. LUXEON UV Superior Flux Density, Efficiency and Design Freedom. Introduction. Benefits. Features. Key Applications

PRELIMINARY. LUXEON UV Superior Flux Density, Efficiency and Design Freedom. Introduction. Benefits. Features. Key Applications LUXEON UV Superior Flux Density, Efficiency and Design Freedom in the Industry s Only Micro-Package UV LED Introduction At 1/5 the size of other ultraviolet and violet LEDs, LUXEON UV is the industry s

More information

LUXEON UV Superior Flux Density, Efficiency and Design Freedom

LUXEON UV Superior Flux Density, Efficiency and Design Freedom LUXEON UV Superior Flux Density, Efficiency and Design Freedom in the Industry s Only Micro-Package UV LED Introduction At 1/5 the size of other ultraviolet and violet LEDs, LUXEON UV is the industry s

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from David Culler, UC Berkeley CS252, Spr 2002

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from David Culler, UC Berkeley CS252, Spr 2002 Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from David Culler, UC Berkeley CS252, Spr 2002 course slides, 2002 UC Berkeley Some material adapted

More information

VCSEL EOS/ESD Considerations and Lifetime Optimization

VCSEL EOS/ESD Considerations and Lifetime Optimization VCSEL EOS/ESD Considerations and Lifetime Optimization Charlie Steidl csteidl@vixarinc.com Contents 1.0 Introduction... 2 2.0 VCSEL ESD Susceptibility and Protection... 2 3.0 ESD Control... 3 4.0 EOS Control

More information

Facebook: CWDM4-OCP. 100G Optical Transceiver Specification

Facebook: CWDM4-OCP. 100G Optical Transceiver Specification Facebook: CWDM4-OCP 100G Optical Transceiver Specification Authors: Katharine Schmidtke, Technical Sourcing Manager, Facebook Vincent Zeng, Supplier Quality Engineer, Facebook Abhijit Chakravarty, Hardware

More information

Burn-in & Test Socket Workshop

Burn-in & Test Socket Workshop Burn-in & Test Socket Workshop IEEE March 4-7, 2001 Hilton Mesa Pavilion Hotel Mesa, Arizona IEEE COMPUTER SOCIETY Sponsored By The IEEE Computer Society Test Technology Technical Council COPYRIGHT NOTICE

More information

Active Optical Cables. Dr. Stan Swirhun VP & GM, Optical Communications April 2008

Active Optical Cables. Dr. Stan Swirhun VP & GM, Optical Communications April 2008 Active Optical Cables Dr. Stan Swirhun VP & GM, Optical Communications April 2008 Supplier of Mixed Signal Products Supplier of Mixed Signal Communication Semiconductors, public $230M Medical Communications

More information

Trends in Optical Interconnects: Size, Power, Cost Jörg Wieland, GigOptix-Helix AG

Trends in Optical Interconnects: Size, Power, Cost Jörg Wieland, GigOptix-Helix AG Trends in Optical Interconnects: Size, Power, Cost Jörg Wieland, GigOptix-Helix AG SLN-Workshop on Optical Interconnects, 2010-10-28 Outline GigOptix and the HX Line A new SFP+ solution Conclusions 2 GigOptix

More information

1 of 5 12/31/2008 8:41 AM

1 of 5 12/31/2008 8:41 AM 1 of 5 12/31/2008 8:41 AM SAVE THIS EMAIL THIS Close All multimode fiber is not created equal By Robert Reid Bandwidth, reach, and cost are among the key factors you ll need to weigh. Multimode fiber cabling

More information

FUJITSU COMPONENT LIMITED

FUJITSU COMPONENT LIMITED FUJITSU COMPONENT LIMITED o-microgigacn 4-Channel Optical Transceiver Part Number of Module: FPD-10*R008-0E Figure 1: Over view Description Newly developed optical transceiver, FUJITSU COMPONENT s o-microgigacn

More information

Archive Keynote Address

Archive Keynote Address Proceedings Archive March 15-18, 2015 Hilton Phoenix / Mesa Hotel Mesa, Arizona Archive Keynote Address 2015 BiTS Workshop Image: BCFC/iStock Burn-in & Test Strategies Workshop www.bitsworkshop.org March

More information

II-VI to Acquire Finisar

II-VI to Acquire Finisar II-VI to Acquire Finisar Creates a Global Leader in Photonics and Compound Semiconductors November 9, 2018 Safe Harbor Statement This communication contains forward-looking statements within the meaning

More information

MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014

MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 Microsoft 70-463 Dumps Available Here at: /microsoft-exam/70-463-dumps.html Enrolling now you will get access to 216 questions in

More information

Gigabit Ethernet Fiber Media Converter - Compact - 850nm MM LC - 550m

Gigabit Ethernet Fiber Media Converter - Compact - 850nm MM LC - 550m Gigabit Ethernet Fiber Media Converter - Compact - 850nm MM LC - 550m Product ID: MCM1110MMLC This fiber media converter offers an easy, cost-effective way to extend your network over Gigabit fiber. It

More information

Eye-BERT 10G and Micro 10G Software Programming Guide

Eye-BERT 10G and Micro 10G Software Programming Guide Eye-BERT 10G and Micro 10G Software Programming Guide USB Driver: In order for Windows to recognize the Eye-BERT 10G / Eye-BERT Micro 10G the USB driver must first be installed, after which the Eye-BERT

More information

Using ASIC circuits. What is ASIC. ASIC examples ASIC types and selection ASIC costs ASIC purchasing Trends in IC technologies

Using ASIC circuits. What is ASIC. ASIC examples ASIC types and selection ASIC costs ASIC purchasing Trends in IC technologies Using ASIC circuits What is this machine? ASIC examples ASIC types and selection ASIC ASIC purchasing Trends in IC technologies 9.3.2004 Turo Piila 1 9.3.2004 Turo Piila 2 What is ASIC Floorplan and layout

More information

20762B: DEVELOPING SQL DATABASES

20762B: DEVELOPING SQL DATABASES ABOUT THIS COURSE This five day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL Server 2016 database. The course focuses on teaching individuals how to

More information

Making the Fiber-To-IP Video Connection

Making the Fiber-To-IP Video Connection American Fibertek Inc. White Paper: Making the Fiber-To-IP Video Connection As video surveillance technology continues the transition from analog to digital, a constant is the critical need for reliable

More information

Aberdeen Test Center. Non-Contact Recoil Measurements Ken McMullen ITEA Conference / Transducer Workshop 10 May 2011

Aberdeen Test Center. Non-Contact Recoil Measurements Ken McMullen ITEA Conference / Transducer Workshop 10 May 2011 Aberdeen Test Center Non-Contact Recoil Measurements Ken McMullen ITEA Conference / Transducer Workshop 10 May 2011 Half Century of Ballistic Recoil Measurements 1950s Continuous Rotating Potentiometer

More information

Microsoft. [MS20762]: Developing SQL Databases

Microsoft. [MS20762]: Developing SQL Databases [MS20762]: Developing SQL Databases Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft SQL Server Delivery Method : Instructor-led (Classroom) Course Overview This five-day

More information

20464 Developing Microsoft SQL Server Databases

20464 Developing Microsoft SQL Server Databases Course Overview This 5-day instructor-led course introduces SQL Server 2014 and describes logical table design, indexing and query plans. It also focuses on the creation of database objects including views,

More information

CIT 668: System Architecture

CIT 668: System Architecture CIT 668: System Architecture Computer Systems Architecture I 1. System Components 2. Processor 3. Memory 4. Storage 5. Network 6. Operating System Topics Images courtesy of Majd F. Sakr or from Wikipedia

More information

ic-hvxxxv 200 MHz LASER SWITCH preliminary WITH INTEGRATED POWER VCSEL ARRAY

ic-hvxxxv 200 MHz LASER SWITCH preliminary WITH INTEGRATED POWER VCSEL ARRAY Rev A1, Page 1/10 FEATURES VCSEL output from CW up to 200 MHz Integrated power VCSEL array Three independent channels for bias and pulse control TTL and LVDS inputs VCSEL array supply voltage up to 5.5

More information

Integrated Optical Devices

Integrated Optical Devices Integrated Optical Devices January 2017 Month 2015 Integrated Optical Devices Is Silicon Photonics a Disruptive Technology? Source: Luxtera with text added by LightCounting 7 Table of Contents Table of

More information

Interconnect Challenges in a Many Core Compute Environment. Jerry Bautista, PhD Gen Mgr, New Business Initiatives Intel, Tech and Manuf Grp

Interconnect Challenges in a Many Core Compute Environment. Jerry Bautista, PhD Gen Mgr, New Business Initiatives Intel, Tech and Manuf Grp Interconnect Challenges in a Many Core Compute Environment Jerry Bautista, PhD Gen Mgr, New Business Initiatives Intel, Tech and Manuf Grp Agenda Microprocessor general trends Implications Tradeoffs Summary

More information

Fiber Backbone Cabling in Buildings

Fiber Backbone Cabling in Buildings White Paper Fiber Backbone Cabling in Buildings www.commscope.com Contents Introduction 3 Backbone Cabling Speeds 3 Optical Fiber in the Backbone 4 b/s Optical Fiber Backbone 4 Migrating to 40 Gbps and

More information

Developing SQL Databases

Developing SQL Databases Course 20762B: Developing SQL Databases Page 1 of 9 Developing SQL Databases Course 20762B: 4 days; Instructor-Led Introduction This four-day instructor-led course provides students with the knowledge

More information

WORK IN PROGRESS A Multiplexed Many-Point PDV (MPDV) Techniques and Technologies

WORK IN PROGRESS A Multiplexed Many-Point PDV (MPDV) Techniques and Technologies DOE/NV/25946--1071 WORK IN ROGRESS A Multiplexed Many-oint DV (MDV) Techniques and Technologies Edward Daykin* Abel Diaz, Cenobio Gallegos, Carlos erez, Araceli Rutkowski (* Daykinep@NV.DOE.GOV) resented

More information

Team 1. Common Questions to all Teams. Team 2. Team 3. CO200-Computer Organization and Architecture - Assignment One

Team 1. Common Questions to all Teams. Team 2. Team 3. CO200-Computer Organization and Architecture - Assignment One CO200-Computer Organization and Architecture - Assignment One Note: A team may contain not more than 2 members. Format the assignment solutions in a L A TEX document. E-mail the assignment solutions PDF

More information

Absolute Maximum Ratings Parameter Symbol Min Max Unit Supply Voltage Vcc V Storage Temperature Ts C Technical Specifications Parameter

Absolute Maximum Ratings Parameter Symbol Min Max Unit Supply Voltage Vcc V Storage Temperature Ts C Technical Specifications Parameter 10G SFP+ AOC Checker Features 8.5G 9.95~11.1Gbps BERT Optical Power Meter:1270~1610nm SFP+ status checker Friendly graphic user interface (GUI) 2 SFP+ ports 5V DC power supply Small form & full metal case

More information

0,25 mm false pulse suppression 4 program options 4 program options on/off switchable 4 preset levels or level set by customer.

0,25 mm false pulse suppression 4 program options 4 program options on/off switchable 4 preset levels or level set by customer. Copy counters SCATEC Overview product family FLDM 170 FLDM 170 Overview Copy counters SCATEC SCATEC-15 SCATEC-10 Gripper measuring distance Sd 0... 120 mm 0... 90 mm 0... 60 mm 0... 120 mm optimum operating

More information

High Volume Manufacturing Supply Chain Ecosystem for 2.5D HBM2 ASIC SiPs

High Volume Manufacturing Supply Chain Ecosystem for 2.5D HBM2 ASIC SiPs Open-Silicon.com 490 N. McCarthy Blvd, #220 Milpitas, CA 95035 408-240-5700 HQ High Volume Manufacturing Supply Chain Ecosystem for 2.5D HBM2 ASIC SiPs Open-Silicon Asim Salim VP Mfg. Operations 20+ experience

More information

Future Trends One Mann s Opinion

Future Trends One Mann s Opinion Future Trends One Mann s Opinion Bill Mann General Chair - SWTW Southwest Test Workshop Newport Beach, CA 92663 949-645-3294 william.mann@ieee.org Future Trends One Mann s Opinion Relative Reduction in

More information

Fiber Optic Transmitters & Receivers SPACE PHOTONICS INC PROPRIETARY

Fiber Optic Transmitters & Receivers SPACE PHOTONICS INC PROPRIETARY Fiber Optic Transmitters & Receivers HMP4 Series 2.5Gbps Tx & Rx HMP MCM Products HMP MCM Transmitters, Receivers & Transceivers HMP4-Tx Available Configurations 1,2,3 & 4 Channel Transmitter 1,2,3 & 4

More information

LAAPTOF - Updates. AMS users meeting

LAAPTOF - Updates. AMS users meeting LAAPTOF - Updates AMS users meeting 2012 2013 1 Instrument AMS users meeting 2012 2013 2 Spectra (oxalic acid) AMS users meeting 2012 2013 3 Spectra (Arizona test dust) AMS users meeting 2012 2013 4 Data

More information

Datasheet. XENPAK Optical Transceiver Product Features XEN-10G-K010T31. Applications. Description. XENPAK 10 km transceiver 10G LR Ethernet

Datasheet. XENPAK Optical Transceiver Product Features XEN-10G-K010T31. Applications. Description. XENPAK 10 km transceiver 10G LR Ethernet XENPAK Optical Transceiver Product Features 1GBASE-LR/LW Ethernet 8.4 XENPAK 1 km LR XENPAK for SMF @ 1Gbps 131nm DFB+PIN Laser 1 km XENPAK C - 7 C Temperature - Extended/Industrial Available 2-Wire Interface

More information

Photonics Integration in Si P Platform May 27 th Fiber to the Chip

Photonics Integration in Si P Platform May 27 th Fiber to the Chip Photonics Integration in Si P Platform May 27 th 2014 Fiber to the Chip Overview Introduction & Goal of Silicon Photonics Silicon Photonics Technology Wafer Level Optical Test Integration with Electronics

More information

Moving Forward with the IPI Photonics Roadmap

Moving Forward with the IPI Photonics Roadmap Moving Forward with the IPI Photonics Roadmap TWG Chairs: Rich Grzybowski, Corning (acting) Rick Clayton, Clayton Associates Integration, Packaging & Interconnection: How does the chip get to the outside

More information

OEpic s Business Presentation

OEpic s Business Presentation OEpic s Business Presentation 10-40Gb/s InP OEICs OEpic, Inc. Sunnyvale, California June, 2001 OEpic s Vision Advanced EO / OE Integration Integrate the Best of Optical Components With Millimeter Wave

More information

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description.

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description. SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server 2016 Learn how to design and Implement advanced SQL Server 2016 databases including working with tables, create optimized

More information

Manual Trigger Sql Server 2008 Example Inserted Table

Manual Trigger Sql Server 2008 Example Inserted Table Manual Trigger Sql Server 2008 Example Inserted Table Oracle equivalent for SQL Server INSERTED and DELETED tables (find the msdn article here: msdn.microsoft.com/en-us/library/ms191300.aspx) Or else I

More information

QuickSpecs. Models. Features and Benefits Connectivity. HP V2124 Switch. HP V2124 Switch. Overview

QuickSpecs. Models. Features and Benefits Connectivity. HP V2124 Switch. HP V2124 Switch. Overview Overview Models J4868A Key features Unmanaged plug-and-play operation 24 10/100 ports One transceiver slot for 100Base-FX connectivity Rack mountable with included hardware Industry-leading warranty Product

More information

Increasing Bandwidth while Reducing Costs with the AOI Remote PHY Solution

Increasing Bandwidth while Reducing Costs with the AOI Remote PHY Solution Increasing Bandwidth while Reducing Costs with the AOI Remote PHY Solution Executive Summary This paper introduces the concept a Remote PHY Device (RPD) in cable operator (MSO) networks and describes how

More information

SFP28 Series Preliminary EOLP-8525G-02-RI. Features. Applications. Ordering information

SFP28 Series Preliminary EOLP-8525G-02-RI. Features. Applications. Ordering information EOLP-8525G-02-RI 850nm SFP28 Multi-Mode Transceiver, With Diagnostic Monitoring and Dual CDR Duplex SFP28 Transceiver, RoHS 6 Compliant Features Operating data rate up to 25.78Gbps 850nm VCSEL Distance

More information

Implementation of AOI in a High-Volume Manufacturing Environment

Implementation of AOI in a High-Volume Manufacturing Environment Implementation of AOI in a High-Volume Manufacturing Environment Presented By Robert Backie August Technology Corporation Southwest Region Sales Manager June 11, 2000 June 11, 2000 1 Overview Previous

More information

USING JMP TO AUTOMATE CAPACITY MODEL INPUT DERIVATION

USING JMP TO AUTOMATE CAPACITY MODEL INPUT DERIVATION JASON KINTZ ON SEMICONDUCTOR USING JMP TO AUTOMATE CAPACITY MODEL INPUT DERIVATION IN THE SEMICONDUCTOR MANUFACTURING INDUSTRY WWW.JASONKINTZ.COM USING JMP TO AUTOMATE CAPACITY MODEL INPUT DERIVATION IN

More information

Philips Lumileds 5630 Mid-Power LEDs

Philips Lumileds 5630 Mid-Power LEDs Illumination Portfolio Mid-power 5630 LEDs Optimized solutions for illumination applications Technical Datasheet DS201 Philips Lumileds 5630 Mid-Power LEDs Illumination Portfolio Introduction The Philips

More information

Addressable Test Chip Technology for IC Design and Manufacturing. Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03

Addressable Test Chip Technology for IC Design and Manufacturing. Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03 Addressable Test Chip Technology for IC Design and Manufacturing Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03 IC Design & Manufacturing Trends Both logic and memory

More information

CMOS Testing: Part 1. Outline

CMOS Testing: Part 1. Outline CMOS Testing: Part 1 Introduction Fault models Stuck-line (single and multiple) Bridging Stuck-open Test pattern generation Combinational circuit test generation Sequential circuit test generation ECE

More information

Scaling the Compute and High Speed Networking Needs of the Data Center with Silicon Photonics ECOC 2017

Scaling the Compute and High Speed Networking Needs of the Data Center with Silicon Photonics ECOC 2017 Scaling the Compute and High Speed Networking Needs of the Data Center with Silicon Photonics ECOC 2017 September 19, 2017 Robert Blum Director, Strategic Marketing and Business Development 1 Data Center

More information

High Versatility High Throughput Functional Testing. Robert Polster, David Calhoun, Keren Bergman

High Versatility High Throughput Functional Testing. Robert Polster, David Calhoun, Keren Bergman High Versatility High Throughput Functional Testing Robert Polster, David Calhoun, Keren Bergman Challenges of High-Throughput Functional Testing for Scalable Manufacturing Numerous Functional Applications

More information

Automotive forward lighting source

Automotive forward lighting source AUTOMOTIVE LUXEON Altilon SMD Automotive forward lighting source LUXEON Altilon SMD is specifically designed and tested to meet and exceed expectations for reliability, performance, and lifetime in automotive

More information

Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 10 km

Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 10 km Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 10 km Product ID: ET91000SM10 This Gigabit Ethernet to fiber media converter is a cost-effective way to extend your network, or extend the distance

More information

Sepand Gojgini. ColumnStore Index Primer

Sepand Gojgini. ColumnStore Index Primer Sepand Gojgini ColumnStore Index Primer SQLSaturday Sponsors! Titanium & Global Partner Gold Silver Bronze Without the generosity of these sponsors, this event would not be possible! Please, stop by the

More information

High-bandwidth CX4 optical connector

High-bandwidth CX4 optical connector High-bandwidth CX4 optical connector Dubravko I. Babić, Avner Badihi, Sylvie Rockman XLoom Communications, 11 Derech Hashalom, Tel-Aviv, Israel 67892 Abstract We report on the development of a 20-GBaud

More information

Semiconductor Manufacturing Market Outlook: Fundamentals Point to Growth

Semiconductor Manufacturing Market Outlook: Fundamentals Point to Growth Semiconductor Manufacturing Market Outlook: Fundamentals Point to Growth 3Q03 Semiconductor and Electronics Manufacturing Forecast San Jose, California 8 July 2003 Presenters: Klaus-Dieter Rinnen Mary

More information

OM5 versus OM4 Solution concepts and potential applications WHITEPAPER

OM5 versus OM4 Solution concepts and potential applications WHITEPAPER OM5 versus OM4 Solution concepts and potential applications The OM5 fiber is the latest member in the 50 µm multimode fiber family. The reason for the development of this new fiber type is that the continuous

More information

TSV Test. Marc Loranger Director of Test Technologies Nov 11 th 2009, Seoul Korea

TSV Test. Marc Loranger Director of Test Technologies Nov 11 th 2009, Seoul Korea TSV Test Marc Loranger Director of Test Technologies Nov 11 th 2009, Seoul Korea # Agenda TSV Test Issues Reliability and Burn-in High Frequency Test at Probe (HFTAP) TSV Probing Issues DFT Opportunities

More information

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc.

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc. INDUSTRIAL CONTROL COMMUNICATIONS, INC. EtherNet/IP Client Driver Manual October 30, 2014 2014 Industrial Control Communications, Inc. TABLE OF CONTENTS 1 EtherNet/IP Client... 2 1.1 Overview... 2 1.2

More information

1.25Gbps SFP Transceiver

1.25Gbps SFP Transceiver SFP-GE-S-EO 1.25Gbps SFP Transceiver Features Operating data rate up to 1.25Gbps 850nm VCSEL Laser Transmitter 550m with 50/125 µm MMF, 300m on 62.5/125 µm MMF Single 3. 3V Power supply and TTL Logic Interface

More information

Optional integrated laser alignment facilitates simple, fast alignment for long distances or when using mirrors. Stone production Automotive industry

Optional integrated laser alignment facilitates simple, fast alignment for long distances or when using mirrors. Stone production Automotive industry Technical data overview Operating range 0.5 20 m 15 70 m Number of beams, type dependent 2 8 Beam distance, type dependent 300 mm, 400 mm, 450 mm, 500 mm, 600 mm Type according to EN 61 496 Type 4 Enclosure

More information

Leaders in the Advancement of Multimode Fiber. Fiber Future and Beyond

Leaders in the Advancement of Multimode Fiber. Fiber Future and Beyond Leaders in the Advancement of Multimode Fiber Fiber Future and Beyond Major Milestones in the Advancement of Multimode Fiber (MMF) Transmission OM4 Signature Core Fiber Cabling TIA WBMMF ISO/IEC OM5 (WBMMF)

More information

Platinum OEM Series. Datasheet PSFP-MR2T85M300. SFP Optical Transceiver Product Features. Applications. Description

Platinum OEM Series. Datasheet PSFP-MR2T85M300. SFP Optical Transceiver Product Features. Applications. Description Designed for OEM networks such as Cisco, HP, Juniper, Brocade, Alcatel etc. SFP Optical Transceiver Product Features Exclusive Japanese OSAs for Ultimate Reliability SONET OC-48 / STM-16 9 SFP 3m SX SFP

More information

Integrated Optical Devices

Integrated Optical Devices Integrated Optical Devices May 2018 Integrated Optical Devices 2017 a good year for Silicon Photonics, a fantastic year for integrated InP and GaAs optics Source: Luxtera with text added by LightCounting

More information

Keeping up to Speed with High Data Rate Fiber Solutions. Eric Leichter Manager, Training and Technology

Keeping up to Speed with High Data Rate Fiber Solutions. Eric Leichter Manager, Training and Technology Keeping up to Speed with High Data Rate Fiber Solutions Eric Leichter Manager, Training and Technology Keeping up to Speed with High Data Rate Fiber Solutions Global Standards Update OM4 Optical Fiber

More information

Measurement and Simulation of a High- Speed Electro/Optical Channel

Measurement and Simulation of a High- Speed Electro/Optical Channel TITLE Measurement and Simulation of a High- Speed Electro/Optical Channel Shirin Farrahi, (Oracle) Image Michael Cina (TE Connectivity), Jeffery Marquart (TE Connectivity), Andrei Kaikkonen (TE Connectivity),

More information

IC Testing and Development in Semiconductor Area

IC Testing and Development in Semiconductor Area IC Testing and Development in Semiconductor Area Prepare by Lee Zhang, 2004 Outline 1. Electronic Industry Development 2. Semiconductor Industry Development 4Electronic Industry Development Electronic

More information

Flexible integration into mixed network environments. Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 20 km. StarTech ID: ET91000SM20

Flexible integration into mixed network environments. Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 20 km. StarTech ID: ET91000SM20 Gigabit Ethernet Copper-to-Fiber Media Converter - SM LC - 20 km StarTech ID: ET91000SM20 This Gigabit Ethernet to fiber media converter is a cost-effective way to extend your network, or extend the distance

More information

X2 Single Fiber 10 km transceiver Cisco Compatible 10G LR Ethernet Designed for OEM networks such as Cisco, HP, Juniper, Brocade, Alcatel etc.

X2 Single Fiber 10 km transceiver Cisco Compatible 10G LR Ethernet Designed for OEM networks such as Cisco, HP, Juniper, Brocade, Alcatel etc. Designed for OEM networks such as Cisco, HP, Juniper, Brocade, Alcatel etc. X2 Optical Transceiver Product Features Exclusive Japanese OSAs for Ultimate Reliability 1GBASE-LR/LW Ethernet 9 X2 1 km LR X2

More information

Announcement Harsh Environment Fiber Optic (HEFO) Market Forecast February 2018 ElectroniCast Consultants

Announcement Harsh Environment Fiber Optic (HEFO) Market Forecast February 2018 ElectroniCast Consultants Announcement Harsh Environment Fiber Optic Components & Related Device/Parts Global Technology and Market Forecast 2017-2027 February 26, 2018 Harsh Environment Fiber Optic (HEFO) Components & Related

More information

Datasheet. XFP Optical Transceiver Product Features XFP-10G-K010B33. Applications. Description. XFP Single Fiber 10 km transceiver 10G LR Ethernet

Datasheet. XFP Optical Transceiver Product Features XFP-10G-K010B33. Applications. Description. XFP Single Fiber 10 km transceiver 10G LR Ethernet XFP Optical Transceiver Product Features 10GBASE-LR/LW Ethernet 9 XFP 10 km LR XFP for SMF @ 10Gbps 1330Tx-1270Rx DFB+PIN Laser 10 km XFP 0 C - 70 C Temperature - Extended/Industrial Available 2-Wire Interface

More information

RgBLase LLC P/N: FB 671 XXX Diode Pumped Solid State Laser Module

RgBLase LLC P/N: FB 671 XXX Diode Pumped Solid State Laser Module Key Features: 671nm output, TEM00 Fiber Coupled (optional) Remote control TTL Modulation (optional) ESD protection Plug & Play Low Noise (optional) Applications: Bio Technology Photo Finishing Semiconductor

More information

panasonic.net/id/pidsx/global CCD The sensor can be used for various applications with its binary data output with four different sensing modes.

panasonic.net/id/pidsx/global CCD The sensor can be used for various applications with its binary data output with four different sensing modes. 1123 PHOTO PHOTO PARTICUR Type Edge Sensor SERIES Related Information General terms and conditions... F-3 About laser beam... P.1593~ guide... P.1021~ General precautions... P.1595 Conforming to FDA regulations

More information

Installing and Upgrading Internal Modules and FRUs

Installing and Upgrading Internal Modules and FRUs Installing and Upgrading Internal Modules and FRUs, page 1 This document describes how to install and upgrade internal modules and field replaceable units (FRUs) in the Cisco 1100 Series Integrated Services

More information

"Charting the Course... MOC C: Developing SQL Databases. Course Summary

Charting the Course... MOC C: Developing SQL Databases. Course Summary Course Summary Description This five-day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL database. The course focuses on teaching individuals how to use

More information

Archive 2017 BiTS Workshop- Image: Easyturn/iStock

Archive 2017 BiTS Workshop- Image: Easyturn/iStock Archive September 6-7, 2017 InterContinental Shanghai Pudong Hotel - Shanghai, China Archive 2017 BiTS Workshop- Image: Easyturn/iStock September 6-7, 2017 Archive COPYRIGHT NOTICE This multimedia file

More information

Optics in Open Networks

Optics in Open Networks Optics in Open Networks NANOG 72 Atlanta, February 2018 Christian Urricariet Finisar Finisar Corporation 1 Agenda How can optical transceivers be managed in an open networking environment? Open standards

More information

Tomasz Libera. Azure SQL Data Warehouse

Tomasz Libera. Azure SQL Data Warehouse Tomasz Libera Azure SQL Data Warehouse Thanks to our partners! About me Microsoft MVP Data Platform Microsoft Certified Trainer SQL Server Developer Academic Trainer datacommunity.org.pl One of the leaders

More information

Microsoft Developing SQL Databases

Microsoft Developing SQL Databases 1800 ULEARN (853 276) www.ddls.com.au Length 5 days Microsoft 20762 - Developing SQL Databases Price $4290.00 (inc GST) Version C Overview This five-day instructor-led course provides students with the

More information

More Precision. optoncdt // Laser displacement sensors (triangulation)

More Precision. optoncdt // Laser displacement sensors (triangulation) More Precision optoncdt // Laser displacement sensors (triangulation) 12 Smart triangulation displacement sensor of laser class 1 optoncdt 1420 CL1 Ideal for serial and OEM applications Laser class 1 Compact

More information

Company Presentation Optical Components

Company Presentation Optical Components Company Presentation Optical Components A selection of our partners 2 A selection of our partners 3 Optical Technologies Fiber Optics components & fiber optic assemblies Precision optics Acousto-optics

More information

Fundamentals, Design, and Implementation, 9/e Copyright 2004 Database Processing: Fundamentals, Design, and Implementation, 9/e by David M.

Fundamentals, Design, and Implementation, 9/e Copyright 2004 Database Processing: Fundamentals, Design, and Implementation, 9/e by David M. Chapter 5 Database Design Elements of Database Design Fundamentals, Design, and Implementation, 9/e Chapter 5/2 The Database Design Process Create tables and columns from entities and attributes Select

More information