In this video we will learn How to perform Update Operation in OLE DB Command Transformation in SSIS Package.
We will learn the disadvantages of using OLE DB Command Transformation for Update Operation and what other options we have to perform Update in SSIS Package.
In this OLE DB Command Transformation Demo , we will learn
- How to Read data from Flat File Source in SSIS Package
- How to Create Table in SQL Server Database
- How to write Update statement with Input Parameter for OLE DB Command Transformation
- How to map input Columns to OLE DB Command Transformation Parameters for Update Operation
Script used in Video: How to use OLE DB Command Transformation for Update Operation
USE [Test] GO --Create Table for Update Records CREATE TABLE [dbo].[Customer]( [CustomerID] [int] IDENTITY(1,1) NOT NULL, [CustomerName] [varchar](100) NULL, [RegionCode] [varchar](100) NULL ) Select * From [dbo].[Customer] --Prepare Update Query for OLE DB Command Transformation in SSIS Package Update dbo.Customer set RegionCode=? WHERE CustomerName=?
Update Records in SQL Server Table by using OLE DB Command Transformation in
SSIS Package
Related Posts / Videos on OLE DB Command Transformation
- Introduction to OLE DB Command Transformation( Perform Update/Delete)
- How to use Stored Procedure Output Parameter in OLE DB Command Transformation in SSIS Package?
- OLE DB Command Transformation - Insert Operation Demo
- OLE DB Command Transformation - Delete Operation Demo
- OLE DB Command Transformation - Call Stored Procedure with Input Parameters Demo
- OLE DB Command Transformation - Use Sub Query with Parameters in OLE DB Command Transformation to update records in a Table
- OLE DB Command Transformation ( Use Common Table Expressions to Delete Duplicate Records in OLE DB Command Transformation with Input Parameters)
- OLE DB Command Transformation ( How to Call Multiple Stored Procedure with input parameters in OLE DB Command Transformation in SSIS Package)
- OLE DB Command Transformation ( How to Run Multiple Statements Update/Insert/Delete with parameters in OLE DB Command Transformation in SSIS Package)
- OLE DB Command Transformation ( How to build Dynamic SQLCommand for OLE DB Command Transformation in SSIS Package)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.