Creating a Web Service that Accesses Data from Two Data Objects

Size: px
Start display at page:

Download "Creating a Web Service that Accesses Data from Two Data Objects"

Transcription

1 Creating a Web Service that Accesses Data from Two Data Objects Informatica

2 Abstract You can create a web service to provide web service clients access to data integration functionality. This article describes the steps to create a web service that provides web service clients access to data that is stored in a physical and a logical data object. Supported Versions Informatica Data Services HotFix 4 Table of Contents Overview Scenario Prerequisites Configuration Tasks Step 1. Create a Web Service Object Step 2. Configure the Customer Lookup Transformation Step 3. Configure the Order Lookup Transformation Step 4. Link Ports and Validate the Operation Mapping Step 5. Test the Operation Mapping Step 6. Deploy the Web Service to a Data Integration Service Step 7. Provide Connectivity Information to the Web Service Client Overview You can create a web service in the Developer tool to provide web service clients access to data integration functionality through a web service interface. A web service can have one or more operations. Each operation defines an action that the web service client can perform when the web service client connects to the web service. Web service operations include requests for information, requests to update data, or requests to perform tasks. For example, a web service client sends a SOAP request to run a web service operation called getcustomerorders. The web service client passes a customer ID in the request. The web service retrieves the customer and the order information. The web service returns the information to the web service client in a SOAP response. In the Developer tool, each operation corresponds to an operation mapping. The Data Integration Service processes the SOAP message based on how you configure the operation mapping. An operation mapping can consist of an Input transformation, an Output transformation, a Fault transformation, or other transformation types. You configure the Input transformation to parse SOAP messages. You configure the Output transformation and the Fault transformation to generate SOAP messages. Scenario Hypostores customer service representatives want to access customer data from the Los Angeles and Boston offices over a network. The customer service representatives want to view customer and order information based on the customer ID. A developer in the IT department has combined the data for the Los Angeles and Boston customer offices in a logical data object. Order information is available in a flat file. 2

3 The developer can create a web service that accepts a customer ID, looks up customer data in the logical data object, looks up order data in the flat file, and returns the customer and order details. Then, the developer can deploy an application containing the web service to a Data Integration Service. The administrator can provide the WSDL file to customer service so that customer service can connect to the web service. Prerequisites To implement the scenario, you must configure the operation mapping to look up data from a logical data object and a flat file data object. The steps in this scenario assume you created the following objects: Logical data object "Customers." To create the Customers logical data object, see "Tutorial Lesson 3: Creating a Logical View of Data" in the Data Services Getting Started Guide. Flat file physical data object "Orders." To create the Orders physical data object, import the orders.csv file from the tutorial files directory. For more information about creating logical and physical data objects, see the Data Services Getting Started Guide. Configuration Tasks To implement the scenario, you must create a web service object, configure the operation mapping, and deploy the web service to a Data Integration Service. After you deploy the web service, you can provide the web service connectivity information to customer service. 1. Create a web service object. 2. Configure a Lookup transformation to look up customer data. 3. Configure a Lookup transformation to look up order data. 4. Link ports and validate the operation mapping. 5. Test the operation mapping. 6. Deploy the web service object to the Data Integration Service. 7. Provide connectivity information to the web service client. Step 1. Create a Web Service Object Use the Developer tool to create a web service and create one or more web service operations. When you create an operation you can define the elements of the operation input, operation output, and operation faults. The Developer tool generates the contents of a WSDL file based on the web service properties and the operations that you define. You can preview the contents of a WSDL file after you create the web service. For this scenario, create one operation. Configure the operation input to receive a customer ID from a SOAP request. Configure the operation output to send a SOAP response that includes customer information and order information. 1. Open the project in which you want to create the web service. 2. Click File > New > Data Service. The New dialog box appears. 3

4 The following figure shows the New dialog box: 3. Select Web Service and click Next. The New Web Service dialog box appears. The following figure shows the New Web Service dialog box: 4. Enter the web service name. For this scenario, create a web service with the name WS_getCustomerByID. 5. Click Next. The Add Operations to Web Service page of the New Web Service dialog box appears. 6. Click the New button above the navigation pane. The wizard creates an empty operation input and an empty operation output. 7. Enter the operation name. The Developer tool uses the name you provide for the operation to define the names for the operation input and the operation output. For this scenario, create an operation with the name getcustomerbyid. 8. In the navigation pane, click getcustomerbyid_input to define the elements of the operation input. The operation input properties appear on the right side of the dialog box. 9. Define elements and child elements for operation input. SOAP requests for this operation can include the elements that you define for the operation input. To create an element, click the arrow next to the New button and select Element. Then, enter the element name. For this scenario, create an element with the name customerid. To change the element type, click the Type column of the element, click the Open button, and then browse to select the type. For this scenario, change the element type to integer. 4

5 The following figure shows the customerid element: 10. Click the Mapping Input tab to map data from the operation input to the output ports. By default, the Developer tool creates an output port for each element. The Developer tool also configures the node to port relationships. In this scenario, the Developer tool maps the customerid node to the customerid output port. Change the output port type to integer. The following figure shows the mapping between the customerid node and the customerid output port: 11. Click getcustomerbyid _Output to define the elements of the operation output. The operation output properties appear on the right side of the dialog box. 12. Define the elements and child elements for the operation output. To add a child element, select an element, click the arrow next to the New button and select Child Element. The SOAP responses include the elements that you define for the operation output. 5

6 For this scenario, enter the following elements and child elements: customerid (integer) customername (string) customerorders customerid (integer) orderid (integer) OrderContact (string) 13. Configure the minimum and the maximum number of occurrences for each element. Tip: When an element may occur more than one time in the SOAP response, configure a value greater than one for the Maximum Occurs column. In this scenario, a customer can have multiple orders. Therefore, set the maximum number of occurrences for the customerorders element to unbounded. The following figure shows the operation output elements: 14. Click the Mapping Output tab to map data from the input ports to the operation output. By default, the Developer tool creates an input port for each element. The Developer tool also configures the port to node relationships. In this scenario, the Developer tool configures the following port to node relationships: Port Name getcustomerbyidresponse getcustomerbyidresponse > customerid getcustomerbyidresponse > customername customerorders customerorders > customerid Operation Output Node Name Response > getcustomerbyidresponse Response > getcustomerbyidresponse > customerid Response > getcustomerbyidresponse > customername Response > getcustomerbyidresponse > customerorders Response > getcustomerbyidresponse > customerorders > customerid 6

7 Port Name customerorders > orderid customerorders > ordercontact Operation Output Node Name Response > getcustomerbyidresponse > customerorders > orderid Response > getcustomerbyidresponse > customerorders > ordercontact For the ID ports, change the input port type to integer. For the string ports, change the input port precision to Define the key relationships between elements. Because the order information can occur more than once in the operation output message, you need to use the customer ID as a key. In this scenario, the customerid relates the customer detail information to the customer order information. Therefore, customerid is a foreign key in the CustomerOrders node. To define the key relationships, configure the following additional port to node relationships: Port Name getcustomerbyidresponse > customerid customerorders > customerid Operation Output Node Name Response > getcustomerbyidresponse > Key_ getcustomerbyidresponse Response > getcustomerbyidresponse > customerorders > FKey_ getcustomerbyidresponse The following figure shows the mapping between the ports and the operation output nodes: 16. Click Finish. The Developer tool creates the web service object and an operation mapping for the operation. The operation mapping contains an Input transformation and an Output transformation. 7

8 Step 2. Configure the Customer Lookup Transformation Create and configure a Lookup transformation to look up data in a logical data object. For this scenario, create and configure a logical data object Lookup transformation to return the customer name for a particular customer ID. 1. In the Outline view, select the operation mapping. The Developer tool displays the operation mapping in the editor. 2. In the Object Explorer view, select a logical data object, and drag it to the editor. For this scenario, select and drag the Customer logical data object to the editor. Customer is a logical data object that combines the customer information from the LA and Boston offices. The Add to Mapping dialog box appears. 3. Select Lookup and click OK. Customer appears in the editor as a Lookup transformation. 4. Add a source port to the Lookup transformation. For this scenario, select the customerid column in the Input transformation and drag it to the Source Ports group in the Lookup_Customer transformation. The following figure shows the Lookup_Customer transformation with the linked source port: 5. In the editor, select the logical data object Lookup transformation. 6. To configure the lookup condition, select the Lookup tab in the Properties view and click the New (Insert) button. For this scenario, the following default lookup condition appears: CUSTOMER_ID = customerid. The following figure shows the lookup condition: 7. Click File > Save. 8

9 Step 3. Configure the Order Lookup Transformation Create and configure a Lookup transformation to look up order data. For this scenario, create and configure a logical data object Lookup transformation to return the customer name for a particular customer ID. 1. In the Object Explorer view, select a flat file data object, and drag it to the editor. For this scenario, select and drag the Orders flat file physical data object to the editor. Orders is a flat file physical data object that contains order information. The Add to Mapping dialog box appears. 2. Select Lookup and click OK. Orders appears in the editor as a Lookup transformation. 3. Add a source port to the Lookup transformation. For this scenario, select the customerid column in the Input transformation and drag it to the Source Ports group in the Lookup_Orders transformation. 4. In the editor, select the flat file physical data object Lookup transformation. 5. Select the General tab in the Properties view and set On multiple matches to Return all rows. For this scenario, set the property to return all rows, if there is more than one record that matches the lookup condition. 6. To configure the lookup condition, select the Lookup tab in the Properties view and click the New (Insert) button. For this scenario, configure the following lookup condition: Customer_ID=customerID. 7. Click File > Save. Step 4. Link Ports and Validate the Operation Mapping Link ports from the Lookup transformations to the Output transformation to define the flow of data. Then validate the mapping. 1. Link ports from the Lookup Columns groups of the Lookup transformations to the Input groups of the Output transformation. The following figure shows the operation mapping: 2. Right-click an empty area in the editor and click Validate. The Developer tool displays a message to indicate that it found no validation errors. 9

10 3. Click OK. 4. Click File > Save. Step 5. Test the Operation Mapping Test the operation mapping to verify that the operation mapping generates the expected SOAP response for a particular SOAP request. In the Data Viewer view, you can enter a SOAP request in the Input window and view the SOAP response in the Output window. For this scenario, test the operation mapping by providing a customer ID as input and previewing the customer details and the order details in the output. 1. Click an empty area in the editor. 2. Select thedata Viewer view. 3. In the Input window, replace the question mark (?) in the SOAP body with the data that the SOAP request contains. For this scenario, replace the question mark (?) with is a customer ID that appears in both the Customer logical data object and Order physical data object. 4. Click Run. The Output window displays the SOAP response based on the customer ID that you entered. The following figure shows the input and the SOAP response: Step 6. Deploy the Web Service to a Data Integration Service Deploy the web service to a Data Integration Service so that web service clients can connect to the web service. To deploy a web service, add the web service to an application and deploy the application to the Data Integration Service. 1. In the Object Explorer, select the web service object. 2. Right-click and select Deploy. The Deploy dialog box appears. 10

11 The following figure shows the Deploy dialog box: 3. Click Browse to select the domain which runs the Data Integration Service that runs the web service. 4. Select the Data Integration Service. 5. Click Next. 6. Enter the application name. 7. Click Finish. The Developer tool creates the application. Step 7. Provide Connectivity Information to the Web Service Client The WSDL contains the information that web service clients require to connect to a web service. Provide the web service clients the WSDL URL. When you access the WSDL URL, you can see the contents of the WSDL. 1. Login to the Administrator tool. 2. Select the Data Integration Service in the Navigator. 3. Select the Application view of the Data Integration Service. 4. Expand the application name in the top panel and select the web service. 5. Find the WSDL URL in the web service Properties view. For this scenario, send customer service the WSDL URL. Authors Padma Heid Lead Technical Writer Lori Troy Senior Technical Writer 11

12 Acknowledgements The authors would like to acknowledge Sumeet Kumar Agrawal, Thiagarajan Sundaramurthy, and Ellen Chandler for their technical assistance. 12

Using Faults in a Web Service Operation Mapping

Using Faults in a Web Service Operation Mapping Using Faults in a Web Service Operation Mapping 2011 Informatica Abstract You can configure a web service operation mapping with multiple Fault transformations in Informatica Developer. Each Fault transformation

More information

Creating a Column Profile on a Logical Data Object in Informatica Developer

Creating a Column Profile on a Logical Data Object in Informatica Developer Creating a Column Profile on a Logical Data Object in Informatica Developer 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Creating an Avro to Relational Data Processor Transformation

Creating an Avro to Relational Data Processor Transformation Creating an Avro to Relational Data Processor Transformation 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Optimizing the Data Integration Service to Process Concurrent Web Services

Optimizing the Data Integration Service to Process Concurrent Web Services Optimizing the Data Integration Service to Process Concurrent Web Services 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Tutorial 1. Creating a Database

Tutorial 1. Creating a Database Tutorial 1 Creating a Database Microsoft Access 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and save a

More information

Using Synchronization in Profiling

Using Synchronization in Profiling Using Synchronization in Profiling Copyright Informatica LLC 1993, 2017. Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Creating a Subset of Production Data

Creating a Subset of Production Data Creating a Subset of Production Data 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Using the Normalizer Transformation to Parse Records

Using the Normalizer Transformation to Parse Records Using the Normalizer Transformation to Parse Records 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Importing Flat File Sources in Test Data Management

Importing Flat File Sources in Test Data Management Importing Flat File Sources in Test Data Management Copyright Informatica LLC 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United States

More information

Dealing with Event Viewer

Dealing with Event Viewer Dealing with Event Viewer Event Viewer is a troubleshooting tool in Microsoft Windows 2000.This how-to article will describe how to use Event Viewer. Event Viewer displays detailed information about system

More information

Converting Relational Input into Hierarchical Output using Google BigQuery Connector

Converting Relational Input into Hierarchical Output using Google BigQuery Connector Converting Relational Input into Hierarchical Output using Google BigQuery Connector Copyright Informatica LLC 2017. Informatica, the Informatica logo, and Informatica Cloud are trademarks or registered

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

More information

Tutorial 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

More information

MAIL MERGE LABELS USE THE MAIL MERGE WIZARD

MAIL MERGE LABELS USE THE MAIL MERGE WIZARD MAIL MERGE LABELS USE THE MAIL MERGE WIZARD When working with the Mail Merge feature, it is possible to create several types of documents, such as labels. In this document, information on how to set up

More information

Microsoft Word 2010: Using Mail Merge

Microsoft Word 2010: Using Mail Merge CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010: Using Mail Merge Summer 2013, Version 1.1 Table of Contents Introduction...2 Using the Mail Merge Wizard...2

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Creating an Analyst Viewer User and Group

Creating an Analyst Viewer User and Group Creating an Analyst Viewer User and Group 2010 Informatica Abstract This article describes how to create an analyst viewer user and group. Create an analyst viewer group in the Administrator tool to grant

More information

Enterprise Integration

Enterprise Integration Departamento de Engenharia Informática Enterprise Integration Asynchronous BPEL process Tutorial IE 2016 In this tutorial, we shall create an asynchronous BPEL process in JDeveloper 11g, deploy and test

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD When working with the Mail Merge feature, it is possible to create several types of documents, such as directories. A directory is a list of the data in the

More information

Enterprise Integration

Enterprise Integration Departamento de Engenharia Informática Enterprise Integration BPEL Tutorial IE 2016 In this tutorial, we shall create a simple BPEL process in JDeveloper 11g, deploy and test the SOA application. 1. Open

More information

How to Use Full Pushdown Optimization in PowerCenter

How to Use Full Pushdown Optimization in PowerCenter How to Use Full Pushdown Optimization in PowerCenter 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1 Word 2010 Using Mail Merge Introduction Page 1 Mail merge is a useful tool that will allow you to easily produce multiple letters, labels, envelopes, name tags and more using information stored in a list,

More information

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Power BI Desktop In this tutorial, you will learn how to import a table of data from a Web page and create

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial Departamento de Engenharia Informática Systems Integration Web Services and BPEL Tutorial IE 2016 In this tutorial, we shall create a Web service in Java that validates a credit card number. In addition,

More information

Website Administration Manual, Part One

Website Administration Manual, Part One Website Administration Manual, Part One A Guide to the CMS & Widgets Curry School of Education Website http://curry.virginia.edu The Curry Website Administrators Manual - Part One 2 The CMS The content

More information

Database to XML Wizard

Database to XML Wizard Database to XML Wizard Jitterbit Connect TM provides a fast, easy route to data transformation. This is made possible through a wizard-based integration tool built directly into Jitterbit. The wizard executes

More information

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1:

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1: Mail Merge When you are performing a Mail Merge, you will need a Word document (you can start with an existing one or create a new one), and a recipient list, which is typically an Excel workbook. Watch

More information

Performing Lineage Analysis on Custom Metadata in Metadata Manager 8.5

Performing Lineage Analysis on Custom Metadata in Metadata Manager 8.5 Performing Lineage Analysis on Custom Metadata in Metadata Manager 8.5 2008 Informatica Corporation Overview In Metadata Manager 8.5, you can create object-level relationships between custom resource objects

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

Open Microsoft Word: click the Start button, click Programs> Microsoft Office> Microsoft Office Word 2007.

Open Microsoft Word: click the Start button, click Programs> Microsoft Office> Microsoft Office Word 2007. Microsoft Word 2007 Mail Merge Letter The information below is devoted to using Mail Merge to create a letter in Microsoft Word. Please note this is an advanced Word function, you should be comfortable

More information

Creating Column Profiles on LDAP Data Objects

Creating Column Profiles on LDAP Data Objects Creating Column Profiles on LDAP Data Objects Copyright Informatica LLC 1993, 2017. Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

SMART Recorder. Record. Pause. Stop

SMART Recorder. Record. Pause. Stop SMART Recorder The recorder is used to record actions that are done on the interactive screen. If a microphone is attached to the computer, narration can be recorded. After the recording has been created,

More information

You can clear the sample data from the table by selecting the table and pressing Delete.

You can clear the sample data from the table by selecting the table and pressing Delete. Making Quick Tables Choose Insert tab. Then click Table. Then click Quick Tables. Select the style of table from the Quick Tables Gallery. You can clear the sample data from the table by selecting the

More information

3. Click the Change Case button. 4. On the menu, click the desired case option. Managing Document Properties

3. Click the Change Case button. 4. On the menu, click the desired case option. Managing Document Properties PROCEDURES LESSON 20: CHANGING CASE AND MANAGING DOCUMENT PROPERTIES Using Uppercase Mode 1 Press the Caps Lock key 2 Type the desired text in all caps Showing Caps Lock on the Status Bar 1 Right-click

More information

WorldShip Import Customer Addresses. Table of Contents

WorldShip Import Customer Addresses. Table of Contents Table of Contents using the Import/Export Wizard... 2 using the Connection Assistant... 9 Copyright 2016, United Parcel Service of America, Inc. All rights reserved. 1 using the Import/Export Wizard Note:

More information

nvision Custom Report Writer

nvision Custom Report Writer nvision Custom Report Writer 1. Select the table from the selection and click design financialservices@btboces.org (607) 766-3936 Page 1 2. Double click on each field you would like in your report. Then

More information

GETTING STARTED FINDING VIDEOS:

GETTING STARTED FINDING VIDEOS: GETTING STARTED Tip 1: Watch Films on Demand Tutorials located on the Films on Demand Help page to become acquainted with the basics of the database. To use the database from off campus: 1) login with

More information

Lessons 1, 2, 3. Lessons 1, 2, 3. Creating and Printing a Presentation. Rajendra Bandi, CIS, FGCU 1. view & change presentation in different views

Lessons 1, 2, 3. Lessons 1, 2, 3. Creating and Printing a Presentation. Rajendra Bandi, CIS, FGCU 1. view & change presentation in different views Lessons 1, 2, 3 Creating and Printing a Presentation Rajendra Bandi, CIS, FGCU 1 Learn how to: Create a presentation using AutoContent Wizard Template view & change presentation in different views slide

More information

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it.

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it. Page 1 of 5 Working with SQL Server Management Studio SQL Server Management Studio (SSMS) is the client tool you use to both develop T-SQL code and manage SQL Server. The purpose of this section is not

More information

Instructions: DRDP Online Child Upload

Instructions: DRDP Online Child Upload Instructions: DRDP Online Child Upload Version 1.00 10/29/2018 Table of Contents Introduction... 2 Upload Roles... 2 Upload Template... 2 Entering Data into the Template... 3 Uploading to DRDP Online...

More information

Highlight the s address (example: and go to the top of the page and click on Insert

Highlight the  s address (example: and go to the top of the page and click on Insert Contents Linking an email address... 2 LINK AN IMAGE... 2 TO LINK TO A DOCUMENT... 3 How to update the Quick Links.... 6 Changing out a Quick link.... 9 LINKS Linking an email address Highlight the emails

More information

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1 User Guide Informatica PowerExchange for Microsoft Azure Blob Storage User Guide 10.2 HotFix 1 July 2018 Copyright Informatica LLC

More information

Creating a REST API which exposes an existing SOAP Service with IBM API Management

Creating a REST API which exposes an existing SOAP Service with IBM API Management Creating a REST API which exposes an existing SOAP Service with IBM API Management 3.0.0.1 Page 1 of 29 TABLE OF CONTENTS OBJECTIVE...3 PREREQUISITES...3 CASE STUDY...3 USER ROLES...4 BEFORE YOU BEGIN...4

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

Using ILOG JRules in WebSphere Integration Developer

Using ILOG JRules in WebSphere Integration Developer Using ILOG JRules in WebSphere Integration Developer Table of Contents Introduction... 3 Goal... 3 Time to Complete... 3 Prerequisites... 3 System Setup... 3 Resources... 3 Overview... 4 The Application...

More information

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears.

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears. Word 2010 Text Basics Introduction Page 1 It is important to know how to perform basic tasks with text when working in a word processing application. In this lesson you will learn the basics of working

More information

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

Generating Credit Card Numbers in Test Data Management

Generating Credit Card Numbers in Test Data Management Generating Credit Card Numbers in Test Data Management Copyright Informatica LLC 2003, 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United

More information

About SharePoint Server 2007 My Sites

About SharePoint Server 2007 My Sites SharePoint How To s / My Sites of 6 About SharePoint Server 007 My Sites Use your My Site to store files and collaborate with your co-workers online. My Sites have public and private pages. Use your public

More information

Creating a Web Presentation

Creating a Web Presentation LESSON 9 Creating a Web Presentation 9.1 After completing this lesson, you will be able to: Create an agenda slide or home page. Create a hyperlink to a slide. Create a Web presentation with the AutoContent

More information

VIVADO TUTORIAL- TIMING AND POWER ANALYSIS

VIVADO TUTORIAL- TIMING AND POWER ANALYSIS VIVADO TUTORIAL- TIMING AND POWER ANALYSIS IMPORTING THE PROJECT FROM ISE TO VIVADO Initially for migrating the same project which we did in ISE 14.7 to Vivado 2016.1 you will need to follow the steps

More information

SharePoint AD Administration Tutorial for SharePoint 2007

SharePoint AD Administration Tutorial for SharePoint 2007 SharePoint AD Administration Tutorial for SharePoint 2007 1. General Note Please note that AD Administration has to be activated before it can be used. For further reference, please see our Product Installation

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

Secure Mobile Access Module

Secure Mobile Access Module Secure Mobile Access Module Administration Guide Version 1.0 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800)

More information

OrgPublisher Photos, Logos, and Legends

OrgPublisher Photos, Logos, and Legends OrgPublisher Photos, Logos, and Legends Table of Contents Table of Contents Photos... 3 Inserting Photos... 3 Photo Wait Time... 5 Logos... 7 Adding a Logo... 7 Adding a Background Image... 8 Legends...

More information

Mercury LoadRunner Quick Start

Mercury LoadRunner Quick Start Mercury LoadRunner Quick Start Welcome to the Mercury LoadRunner Quick Start. The Quick Start provides a short, step-by-step overview and introduction to using Mercury LoadRunner. LoadRunner load tests

More information

Managing Document Properties

Managing Document Properties PROCEDURES LESSON 20: CHANGING CASE AND MANAGING DOCUMENT PROPERTIES Using Uppercase Mode 1 Press the Caps Lock key 2 Type the desired text in all caps Showing Caps Lock on the Status Bar 1 Right-click

More information

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases.

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. BRIEFCASES & TASKS ZIMBRA BRIEFCASES Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. Options Briefcase New Briefcase To create briefcases,

More information

Desktop Studio: Sub-reports

Desktop Studio: Sub-reports Desktop Studio: Sub-reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Desktop Studio: SubReports i Copyright 2010 Intellicus Technologies

More information

Enterprise Data Catalog for Microsoft Azure Tutorial

Enterprise Data Catalog for Microsoft Azure Tutorial Enterprise Data Catalog for Microsoft Azure Tutorial VERSION 10.2 JANUARY 2018 Page 1 of 45 Contents Tutorial Objectives... 4 Enterprise Data Catalog Overview... 5 Overview... 5 Objectives... 5 Enterprise

More information

To complete this database, you will need the following file:

To complete this database, you will need the following file: = CHAPTER 6 Access More Skills 11 Add Option Groups to Forms An option group is a frame with a set of check boxes, toggle buttons, or option buttons. Option groups can be bound or unbound to a field. When

More information

Creating a Probabilistic Model in Informatica Data Quality

Creating a Probabilistic Model in Informatica Data Quality Creating a Probabilistic Model in Informatica Data Quality 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Importing Metadata From an XML Source in Test Data Management

Importing Metadata From an XML Source in Test Data Management Importing Metadata From an XML Source in Test Data Management Copyright Informatica LLC 2017. Informatica, the Informatica logo, and PowerCenter are trademarks or registered trademarks of Informatica LLC

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

Introduction to Mail Merge. Use IT+

Introduction to Mail Merge. Use IT+ Introduction to Use IT+ Introduction is a useful tool that allows you to produce multiple letters, labels, envelopes, name tags, and more using information stored in a list, database, or spreadsheet. When

More information

More Skills 12 Create Indexes and Establish a One-to-One Relationship. To complete this database, you will need the following file:

More Skills 12 Create Indexes and Establish a One-to-One Relationship. To complete this database, you will need the following file: CHAPTER 2 Access More Skills 12 Create Indexes and Establish a One-to-One Relationship An index stores the location of records based on the values in a field. An index improves performance when the field

More information

Build an App From a SAP Web IDE Template. Page 1/26

Build an App From a SAP Web IDE Template. Page 1/26 Build an App From a SAP Web IDE Template Page 1/26 1. Click on Services Tab Click on the Services tab in the navigation bar. Page 2/26 2. Open SAP Web IDE Scroll down and then click the SAP Web IDE tile

More information

Service Line Export and Pivot Table Report (Windows Excel 2010)

Service Line Export and Pivot Table Report (Windows Excel 2010) Service Line Export and Pivot Table Report (Windows Excel 2010) In this tutorial, we will take the Service Lines of the Active Students only and only the most recent record to take a snapshot look at approximate

More information

Perceptive Interact for Epic

Perceptive Interact for Epic Perceptive Interact for Epic Installation and Setup Guide Version: 7.1.x Written by: Product Knowledge, R&D Date: March 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

ImageNow Interact for ESRI ArcGIS Server Installation and Setup Guide

ImageNow Interact for ESRI ArcGIS Server Installation and Setup Guide ImageNow Interact for ESRI ArcGIS Server Installation and Setup Guide Microsoft Windows.NET Framework Version: 6.6.x Written by: Product Documentation, R&D Date: November 2011 ImageNow and CaptureNow are

More information

KWizCom Apps and Tools activation tutorial

KWizCom Apps and Tools activation tutorial KWizCom Apps and Tools activation tutorial This article outlines how to use KWizCom's activation form in order to activate your KWizCom App (SharePoint online add-in) and other SharePoint Online Tools

More information

Java CAPS Creating a Simple Web Service from a JCD

Java CAPS Creating a Simple Web Service from a JCD Java CAPS 5.1.3 Creating a Simple Web Service from a JCD Introduction Holger Paffrath, August 2008 This tutorial shows you how to create an XML Schema definition to define the layout of your web service

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

How to start as registered user? How to edit a content? How to upload a document (file)?... 8

How to start as registered user? How to edit a content? How to upload a document (file)?... 8 Platform Tutorial This document provides HydroEurope participants with the basic procedures to use the platform and to update the different pages of the website with text and documents. How to start as

More information

USER GUIDE. PowerKB for Parature

USER GUIDE. PowerKB for Parature USER GUIDE PowerKB for Parature Contents Overview Using PowerKB for Parature Filters Search Bar Article Results Parature Article Copy Link Overview PowerKB for Parature is an integration between CRM and

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands.

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands. Departamento de Engenharia Informática Systems Integration SOA Adapters Tutorial IE 2016 In this tutorial, we shall create a BPEL process that uses two adapters, namely the file adapter and database adapter.

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

Data Quality : Profile Analysis On Join Condition

Data Quality : Profile Analysis On Join Condition Name of Solution: Data Quality : Profile Analysis On Join Condition Business Requirement: The purpose of this solution is to explain what is Join profile analysis and how it can be used. Solution URL:

More information

Importing Metadata from Relational Sources in Test Data Management

Importing Metadata from Relational Sources in Test Data Management Importing Metadata from Relational Sources in Test Data Management Copyright Informatica LLC, 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the

More information

Publishing and Subscribing to Cloud Applications with Data Integration Hub

Publishing and Subscribing to Cloud Applications with Data Integration Hub Publishing and Subscribing to Cloud Applications with Data Integration Hub 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Word Introduction. SmartArt graphics. Video: SmartArt Graphics in. Word To insert a SmartArt illustration: SmartArt Graphics

Word Introduction. SmartArt graphics. Video: SmartArt Graphics in. Word To insert a SmartArt illustration: SmartArt Graphics Word 2010 SmartArt Graphics Introduction SmartArt allows you to visually communicate information rather than simply using text. Illustrations can enhance your document, and SmartArt makes using graphics

More information

Creating a REST API which exposes an existing SOAP Service with IBM API Management

Creating a REST API which exposes an existing SOAP Service with IBM API Management Creating a REST API which exposes an existing SOAP Service with IBM API Management 4.0.0.0 2015 Copyright IBM Corporation Page 1 of 33 TABLE OF CONTENTS OBJECTIVE...3 PREREQUISITES...3 CASE STUDY...4 USER

More information

Getting Help in Microsoft Office

Getting Help in Microsoft Office LESSON 3 Getting Help in Microsoft Office In this lesson, you learn how to access and use the Help system in Microsoft Office. HELP: WHAT S AVAILABLE? Microsoft Office supplies a Help system that makes

More information

Our Goals Teaching with Power Point

Our Goals Teaching with Power Point Our Goals Teaching with Power Point October 14, 2003 Create a new presentation. Add text, graphics,charts, and tables. Apply transitions. Insert hyperlinks such as: http://www.hamline.edu Goals Continued

More information

Configuring Optional and Advanced Tasks for External Content Integration

Configuring Optional and Advanced Tasks for External Content Integration Configuring Optional and Advanced Tasks for External Content Integration First Published: August 2, 2012 Revised: March 8, 2013 This module describes some of the optional and advanced tasks that you can

More information

Unified Task List Developer Pack

Unified Task List Developer Pack Unified Task List Developer Pack About the Developer Pack The developer pack is provided to allow customization of the UTL set of portlets and deliver an easy mechanism of developing task processing portlets

More information

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects New Perspectives on PowerPoint 2016 Module 2: Adding Media and Special Effects Objectives, Part 1 Apply a theme used in another presentation Insert shapes Format shapes and pictures Rotate and flip objects

More information

ICS Tutorials: Basic Operations

ICS Tutorials: Basic Operations ICS Tutorials: Basic Operations This tutorial introduces the basic components of Builder Xcessory. For more detailed information, see the Builder Xcessory Reference Manual. This book is directly accessible

More information

Elixir Repertoire Designer

Elixir Repertoire Designer Aggregation and Transformation Intelligence on Demand Activation and Integration Navigation and Visualization Presentation and Delivery Activation and Automation Elixir Repertoire Designer Tutorial Guide

More information

Creating Simple Report from Excel

Creating Simple Report from Excel Creating Simple Report from Excel 1.1 Connect to Excel workbook 1. Select Get Data Excel in the Home ribbon tab, 2. In the Open File dialog box, select the 2015 Sales.xlsx file. Then in the Navigator pane,

More information