SlideShare uma empresa 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]

Mais conteúdo relacionado

Mais procurados

Entity relationship diagram - Concept on normalization
Entity relationship diagram - Concept on normalizationEntity relationship diagram - Concept on normalization
Entity relationship diagram - Concept on normalizationSatya Pal
 
Azure Data Factory
Azure Data FactoryAzure Data Factory
Azure Data FactoryHARIHARAN R
 
Tutorial On Database Management System
Tutorial On Database Management SystemTutorial On Database Management System
Tutorial On Database Management Systempsathishcs
 
SQL Server Integration Services
SQL Server Integration ServicesSQL Server Integration Services
SQL Server Integration ServicesRobert MacLean
 
Informatica interview questions and answers|Informatica Faqs 2014
Informatica interview questions and answers|Informatica Faqs 2014Informatica interview questions and answers|Informatica Faqs 2014
Informatica interview questions and answers|Informatica Faqs 2014BigClasses.com
 
1- Introduction of Azure data factory.pptx
1- Introduction of Azure data factory.pptx1- Introduction of Azure data factory.pptx
1- Introduction of Azure data factory.pptxBRIJESH KUMAR
 
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...Edureka!
 
Basic oracle-database-administration
Basic oracle-database-administrationBasic oracle-database-administration
Basic oracle-database-administrationsreehari orienit
 
Azure Data Factory Introduction.pdf
Azure Data Factory Introduction.pdfAzure Data Factory Introduction.pdf
Azure Data Factory Introduction.pdfMaheshPandit16
 
introdution to SQL and SQL functions
introdution to SQL and SQL functionsintrodution to SQL and SQL functions
introdution to SQL and SQL functionsfarwa waqar
 

Mais procurados (20)

Relational+algebra (1)
Relational+algebra (1)Relational+algebra (1)
Relational+algebra (1)
 
Basics of oracle service contracts
Basics of oracle service contractsBasics of oracle service contracts
Basics of oracle service contracts
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
 
Entity relationship diagram - Concept on normalization
Entity relationship diagram - Concept on normalizationEntity relationship diagram - Concept on normalization
Entity relationship diagram - Concept on normalization
 
Azure Data Factory
Azure Data FactoryAzure Data Factory
Azure Data Factory
 
SQL Server Stored procedures
SQL Server Stored proceduresSQL Server Stored procedures
SQL Server Stored procedures
 
Data Analysis Expressions (DAX) Training
Data Analysis Expressions (DAX) TrainingData Analysis Expressions (DAX) Training
Data Analysis Expressions (DAX) Training
 
MYSQL-Database
MYSQL-DatabaseMYSQL-Database
MYSQL-Database
 
Tutorial On Database Management System
Tutorial On Database Management SystemTutorial On Database Management System
Tutorial On Database Management System
 
What is ETL?
What is ETL?What is ETL?
What is ETL?
 
Advanced sql
Advanced sqlAdvanced sql
Advanced sql
 
SQL Server Integration Services
SQL Server Integration ServicesSQL Server Integration Services
SQL Server Integration Services
 
Oracle database introduction
Oracle database introductionOracle database introduction
Oracle database introduction
 
Informatica interview questions and answers|Informatica Faqs 2014
Informatica interview questions and answers|Informatica Faqs 2014Informatica interview questions and answers|Informatica Faqs 2014
Informatica interview questions and answers|Informatica Faqs 2014
 
1- Introduction of Azure data factory.pptx
1- Introduction of Azure data factory.pptx1- Introduction of Azure data factory.pptx
1- Introduction of Azure data factory.pptx
 
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...
SSIS Tutorial For Beginners | SQL Server Integration Services (SSIS) | MSBI T...
 
ORACLE ARCHITECTURE
ORACLE ARCHITECTUREORACLE ARCHITECTURE
ORACLE ARCHITECTURE
 
Basic oracle-database-administration
Basic oracle-database-administrationBasic oracle-database-administration
Basic oracle-database-administration
 
Azure Data Factory Introduction.pdf
Azure Data Factory Introduction.pdfAzure Data Factory Introduction.pdf
Azure Data Factory Introduction.pdf
 
introdution to SQL and SQL functions
introdution to SQL and SQL functionsintrodution to SQL and SQL functions
introdution to SQL and SQL functions
 

Destaque

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

Destaque (16)

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

Semelhante 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
 

Semelhante 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

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Agnes's SSIS Project Documentation