SlideShare una empresa de Scribd logo
1 de 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]

Más contenido relacionado

La actualidad más candente

Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10
Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10
Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10manafhsb
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
Endevor api an introduction to the endevor application programming interface
Endevor api   an introduction to the endevor application programming interface Endevor api   an introduction to the endevor application programming interface
Endevor api an introduction to the endevor application programming interface Kevin Grimes
 
他社会計ソフトからの仕訳インポート(JDL IBEX会計)
他社会計ソフトからの仕訳インポート(JDL IBEX会計)他社会計ソフトからの仕訳インポート(JDL IBEX会計)
他社会計ソフトからの仕訳インポート(JDL IBEX会計)Money Forward, Inc.
 
App inventor 教學講義 chapter3
App inventor 教學講義 chapter3App inventor 教學講義 chapter3
App inventor 教學講義 chapter3Jerry Wu
 
How to Install Debian GNU/Linux
How to Install Debian GNU/LinuxHow to Install Debian GNU/Linux
How to Install Debian GNU/LinuxShau-Hung Hsieh
 
App inventor 教學講義 chapter4
App inventor 教學講義 chapter4App inventor 教學講義 chapter4
App inventor 教學講義 chapter4Jerry Wu
 
Tutorial 2
Tutorial 2Tutorial 2
Tutorial 2cios135
 
Microsoft 2007 Basics
Microsoft 2007 BasicsMicrosoft 2007 Basics
Microsoft 2007 BasicsJulie Van Noy
 
Data Match Merging in SAS
Data Match Merging in SASData Match Merging in SAS
Data Match Merging in SASguest2160992
 
Dbms file for b.tech 3rd year(aktu)
Dbms file for b.tech 3rd year(aktu)Dbms file for b.tech 3rd year(aktu)
Dbms file for b.tech 3rd year(aktu)PrinceSharma207
 

La actualidad más candente (15)

Trello tutorial for Beginners - part 3
Trello tutorial for Beginners - part 3Trello tutorial for Beginners - part 3
Trello tutorial for Beginners - part 3
 
Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10
Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10
Cara install apache, mysql, php, dan phpmyadmin pada freebsd 10
 
All questions
All questionsAll questions
All questions
 
Hfm lcm
Hfm lcmHfm lcm
Hfm lcm
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Endevor api an introduction to the endevor application programming interface
Endevor api   an introduction to the endevor application programming interface Endevor api   an introduction to the endevor application programming interface
Endevor api an introduction to the endevor application programming interface
 
Ms excel tutorial
Ms excel tutorialMs excel tutorial
Ms excel tutorial
 
他社会計ソフトからの仕訳インポート(JDL IBEX会計)
他社会計ソフトからの仕訳インポート(JDL IBEX会計)他社会計ソフトからの仕訳インポート(JDL IBEX会計)
他社会計ソフトからの仕訳インポート(JDL IBEX会計)
 
App inventor 教學講義 chapter3
App inventor 教學講義 chapter3App inventor 教學講義 chapter3
App inventor 教學講義 chapter3
 
How to Install Debian GNU/Linux
How to Install Debian GNU/LinuxHow to Install Debian GNU/Linux
How to Install Debian GNU/Linux
 
App inventor 教學講義 chapter4
App inventor 教學講義 chapter4App inventor 教學講義 chapter4
App inventor 教學講義 chapter4
 
Tutorial 2
Tutorial 2Tutorial 2
Tutorial 2
 
Microsoft 2007 Basics
Microsoft 2007 BasicsMicrosoft 2007 Basics
Microsoft 2007 Basics
 
Data Match Merging in SAS
Data Match Merging in SASData Match Merging in SAS
Data Match Merging in SAS
 
Dbms file for b.tech 3rd year(aktu)
Dbms file for b.tech 3rd year(aktu)Dbms file for b.tech 3rd year(aktu)
Dbms file for b.tech 3rd year(aktu)
 

Destacado

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
 

Destacado (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
 

Similar a 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
 

Similar a 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
 

Último

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
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
 
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
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 

Último (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
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
 
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
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
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
 

Agnes's SSIS Project Documentation