SlideShare une entreprise Scribd logo
1  sur  17
Prepared By:  Agnes TetterSETFOCUS, LLC07/31/2009SSIS Student ProjectALLWORKS Database Documentation  I. INTRODUCTION – Project Mission ALLWORKS is a fictitious construction company. In this project we design and build an SQL Server 2005 Database to track employee and customer information, timesheet and labor rates data, as well as a job order information, job materials, and customer invoices. ALLWORKS stored its information in Excel Spreadsheets, XML, and CSV files. In this project we will make some improvements to the existing data sources in order to support more flexible business practice for customer invoicing, use SQL 2005 Integration Services to integrate these external data sources into SQL Server Database. II. LIST OF ALL PACKAGES PACKAGE 3A:  EmployeeMasterPackage.dtsx This package will read the contents of the Employee.xls (under employee’s sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (Employee Table).  Employee sheet contains roaster of employees and flag for whether the employee is a contractor or a regular. Source File:  C:SetFocusBISourceDataEmployees.XLS, Sheet:  Employees Target Table:  dbo.Employees Assumption:  Insert:  Loading a NULL value in EmployeePK(Employee ID) field is prohibited in Employee Table. Update: The Employee table can only be updated if the Employee ID in Employee Spreadsheet is equal to the EmployeeID (EmployeePK in the Employee Table) and other data are not equal Notification: These include two sets of information and this email sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:Total numbers of rows in the source file (Employee Spreadsheet) Total number of new rows inserted to the Employee Table Total number of existing rows updated from the Employee Table ,[object Object],The name of the package that processing fails. PACKAGE 3b: EmployeeRatePackage.dtsx This package will read the contents of the Employee.xls (under employee rate sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (Employee Rates Table).  Employee Rate Sheet includes Employee Hourly Rates for each employee and the rate effective date. Source File:  C:SetFocusBISourceDataEmployees.XLS, Sheet:  Employees Rates Target Table:  dbo.EmployeeRates Assumption:  Insert:   You can only insert new rows to the Employee Rate Table if the following conditions are TRUE: ,[object Object]
EmployeePK (Employee ID) and EffectiveDate(rate effective date) is not Null,
If both EmployeePK (Employee ID) and EffectiveDate(rate effective date)  don’t exist in the Employee Rate Table.Update:  The Employee Rate table can only be updated if the TransformedEmployeePK(Employee  ID in Employee.XLS)  is equal to the TargetEmployeePK (EmployeePK in the Employee Table). Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:Total number of new rows inserted to the Employee Rate Table Total number of existing rows updated in the Employee Rate Table Total number of invalid rows (those employee that don’t exist in the Employee Table) Failure email notification will include: The name of the package that processing fails. Error Handling: One file is created for all Employees from the Employee Rate Spreadsheet that don’t exist in the Employee Table. This file is save in the C:SetFocusBIProjectsStudentVersionSSISStudentProjectLog  File Name: MissingEmployee_EmployeeRatePackage.csv PACKAGE 3c: ClientMasterPackage.dtsx This package will read the contents of the ClientGeographies.xls (under client listing sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (Clients Table).  Client Listing Sheet includes client for AllWorks, along with a CountyKey to associate the client with a county. The information that needed from the Client Listing spreadsheet are the Client No (ClientPK), Account No, Client Name, Project Manager, County Key (CountyPK), Client Image. This package also loads the data from County Definition Sheet to County Table. Source File:  C:SetFocusBISourceData ClientGeographies.xls, Sheet:  Client Listing and County Definition Target Table:  dbo.Clients and dbo.County Assumption:  Insert:   You can only insert new rows to the Clients Table if the following conditions are TRUE: ,[object Object]
It will not also be inserted if the County Key (CountyPK) does not exist in the County Table. The package will add the county that doesn’t exist in the County first in the County Table.Update:  The Client table can only be updated if the Client No (ClientPK) from the Client Listing Spreadsheet is equal to the ClientPK (ClientNo) and if it exist in  the Clients Table and the other information that need to be inserted  are not equal. Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:
Total number of rows read from the source file (Client Listing Spreadsheet)Total number of new rows inserted to the Client Table Total number of existing rows updated to the Client Table Total number of invalid rows (those county that don’t exist in the County Table) Failure email notification will include: The name of the package that processing fails. Error Handling: One file is created for all Counties from the Client Listing Spreadsheet that don’t exist in the County Table. This file is save in the C:SetFocusBIProjectsStudentVersionSSISStudentProjectLog  File Name: MissingCounty_ClientPackage.csv PACKAGE 3d: ClientGroupingPackage.dtsx This package will read the contents of the Clientgeographies.xls (under special grouping sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (Client Grouping Table).  Special Grouping Sheet includes Grouping# (ClientGroupingPK), GroupingName, and Account Key. In this package we only need the first two data. In this package we use aggregrate data flow task to group the repeating grouping# and GroupingName. Source File:  C:SetFocusBISourceData Clientgeographies.xls, Sheet:  Special Grouping Target Table:  dbo.ClientGroupings  Assumption:  Insert:   You can only insert new rows to the Client Grouping Table if the following conditions are TRUE: ,[object Object]
ClientGroupingPK (Grouping#) from the Special Grouping Sheet is not nullUpdate:  The Client Grouping Table can only be updated if the Grouping#(ClientGroupingPK) from the Special  Grouping sheet is equal to the ClientGroupingPK in the Client Grouping Table and the GroupingName is different. Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:
Total number of rows read from the Special Grouping SpreadsheetTotal number of new rows inserted to the Client Grouping Table Total number of existing rows updated to the Client Grouping Table Failure email notification will include: The name of the package that processing fails. PACKAGE 3e: DivisionMasterPackage.dtsx This package will read the contents of the Clientgeographies.xls (under Division Definition sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (Division Table).  Division Definition Sheet includes Division (DivisionPK), Description (DivisionName), and Account Key. In this package we only need the first two data. In this package we use aggregrate data flow task to group the repeating Division and Description. Source File:  C:SetFocusBISourceData Clientgeographies.xls, Sheet:  Division Definition Target Table:  dbo.Division Assumption:  Insert:   You can only insert new rows to the Division Table if the following conditions are TRUE: ,[object Object]
DivisionPK (Division) from the Divison Definition Sheet is not nullUpdate:  The Division Table can only be updated if the Division ( DivisionPK) from the Division Definition sheet is equal to the DivisionPK in the Client Grouping Table and the Description(DivisionName) is different. Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:
Total number of rows read from the Division Definition SpreadsheetTotal number of new rows inserted to the Division Table Total number of existing rows updated to the Division Table Failure email notification will include: The name of the package that processing fails. PACKAGE 3f: ClientGroupingXrefPackage.dtsx This package will read the contents of the Clientgeographies.xls (under Special Grouping sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (ClientGroupingXClients Table).  Special Grouping Sheet includes Grouping# (ClientGroupingPK), GroupingName, and Account Key. In this package we use three lookups one for the Client, ClientGrouping, and ClientGroupingXClients Tables. The first ttwo lookups will validate that each ClientNo(ClientPK) and Grouping#(ClientGroupingPK)  exist in Client Table and ClientGroupings Table respectively before it will be inserted in the ClientGroupingXClients. Source File:  C:SetFocusBISourceData Clientgeographies.xls, Sheet:  Special Grouping Target Table:  dbo.ClientGroupingsXClients Assumption:  Insert:   You can only insert new rows to the ClientGroupingsXClients Table if the following conditions are TRUE: ,[object Object],Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object]
The following row counts:
Total number of rows read from the Special Grouping SpreadsheetTotal number of new rows inserted to the ClientGroupingsXCLients Failure email notification will include: The name of the package that processing fails. PACKAGE 3g: ProjectJobMasterPackage.dtsx This package will read the contents of the ProjectMaster.xls (under Project Master sheet) that is located from C:SetFocusBISourceData and add them to the AllWorksDBStudent database (JobMaster Table). All the columns from Project Master Sheet will be loaded to the JobMaster Table.  Source File:  C:SetFocusBISourceData ProjectMaster.xls, Sheet:  Project Master Target Table:  dbo.JobMaster Assumption:  Insert:   You can only insert new rows to the JobMaster Table if the JobMasterPK (ProjectID) from ProjectMaster.xls is not null. Update:  The JobMaster Table can only be updated if the Project ID (JobMasterPK) from the ProjectMaster sheet is equal to the JobMasterPK in the JobMaster Table and other rows are not equal. Error Handling: One file is created for all Clients from the Project Master Spreadsheet that don’t exist in the Clients Table. This file is save in the C:SetFocusBIProjectsStudentVersionSSISStudentProjectLog  File Name: MissingClient_ProjectJobMasterPackage.csv Notification: These include two sets of information and this email is sent to biproject@setfocus.com. The email server for SMTP connection is Sfexch0003.setfocus.com ,[object Object],The following row counts: Total number of new rows inserted to the JobMaster Table Total number of existing rows updated to the JobMasterTable Total number of invalid rows (those client that don’t exist in the Client Table) Failure email notification will include: The name of the package that processing fails. PACKAGE 3h: JobTimeSheetPackage.dtsx This package used a ForEachLoop Container to read EmpTime####.csv files that were stored at C:SetFocusBISourceData	ime and add them to the AllWorksDBStudent database (JobTimeSheets Table). This package also used Script Task to count the total rows that being processed from each file. Source Folder:  C:SetFocusBISourceData	ime      FileNames:  EmpTime500.csv, EmpTime1000.csv, EmpTime2000.csv, EmpTime3000.csv, EmpTime4000.csv Target Table:  dbo.JobTimeSheet Assumption:  Insert:   You can only insert new rows to the JobTimeSheets Table if the following conditions are TRUE: ,[object Object]
JobMasterPK exist in JobMaster Table and EmployeePK exist in Employee TableUpdate:  The JobTimeSheets Table can only be updated if the JobMasterPK (Job Number), EmployeePK(Employee ID), and WorkDate(Date) from Emptime####.csv is equal to the JobMasterPK, EmployeePK and WorkDate in the JobTimeSheets Table and other rows are not equal. Error Handling: Three file s are created: ,[object Object]

Contenu connexe

Tendances

Enterprise Data Lake
Enterprise Data LakeEnterprise Data Lake
Enterprise Data Lakesambiswal
 
Building Data Quality pipelines with Apache Spark and Delta Lake
Building Data Quality pipelines with Apache Spark and Delta LakeBuilding Data Quality pipelines with Apache Spark and Delta Lake
Building Data Quality pipelines with Apache Spark and Delta LakeDatabricks
 
MS Sql Server: Joining Databases
MS Sql Server: Joining DatabasesMS Sql Server: Joining Databases
MS Sql Server: Joining DatabasesDataminingTools Inc
 
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)apidays
 
05. Physical Data Specification Template
05. Physical Data Specification Template05. Physical Data Specification Template
05. Physical Data Specification TemplateAlan D. Duncan
 
Why our customers choose teradata.
Why our customers choose teradata.Why our customers choose teradata.
Why our customers choose teradata.Adam Swaney
 
introdution to SQL and SQL functions
introdution to SQL and SQL functionsintrodution to SQL and SQL functions
introdution to SQL and SQL functionsfarwa waqar
 
White Paper - Data Warehouse Documentation Roadmap
White Paper -  Data Warehouse Documentation RoadmapWhite Paper -  Data Warehouse Documentation Roadmap
White Paper - Data Warehouse Documentation RoadmapDavid Walker
 
Azure Data Factory Data Flow
Azure Data Factory Data FlowAzure Data Factory Data Flow
Azure Data Factory Data FlowMark Kromer
 
Introduction to Dimesional Modelling
Introduction to Dimesional ModellingIntroduction to Dimesional Modelling
Introduction to Dimesional ModellingAshish Chandwani
 
data abstraction ,encapsulation,A.D.T
data abstraction ,encapsulation,A.D.Tdata abstraction ,encapsulation,A.D.T
data abstraction ,encapsulation,A.D.Tkapil10197
 
Entity relationship diagram (erd)
Entity relationship  diagram (erd)Entity relationship  diagram (erd)
Entity relationship diagram (erd)Shahariar Alam
 
XSLT Magic Tricks with DITA and FrameMaker
XSLT Magic Tricks with DITA and FrameMakerXSLT Magic Tricks with DITA and FrameMaker
XSLT Magic Tricks with DITA and FrameMakerContrext Solutions
 
Av technician interview questions
Av technician interview questionsAv technician interview questions
Av technician interview questionsGoodson Mitochi
 
Sql interview questions and answers
Sql interview questions and  answersSql interview questions and  answers
Sql interview questions and answerssheibansari
 
Sample - Data Warehouse Requirements
Sample -  Data Warehouse RequirementsSample -  Data Warehouse Requirements
Sample - Data Warehouse RequirementsDavid Walker
 

Tendances (20)

Enterprise Data Lake
Enterprise Data LakeEnterprise Data Lake
Enterprise Data Lake
 
Building Data Quality pipelines with Apache Spark and Delta Lake
Building Data Quality pipelines with Apache Spark and Delta LakeBuilding Data Quality pipelines with Apache Spark and Delta Lake
Building Data Quality pipelines with Apache Spark and Delta Lake
 
MS Sql Server: Joining Databases
MS Sql Server: Joining DatabasesMS Sql Server: Joining Databases
MS Sql Server: Joining Databases
 
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)
APIsecure 2023 - What if privacy had an API?, Sean Falconer (Skyflow)
 
05. Physical Data Specification Template
05. Physical Data Specification Template05. Physical Data Specification Template
05. Physical Data Specification Template
 
Why our customers choose teradata.
Why our customers choose teradata.Why our customers choose teradata.
Why our customers choose teradata.
 
introdution to SQL and SQL functions
introdution to SQL and SQL functionsintrodution to SQL and SQL functions
introdution to SQL and SQL functions
 
White Paper - Data Warehouse Documentation Roadmap
White Paper -  Data Warehouse Documentation RoadmapWhite Paper -  Data Warehouse Documentation Roadmap
White Paper - Data Warehouse Documentation Roadmap
 
SQL
SQLSQL
SQL
 
Azure Data Factory Data Flow
Azure Data Factory Data FlowAzure Data Factory Data Flow
Azure Data Factory Data Flow
 
Introduction to Dimesional Modelling
Introduction to Dimesional ModellingIntroduction to Dimesional Modelling
Introduction to Dimesional Modelling
 
SQL Joins.pdf
SQL Joins.pdfSQL Joins.pdf
SQL Joins.pdf
 
Data models
Data modelsData models
Data models
 
Unit iv dbms
Unit   iv dbmsUnit   iv dbms
Unit iv dbms
 
data abstraction ,encapsulation,A.D.T
data abstraction ,encapsulation,A.D.Tdata abstraction ,encapsulation,A.D.T
data abstraction ,encapsulation,A.D.T
 
Entity relationship diagram (erd)
Entity relationship  diagram (erd)Entity relationship  diagram (erd)
Entity relationship diagram (erd)
 
XSLT Magic Tricks with DITA and FrameMaker
XSLT Magic Tricks with DITA and FrameMakerXSLT Magic Tricks with DITA and FrameMaker
XSLT Magic Tricks with DITA and FrameMaker
 
Av technician interview questions
Av technician interview questionsAv technician interview questions
Av technician interview questions
 
Sql interview questions and answers
Sql interview questions and  answersSql interview questions and  answers
Sql interview questions and answers
 
Sample - Data Warehouse Requirements
Sample -  Data Warehouse RequirementsSample -  Data Warehouse Requirements
Sample - Data Warehouse Requirements
 

En vedette

Ssis tech support_team
Ssis tech support_teamSsis tech support_team
Ssis tech support_teamMatthew Clark
 
SSIS by Anjali
SSIS by AnjaliSSIS by Anjali
SSIS by AnjaliGargAnjali
 
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions PresentationSQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions PresentationMicrosoft Private Cloud
 
Integration Services Presentation V2
Integration Services Presentation V2Integration Services Presentation V2
Integration Services Presentation V2Catherine Eibner
 
Elsd sql server_integration_services
Elsd sql server_integration_servicesElsd sql server_integration_services
Elsd sql server_integration_servicesSteve Xu
 
A-Project Report- SSIS
A-Project Report- SSISA-Project Report- SSIS
A-Project Report- SSISYubaraj Khanal
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksGuillermo Caicedo
 
MS BI SSIS Project Portfolio
MS BI SSIS Project PortfolioMS BI SSIS Project Portfolio
MS BI SSIS Project Portfoliopencarver
 
Database documentation
Database documentationDatabase documentation
Database documentationRen Gallarin
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Eduardo Castro
 
SQL Server Integration Services
SQL Server Integration ServicesSQL Server Integration Services
SQL Server Integration ServicesRobert MacLean
 
Students management system
Students management systemStudents management system
Students management systemKumar Rajeev
 
Introduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration ServicesIntroduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration ServicesQuang Nguyễn Bá
 
Online Student Registration System
Online Student Registration SystemOnline Student Registration System
Online Student Registration SystemSanjana Agarwal
 
Course registration system dfd
Course registration system dfdCourse registration system dfd
Course registration system dfdUtsav mistry
 

En vedette (18)

Ssis tech support_team
Ssis tech support_teamSsis tech support_team
Ssis tech support_team
 
SSIS by Anjali
SSIS by AnjaliSSIS by Anjali
SSIS by Anjali
 
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions PresentationSQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
 
Integration Services Presentation V2
Integration Services Presentation V2Integration Services Presentation V2
Integration Services Presentation V2
 
Elsd sql server_integration_services
Elsd sql server_integration_servicesElsd sql server_integration_services
Elsd sql server_integration_services
 
A-Project Report- SSIS
A-Project Report- SSISA-Project Report- SSIS
A-Project Report- SSIS
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & Tricks
 
SSIS_Project
SSIS_ProjectSSIS_Project
SSIS_Project
 
MS BI SSIS Project Portfolio
MS BI SSIS Project PortfolioMS BI SSIS Project Portfolio
MS BI SSIS Project Portfolio
 
Database documentation
Database documentationDatabase documentation
Database documentation
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2
 
SQL Server Integration Services
SQL Server Integration ServicesSQL Server Integration Services
SQL Server Integration Services
 
Students management system
Students management systemStudents management system
Students management system
 
Ssis 2008
Ssis 2008Ssis 2008
Ssis 2008
 
Introduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration ServicesIntroduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration Services
 
Online Student Registration System
Online Student Registration SystemOnline Student Registration System
Online Student Registration System
 
What's new in SQL Server Integration Services 2012?
What's new in SQL Server Integration Services 2012?What's new in SQL Server Integration Services 2012?
What's new in SQL Server Integration Services 2012?
 
Course registration system dfd
Course registration system dfdCourse registration system dfd
Course registration system dfd
 

Similaire à Agnes's SSIS Project Documentation

Ssis First Project Word7
Ssis First Project Word7Ssis First Project Word7
Ssis First Project Word7jolisadillard
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioamoffat
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioguestc38d4b
 
MMYERS Portfolio
MMYERS PortfolioMMYERS Portfolio
MMYERS PortfolioMike Myers
 
I am having trouble writing the individual files for part 1, which i.pdf
I am having trouble writing the individual files for part 1, which i.pdfI am having trouble writing the individual files for part 1, which i.pdf
I am having trouble writing the individual files for part 1, which i.pdfmallik3000
 
Manisha Menon Ssis Portfolio
Manisha Menon Ssis PortfolioManisha Menon Ssis Portfolio
Manisha Menon Ssis Portfoliomenonmanisha
 
Mo 09 G3 Intez Ali Portfolio
Mo 09 G3 Intez Ali PortfolioMo 09 G3 Intez Ali Portfolio
Mo 09 G3 Intez Ali Portfoliointezali
 
William Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence PortfolioWilliam Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence Portfoliowschaffr
 
Bilir's Business Intelligence Portfolio SSIS Project
Bilir's Business Intelligence Portfolio SSIS ProjectBilir's Business Intelligence Portfolio SSIS Project
Bilir's Business Intelligence Portfolio SSIS ProjectFigen Bilir
 
Open a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdfOpen a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdfNathan2rSPeakes
 
SSIS Project Profile
SSIS Project ProfileSSIS Project Profile
SSIS Project Profiletthompson0421
 
Open a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdfOpen a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdflonkarhrishikesh
 
CIS 336 (DEVRY) Entire Course NEW
CIS 336 (DEVRY) Entire Course NEWCIS 336 (DEVRY) Entire Course NEW
CIS 336 (DEVRY) Entire Course NEWshyamuopuop
 
PURPOSE of the project is Williams Specialty Company (WSC) reque.docx
PURPOSE of the project is Williams Specialty Company (WSC) reque.docxPURPOSE of the project is Williams Specialty Company (WSC) reque.docx
PURPOSE of the project is Williams Specialty Company (WSC) reque.docxamrit47
 
SSIS_SSAS_SSRS_SP_PPS_HongBingLi
SSIS_SSAS_SSRS_SP_PPS_HongBingLiSSIS_SSAS_SSRS_SP_PPS_HongBingLi
SSIS_SSAS_SSRS_SP_PPS_HongBingLiHong-Bing Li
 
CIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comCIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comclaric262
 
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing Li
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing LiSSIS_SSRS_PPS_SP_SSAS_Hong_Bing Li
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing LiHong-Bing Li
 
Ssis Ssas Ssrs Sp Pps Hong Bing Li
Ssis Ssas Ssrs Sp Pps Hong Bing LiSsis Ssas Ssrs Sp Pps Hong Bing Li
Ssis Ssas Ssrs Sp Pps Hong Bing LiHong-Bing Li
 

Similaire à Agnes's SSIS Project Documentation (20)

Ssis First Project Word7
Ssis First Project Word7Ssis First Project Word7
Ssis First Project Word7
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
MMYERS Portfolio
MMYERS PortfolioMMYERS Portfolio
MMYERS Portfolio
 
I am having trouble writing the individual files for part 1, which i.pdf
I am having trouble writing the individual files for part 1, which i.pdfI am having trouble writing the individual files for part 1, which i.pdf
I am having trouble writing the individual files for part 1, which i.pdf
 
Manisha Menon Ssis Portfolio
Manisha Menon Ssis PortfolioManisha Menon Ssis Portfolio
Manisha Menon Ssis Portfolio
 
Mo 09 G3 Intez Ali Portfolio
Mo 09 G3 Intez Ali PortfolioMo 09 G3 Intez Ali Portfolio
Mo 09 G3 Intez Ali Portfolio
 
William Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence PortfolioWilliam Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence Portfolio
 
Bilir's Business Intelligence Portfolio SSIS Project
Bilir's Business Intelligence Portfolio SSIS ProjectBilir's Business Intelligence Portfolio SSIS Project
Bilir's Business Intelligence Portfolio SSIS Project
 
Open a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdfOpen a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdf
 
SSIS Project Profile
SSIS Project ProfileSSIS Project Profile
SSIS Project Profile
 
Open a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdfOpen a new project in Visual Studio Community and name it in the form.pdf
Open a new project in Visual Studio Community and name it in the form.pdf
 
CIS 336 (DEVRY) Entire Course NEW
CIS 336 (DEVRY) Entire Course NEWCIS 336 (DEVRY) Entire Course NEW
CIS 336 (DEVRY) Entire Course NEW
 
Jazz
JazzJazz
Jazz
 
PURPOSE of the project is Williams Specialty Company (WSC) reque.docx
PURPOSE of the project is Williams Specialty Company (WSC) reque.docxPURPOSE of the project is Williams Specialty Company (WSC) reque.docx
PURPOSE of the project is Williams Specialty Company (WSC) reque.docx
 
SSIS_SSAS_SSRS_SP_PPS_HongBingLi
SSIS_SSAS_SSRS_SP_PPS_HongBingLiSSIS_SSAS_SSRS_SP_PPS_HongBingLi
SSIS_SSAS_SSRS_SP_PPS_HongBingLi
 
CIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comCIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.com
 
BIWorkDemos
BIWorkDemosBIWorkDemos
BIWorkDemos
 
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing Li
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing LiSSIS_SSRS_PPS_SP_SSAS_Hong_Bing Li
SSIS_SSRS_PPS_SP_SSAS_Hong_Bing Li
 
Ssis Ssas Ssrs Sp Pps Hong Bing Li
Ssis Ssas Ssrs Sp Pps Hong Bing LiSsis Ssas Ssrs Sp Pps Hong Bing Li
Ssis Ssas Ssrs Sp Pps Hong Bing Li
 

Dernier

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Dernier (20)

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Agnes's SSIS Project Documentation