├── Chapter05 ├── AWCustomer.pkg ├── AWCustomers.dqs ├── AWCustomersMatching.dqs ├── Chapter05.sql ├── Chapter05 │ ├── Chapter05.database │ ├── Chapter05.dtproj │ ├── Chapter05.dtproj.user │ ├── Chapter05.sln │ ├── DataMatching.dtsx │ ├── DataProfiling.dtsx │ ├── Project.params │ ├── bin │ │ └── Development │ │ │ └── Chapter05.ispac │ └── obj │ │ └── Development │ │ ├── BuildLog.xml │ │ ├── Chapter05.dtproj │ │ ├── DataMatching.dtsx │ │ ├── DataProfiling.dtsx │ │ └── Project.params └── DataProfiling.xml ├── Chapter06 ├── Files │ ├── Clients.csv │ ├── Clients_A-H.csv │ ├── Clients_H-R.csv │ ├── Clients_R-Z.csv │ └── CustomLogging.ispac ├── Scripts │ ├── Chapter06.sql │ ├── Chapter06_Configuration.sql │ ├── Chapter06_Execution_DTExec.bat │ ├── Chapter06_Execution_PowerShell.ps1 │ ├── Chapter06_Preparation.sql │ └── Chapter06_ProjectDeployment.bat ├── Solution │ ├── AdventureWorksETL │ │ ├── .vs │ │ │ └── AdventureWorksETL │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ ├── AdventureWorksETL.database │ │ ├── AdventureWorksETL.dtproj │ │ ├── AdventureWorksETL.dtproj.user │ │ ├── AdventureWorksETL.sln │ │ ├── CascadingLookup.dtsx │ │ ├── ExecutionTrees.dtsx │ │ ├── LookupCache.dtsx │ │ ├── LookupExpression.dtsx │ │ ├── Project.params │ │ ├── bin │ │ │ └── Development │ │ │ │ └── AdventureWorksETL.ispac │ │ └── obj │ │ │ └── Development │ │ │ ├── AdventureWorksETL.dtproj │ │ │ ├── BuildLog.xml │ │ │ ├── CascadingLookup.dtsx │ │ │ ├── ExecutionTrees.dtsx │ │ │ ├── LookupCache.dtsx │ │ │ ├── LookupExpression.dtsx │ │ │ └── Project.params │ └── SSISCookbook │ │ ├── .vs │ │ └── SSISCookbook │ │ │ └── v14 │ │ │ └── .suo │ │ ├── EP_Staging.dtsx │ │ ├── ETL.Staging.dtproj │ │ ├── ETL.Staging.dtproj.user │ │ ├── ExternalProducts.xml │ │ ├── ExternalProducts.xsd │ │ ├── ExternalProductsSchema.xml │ │ ├── Project.params │ │ ├── SSISCookbook.database │ │ ├── SSISCookbook.dtproj │ │ ├── SSISCookbook.dtproj.user │ │ ├── SSISCookbook.sln │ │ ├── Sales2001.csv │ │ ├── Sales2002.csv │ │ ├── Staging.database │ │ ├── StgAddress.dtsx │ │ ├── StgAggregatedSalesFromCloudDW.dtsx │ │ ├── StgCustomer.dtsx │ │ ├── StgCustomerAddress.dtsx │ │ ├── StgOrderProvenance.dtsx │ │ ├── StgProduct.dtsx │ │ ├── StgProductCategory.dtsx │ │ ├── StgProductDescription.dtsx │ │ ├── StgProductModel.dtsx │ │ ├── StgProductModelProductDescription.dtsx │ │ ├── StgSalesOrderDetail.dtsx │ │ ├── StgSalesOrderHeader.dtsx │ │ ├── bin │ │ └── Development │ │ │ └── ETL.ispac │ │ ├── cmgr_AsureStorage_ssiscookbook.conmgr │ │ ├── cmgr_DW.conmgr │ │ ├── cmgr_MDS_DB.conmgr │ │ ├── cmgr_Source.conmgr │ │ └── obj │ │ └── Development │ │ ├── BuildLog.xml │ │ ├── EP_Staging.dtsx │ │ ├── ETL.Staging.dtproj │ │ ├── Project.params │ │ ├── StgAddress.dtsx │ │ ├── StgAggregatedSalesFromCloudDW.dtsx │ │ ├── StgCustomer.dtsx │ │ ├── StgCustomerAddress.dtsx │ │ ├── StgProduct.dtsx │ │ ├── StgProductCategory.dtsx │ │ ├── StgProductDescription.dtsx │ │ ├── StgProductModel.dtsx │ │ ├── StgProductModelProductDescription.dtsx │ │ ├── StgSalesOrderDetail.dtsx │ │ ├── StgSalesOrderHeader.dtsx │ │ ├── cmgr_AsureStorage_ssiscookbook.conmgr │ │ ├── cmgr_DW.conmgr │ │ ├── cmgr_MDS_DB.conmgr │ │ └── cmgr_Source.conmgr └── Starter │ ├── AdventureWorksETL │ ├── .vs │ │ └── AdventureWorksETL │ │ │ └── v14 │ │ │ └── .suo │ ├── AdventureWorksETL.database │ ├── AdventureWorksETL.dtproj │ ├── AdventureWorksETL.dtproj.user │ ├── AdventureWorksETL.sln │ ├── CascadingLookup.dtsx │ ├── ExecutionTrees.dtsx │ ├── LookupCache.dtsx │ ├── LookupExpression.dtsx │ ├── Project.params │ ├── bin │ │ └── Development │ │ │ └── AdventureWorksETL.ispac │ └── obj │ │ └── Development │ │ ├── AdventureWorksETL.dtproj │ │ ├── BuildLog.xml │ │ ├── CascadingLookup.dtsx │ │ ├── ExecutionTrees.dtsx │ │ ├── LookupCache.dtsx │ │ ├── LookupExpression.dtsx │ │ ├── LookupExpressions.dtsx │ │ ├── PartiallyCachedLookup.dtsx │ │ ├── Project.params │ │ ├── StgSalesOrderHeader.dtsx │ │ ├── cmgr_DW.conmgr │ │ ├── cmgr_Reference.conmgr │ │ └── cmgr_Source.conmgr │ └── SSISCookbook │ ├── .vs │ └── SSISCookbook │ │ └── v14 │ │ └── .suo │ ├── EP_Staging.dtsx │ ├── ETL.Staging.dtproj │ ├── ETL.Staging.dtproj.user │ ├── ExternalProducts.xml │ ├── ExternalProducts.xsd │ ├── ExternalProductsSchema.xml │ ├── Project.params │ ├── SSISCookbook.database │ ├── SSISCookbook.dtproj │ ├── SSISCookbook.dtproj.user │ ├── SSISCookbook.sln │ ├── Sales2001.csv │ ├── Sales2002.csv │ ├── Staging.database │ ├── StgAddress.dtsx │ ├── StgAggregatedSalesFromCloudDW.dtsx │ ├── StgCustomer.dtsx │ ├── StgCustomerAddress.dtsx │ ├── StgOrderProvenance.dtsx │ ├── StgProduct.dtsx │ ├── StgProductCategory.dtsx │ ├── StgProductDescription.dtsx │ ├── StgProductModel.dtsx │ ├── StgProductModelProductDescription.dtsx │ ├── StgSalesOrderDetail.dtsx │ ├── StgSalesOrderHeader.dtsx │ ├── bin │ └── Development │ │ └── ETL.ispac │ ├── cmgr_AsureStorage_ssiscookbook.conmgr │ ├── cmgr_DW.conmgr │ ├── cmgr_MDS_DB.conmgr │ ├── cmgr_Source.conmgr │ └── obj │ └── Development │ ├── BuildLog.xml │ ├── EP_Staging.dtsx │ ├── ETL.Staging.dtproj │ ├── Project.params │ ├── StgAddress.dtsx │ ├── StgAggregatedSalesFromCloudDW.dtsx │ ├── StgCustomer.dtsx │ ├── StgCustomerAddress.dtsx │ ├── StgProduct.dtsx │ ├── StgProductCategory.dtsx │ ├── StgProductDescription.dtsx │ ├── StgProductModel.dtsx │ ├── StgProductModelProductDescription.dtsx │ ├── StgSalesOrderDetail.dtsx │ ├── StgSalesOrderHeader.dtsx │ ├── cmgr_AsureStorage_ssiscookbook.conmgr │ ├── cmgr_DW.conmgr │ ├── cmgr_MDS_DB.conmgr │ └── cmgr_Source.conmgr ├── Chapter07 ├── Files │ ├── Ch07_03.txt │ ├── Ch07_08.txt │ ├── Ch07_10.txt │ ├── Ch07_Orders.xls │ ├── Ch07_PersonData.csv │ └── DataProfiling.xml ├── Scripts │ ├── Chapter07.txt │ └── Chapter07_Preparation.sql └── Solution │ └── AdventureWorksETL │ ├── AdventureWorksETL.database │ ├── AdventureWorksETL.dtproj │ ├── AdventureWorksETL.dtproj.user │ ├── AdventureWorksETL.sln │ ├── AirportInfo_000.JSON │ ├── CustomWebServiceSource.dtsx │ ├── FileSizes.dtsx │ ├── ProcessingExcel.dtsx │ ├── Project.params │ ├── RegExValidation.dtsx │ ├── UsingVariables.dtsx │ ├── bin │ └── Development │ │ └── AdventureWorksETL.ispac │ └── obj │ └── Development │ ├── AdventureWorksETL.dtproj │ ├── BuildLog.xml │ ├── CustomWebServiceSource.dtsx │ ├── FileSizes.dtsx │ ├── ProcessingExcel.dtsx │ ├── Project.params │ ├── RegExValidation.dtsx │ └── UsingVariables.dtsx ├── Chapter08 ├── Blogs.txt ├── Ch08SSAS │ ├── Adventure Works DW2014.ds │ ├── Adventure Works DW2014.dsv │ ├── Ch08SSAS.database │ ├── Ch08SSAS.dwproj │ ├── Ch08SSAS.dwproj.user │ ├── Train Test.dmm │ ├── bin │ │ ├── Ch08SSAS.asdatabase │ │ ├── Ch08SSAS.configsettings │ │ ├── Ch08SSAS.deploymentoptions │ │ └── Ch08SSAS.deploymenttargets │ └── obj │ │ └── Development │ │ ├── IncrementalShapshot.xml │ │ └── LastBuilt.xml ├── Chapter08.R ├── Chapter08.sql └── Chapter08 │ ├── Ch08NaiveBayes │ ├── Adventure Works DW2014.ds │ ├── Adventure Works DW2014.dsv │ ├── Ch08NaiveBayes.database │ ├── Ch08NaiveBayes.dwproj │ ├── Ch08NaiveBayes.dwproj.user │ ├── TM.dmm │ ├── bin │ │ ├── Ch08NaiveBayes.asdatabase │ │ ├── Ch08NaiveBayes.configsettings │ │ ├── Ch08NaiveBayes.deploymentoptions │ │ └── Ch08NaiveBayes.deploymenttargets │ └── obj │ │ └── Development │ │ ├── IncrementalShapshot.xml │ │ └── LastBuilt.xml │ ├── Chapter08.database │ ├── Chapter08.dtproj │ ├── Chapter08.dtproj.user │ ├── Chapter08.sln │ ├── DataMining.dtsx │ ├── Project.params │ ├── SplitData.dtsx │ ├── TermExtractionLookup.dtsx │ ├── bin │ └── Development │ │ └── Chapter08.ispac │ └── obj │ └── Development │ ├── BuildLog.xml │ ├── Chapter08.dtproj │ ├── DataMining.dtsx │ ├── Project.params │ ├── SplitData.dtsx │ └── TermExtractionLookup.dtsx ├── Chapter10 ├── Scripts │ ├── Chapter10.txt │ ├── Chapter10_GAC_WinSCPnet.bat │ └── SSIS2016Cookbook.snk ├── Solution │ ├── AdventureWorksETL │ │ ├── .vs │ │ │ └── AdventureWorksETL │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ ├── AdventureWorksETL.database │ │ ├── AdventureWorksETL.dtproj │ │ ├── AdventureWorksETL.dtproj.user │ │ ├── AdventureWorksETL.sln │ │ ├── Project.params │ │ ├── RegExValidation.dtsx │ │ ├── SecureFtpTask.dtsx │ │ ├── bin │ │ │ ├── Debug │ │ │ │ └── AdventureWorksETL.ispac │ │ │ └── Development │ │ │ │ └── AdventureWorksETL.ispac │ │ └── obj │ │ │ ├── Debug │ │ │ ├── AdventureWorksETL.dtproj │ │ │ ├── BuildLog.xml │ │ │ ├── Project.params │ │ │ ├── RegExValidation.dtsx │ │ │ └── SecureFtpTask.dtsx │ │ │ └── Development │ │ │ ├── AdventureWorksETL.dtproj │ │ │ ├── BuildLog.xml │ │ │ ├── CustomWebServiceSource.dtsx │ │ │ ├── FileSizes.dtsx │ │ │ ├── ProcessingExcel.dtsx │ │ │ ├── Project.params │ │ │ ├── RegExValidation.dtsx │ │ │ ├── SecureFtpTask.dtsx │ │ │ └── UsingVariables.dtsx │ ├── Chapter10_Deploy_CustomComponent.bat │ ├── Chapter10_Deploy_CustomComponent2.bat │ ├── Chapter10_Deploy_CustomTask.bat │ └── SSISCustomization │ │ ├── .vs │ │ └── SSISCustomization │ │ │ └── v14 │ │ │ └── .suo │ │ ├── SSISCustomComponents │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SSIS2016Cookbook.snk │ │ ├── SSISCustomComponents.csproj │ │ ├── SSISCustomComponents.csproj.user │ │ ├── ValidateEmail.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── Microsoft.SQLServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomComponents.dll │ │ │ │ └── SSISCustomComponents.pdb │ │ │ └── Release │ │ │ │ ├── Microsoft.SQLServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomComponents.dll │ │ │ │ └── SSISCustomComponents.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomComponents.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomComponents.dll │ │ │ ├── SSISCustomComponents.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomComponents.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomComponents.csprojResolveAssemblyReference.cache │ │ │ ├── SSISCustomComponents.dll │ │ │ ├── SSISCustomComponents.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── SSISCustomComponents2 │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SSIS2016Cookbook.snk │ │ ├── SSISCustomComponents2.csproj │ │ ├── ValidateEmail.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── Microsoft.SQLServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomComponents.dll │ │ │ │ └── SSISCustomComponents.pdb │ │ │ └── Release │ │ │ │ ├── Microsoft.SQLServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomComponents.dll │ │ │ │ └── SSISCustomComponents.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomComponents.dll │ │ │ ├── SSISCustomComponents.pdb │ │ │ ├── SSISCustomComponents2.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomComponents2.csprojResolveAssemblyReference.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomComponents.dll │ │ │ ├── SSISCustomComponents.pdb │ │ │ ├── SSISCustomComponents2.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomComponents2.csprojResolveAssemblyReference.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── SSISCustomTasks │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SSIS2016Cookbook.snk │ │ ├── SSISCustomTasks.csproj │ │ ├── SecureFTP.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── Microsoft.SQLServer.ManagedDTS.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.Dts.Design.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomTasks.dll │ │ │ │ ├── SSISCustomTasks.pdb │ │ │ │ └── WinSCPnet.dll │ │ │ └── Release │ │ │ │ ├── Microsoft.SQLServer.ManagedDTS.dll │ │ │ │ ├── Microsoft.SqlServer.DTSPipelineWrap.dll │ │ │ │ ├── Microsoft.SqlServer.DTSRuntimeWrap.dll │ │ │ │ ├── Microsoft.SqlServer.Dts.Design.dll │ │ │ │ ├── Microsoft.SqlServer.PipelineHost.dll │ │ │ │ ├── SSISCustomTasks.dll │ │ │ │ ├── SSISCustomTasks.pdb │ │ │ │ └── WinSCPnet.dll │ │ └── obj │ │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomTasks.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomTasks.dll │ │ │ ├── SSISCustomTasks.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SSISCustomTasks.csproj.FileListAbsolute.txt │ │ │ ├── SSISCustomTasks.csprojResolveAssemblyReference.cache │ │ │ ├── SSISCustomTasks.dll │ │ │ ├── SSISCustomTasks.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ └── SSISCustomization.sln └── Starter │ ├── AdventureWorksETL │ ├── .vs │ │ └── AdventureWorksETL │ │ │ └── v14 │ │ │ └── .suo │ ├── AdventureWorksETL.database │ ├── AdventureWorksETL.dtproj │ ├── AdventureWorksETL.dtproj.user │ ├── AdventureWorksETL.sln │ ├── Project.params │ ├── RegExValidation.dtsx │ ├── SecureFtpTask.dtsx │ ├── bin │ │ ├── Debug │ │ │ └── AdventureWorksETL.ispac │ │ └── Development │ │ │ └── AdventureWorksETL.ispac │ └── obj │ │ ├── Debug │ │ ├── AdventureWorksETL.dtproj │ │ ├── BuildLog.xml │ │ ├── Project.params │ │ ├── RegExValidation.dtsx │ │ └── SecureFtpTask.dtsx │ │ └── Development │ │ ├── AdventureWorksETL.dtproj │ │ ├── BuildLog.xml │ │ ├── CustomWebServiceSource.dtsx │ │ ├── FileSizes.dtsx │ │ ├── ProcessingExcel.dtsx │ │ ├── Project.params │ │ ├── RegExValidation.dtsx │ │ ├── SecureFtpTask.dtsx │ │ └── UsingVariables.dtsx │ ├── Chapter10_Deploy_CustomComponent.bat │ └── Chapter10_Deploy_CustomTask.bat ├── Common files ├── AdventureWorkLTDW.zip ├── AdventureWorkLTDW2012.zip ├── AdventureWorksLT.zip ├── DBAdventureworksLTDW.zip ├── Datamart.zip ├── ETL.HDP.zip ├── General.zip ├── MasterData.zip ├── SSISCookBook (1).sln ├── SSISCookBook.sln ├── Staging.zip ├── gitattributes └── gitignore ├── LICENSE └── README.md /Chapter05/AWCustomer.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/AWCustomer.pkg -------------------------------------------------------------------------------- /Chapter05/AWCustomers.dqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/AWCustomers.dqs -------------------------------------------------------------------------------- /Chapter05/AWCustomersMatching.dqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/AWCustomersMatching.dqs -------------------------------------------------------------------------------- /Chapter05/Chapter05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05.sql -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/Chapter05.database -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/Chapter05.dtproj -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/Chapter05.dtproj.user -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/Chapter05.sln -------------------------------------------------------------------------------- /Chapter05/Chapter05/DataMatching.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/DataMatching.dtsx -------------------------------------------------------------------------------- /Chapter05/Chapter05/DataProfiling.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/DataProfiling.dtsx -------------------------------------------------------------------------------- /Chapter05/Chapter05/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/Project.params -------------------------------------------------------------------------------- /Chapter05/Chapter05/bin/Development/Chapter05.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/bin/Development/Chapter05.ispac -------------------------------------------------------------------------------- /Chapter05/Chapter05/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter05/Chapter05/obj/Development/Chapter05.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/obj/Development/Chapter05.dtproj -------------------------------------------------------------------------------- /Chapter05/Chapter05/obj/Development/DataMatching.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/obj/Development/DataMatching.dtsx -------------------------------------------------------------------------------- /Chapter05/Chapter05/obj/Development/DataProfiling.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/obj/Development/DataProfiling.dtsx -------------------------------------------------------------------------------- /Chapter05/Chapter05/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/Chapter05/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter05/DataProfiling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter05/DataProfiling.xml -------------------------------------------------------------------------------- /Chapter06/Files/Clients.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Files/Clients.csv -------------------------------------------------------------------------------- /Chapter06/Files/Clients_A-H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Files/Clients_A-H.csv -------------------------------------------------------------------------------- /Chapter06/Files/Clients_H-R.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Files/Clients_H-R.csv -------------------------------------------------------------------------------- /Chapter06/Files/Clients_R-Z.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Files/Clients_R-Z.csv -------------------------------------------------------------------------------- /Chapter06/Files/CustomLogging.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Files/CustomLogging.ispac -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06.sql -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06_Configuration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06_Configuration.sql -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06_Execution_DTExec.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06_Execution_DTExec.bat -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06_Execution_PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06_Execution_PowerShell.ps1 -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06_Preparation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06_Preparation.sql -------------------------------------------------------------------------------- /Chapter06/Scripts/Chapter06_ProjectDeployment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Scripts/Chapter06_ProjectDeployment.bat -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.database -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/AdventureWorksETL.sln -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/CascadingLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/CascadingLookup.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/ExecutionTrees.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/ExecutionTrees.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/LookupCache.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/LookupCache.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/LookupExpression.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/LookupExpression.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/Project.params -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/CascadingLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/CascadingLookup.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/ExecutionTrees.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/ExecutionTrees.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/LookupCache.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/LookupCache.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/LookupExpression.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/LookupExpression.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/AdventureWorksETL/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/AdventureWorksETL/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/.vs/SSISCookbook/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/.vs/SSISCookbook/v14/.suo -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/EP_Staging.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/EP_Staging.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/ETL.Staging.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/ETL.Staging.dtproj -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/ETL.Staging.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/ETL.Staging.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/ExternalProducts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/ExternalProducts.xml -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/ExternalProducts.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/ExternalProducts.xsd -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/ExternalProductsSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/ExternalProductsSchema.xml -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/Project.params -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/SSISCookbook.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/SSISCookbook.database -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/SSISCookbook.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/SSISCookbook.dtproj -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/SSISCookbook.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/SSISCookbook.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/SSISCookbook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/SSISCookbook.sln -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/Sales2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/Sales2001.csv -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/Sales2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/Sales2002.csv -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/Staging.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/Staging.database -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgAggregatedSalesFromCloudDW.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgAggregatedSalesFromCloudDW.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgCustomer.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgCustomer.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgCustomerAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgCustomerAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgOrderProvenance.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgOrderProvenance.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgProduct.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgProduct.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgProductCategory.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgProductCategory.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgProductModel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgProductModel.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgProductModelProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgProductModelProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgSalesOrderDetail.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgSalesOrderDetail.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/StgSalesOrderHeader.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/StgSalesOrderHeader.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/bin/Development/ETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/bin/Development/ETL.ispac -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/cmgr_AsureStorage_ssiscookbook.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/cmgr_AsureStorage_ssiscookbook.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/cmgr_DW.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/cmgr_DW.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/cmgr_MDS_DB.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/cmgr_MDS_DB.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/cmgr_Source.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/cmgr_Source.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/EP_Staging.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/EP_Staging.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/ETL.Staging.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/ETL.Staging.dtproj -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgAggregatedSalesFromCloudDW.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgAggregatedSalesFromCloudDW.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgCustomer.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgCustomer.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgCustomerAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgCustomerAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgProduct.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgProduct.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgProductCategory.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgProductCategory.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgProductModel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgProductModel.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgProductModelProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgProductModelProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgSalesOrderDetail.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgSalesOrderDetail.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/StgSalesOrderHeader.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/StgSalesOrderHeader.dtsx -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/cmgr_AsureStorage_ssiscookbook.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/cmgr_AsureStorage_ssiscookbook.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/cmgr_DW.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/cmgr_DW.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/cmgr_MDS_DB.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/cmgr_MDS_DB.conmgr -------------------------------------------------------------------------------- /Chapter06/Solution/SSISCookbook/obj/Development/cmgr_Source.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Solution/SSISCookbook/obj/Development/cmgr_Source.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.database -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/AdventureWorksETL.sln -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/CascadingLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/CascadingLookup.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/ExecutionTrees.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/ExecutionTrees.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/LookupCache.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/LookupCache.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/LookupExpression.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/LookupExpression.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/Project.params -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/CascadingLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/CascadingLookup.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/ExecutionTrees.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/ExecutionTrees.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/LookupCache.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/LookupCache.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/LookupExpression.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/LookupExpression.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/LookupExpressions.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/LookupExpressions.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/PartiallyCachedLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/PartiallyCachedLookup.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/StgSalesOrderHeader.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/StgSalesOrderHeader.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_DW.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_DW.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_Reference.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_Reference.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_Source.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/AdventureWorksETL/obj/Development/cmgr_Source.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/.vs/SSISCookbook/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/.vs/SSISCookbook/v14/.suo -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/EP_Staging.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/EP_Staging.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/ETL.Staging.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/ETL.Staging.dtproj -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/ETL.Staging.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/ETL.Staging.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/ExternalProducts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/ExternalProducts.xml -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/ExternalProducts.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/ExternalProducts.xsd -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/ExternalProductsSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/ExternalProductsSchema.xml -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/Project.params -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/SSISCookbook.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/SSISCookbook.database -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/SSISCookbook.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/SSISCookbook.dtproj -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/SSISCookbook.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/SSISCookbook.dtproj.user -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/SSISCookbook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/SSISCookbook.sln -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/Sales2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/Sales2001.csv -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/Sales2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/Sales2002.csv -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/Staging.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/Staging.database -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgAggregatedSalesFromCloudDW.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgAggregatedSalesFromCloudDW.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgCustomer.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgCustomer.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgCustomerAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgCustomerAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgOrderProvenance.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgOrderProvenance.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgProduct.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgProduct.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgProductCategory.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgProductCategory.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgProductModel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgProductModel.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgProductModelProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgProductModelProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgSalesOrderDetail.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgSalesOrderDetail.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/StgSalesOrderHeader.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/StgSalesOrderHeader.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/bin/Development/ETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/bin/Development/ETL.ispac -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/cmgr_AsureStorage_ssiscookbook.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/cmgr_AsureStorage_ssiscookbook.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/cmgr_DW.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/cmgr_DW.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/cmgr_MDS_DB.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/cmgr_MDS_DB.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/cmgr_Source.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/cmgr_Source.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/EP_Staging.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/EP_Staging.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/ETL.Staging.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/ETL.Staging.dtproj -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgAggregatedSalesFromCloudDW.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgAggregatedSalesFromCloudDW.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgCustomer.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgCustomer.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgCustomerAddress.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgCustomerAddress.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgProduct.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgProduct.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgProductCategory.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgProductCategory.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgProductModel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgProductModel.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgProductModelProductDescription.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgProductModelProductDescription.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgSalesOrderDetail.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgSalesOrderDetail.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/StgSalesOrderHeader.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/StgSalesOrderHeader.dtsx -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/cmgr_AsureStorage_ssiscookbook.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/cmgr_AsureStorage_ssiscookbook.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/cmgr_DW.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/cmgr_DW.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/cmgr_MDS_DB.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/cmgr_MDS_DB.conmgr -------------------------------------------------------------------------------- /Chapter06/Starter/SSISCookbook/obj/Development/cmgr_Source.conmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter06/Starter/SSISCookbook/obj/Development/cmgr_Source.conmgr -------------------------------------------------------------------------------- /Chapter07/Files/Ch07_03.txt: -------------------------------------------------------------------------------- 1 | 333 -------------------------------------------------------------------------------- /Chapter07/Files/Ch07_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Files/Ch07_08.txt -------------------------------------------------------------------------------- /Chapter07/Files/Ch07_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Files/Ch07_10.txt -------------------------------------------------------------------------------- /Chapter07/Files/Ch07_Orders.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Files/Ch07_Orders.xls -------------------------------------------------------------------------------- /Chapter07/Files/Ch07_PersonData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Files/Ch07_PersonData.csv -------------------------------------------------------------------------------- /Chapter07/Files/DataProfiling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Files/DataProfiling.xml -------------------------------------------------------------------------------- /Chapter07/Scripts/Chapter07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Scripts/Chapter07.txt -------------------------------------------------------------------------------- /Chapter07/Scripts/Chapter07_Preparation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Scripts/Chapter07_Preparation.sql -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.database -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/AdventureWorksETL.sln -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/AirportInfo_000.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/AirportInfo_000.JSON -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/CustomWebServiceSource.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/CustomWebServiceSource.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/FileSizes.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/FileSizes.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/ProcessingExcel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/ProcessingExcel.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/Project.params -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/UsingVariables.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/UsingVariables.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/FileSizes.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/FileSizes.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter07/Solution/AdventureWorksETL/obj/Development/UsingVariables.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter07/Solution/AdventureWorksETL/obj/Development/UsingVariables.dtsx -------------------------------------------------------------------------------- /Chapter08/Blogs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Blogs.txt -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Adventure Works DW2014.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Adventure Works DW2014.ds -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Adventure Works DW2014.dsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Adventure Works DW2014.dsv -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Ch08SSAS.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Ch08SSAS.database -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Ch08SSAS.dwproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Ch08SSAS.dwproj -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Ch08SSAS.dwproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Ch08SSAS.dwproj.user -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/Train Test.dmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/Train Test.dmm -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/bin/Ch08SSAS.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/bin/Ch08SSAS.asdatabase -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/bin/Ch08SSAS.configsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/bin/Ch08SSAS.configsettings -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/bin/Ch08SSAS.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/bin/Ch08SSAS.deploymentoptions -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/bin/Ch08SSAS.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/bin/Ch08SSAS.deploymenttargets -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/obj/Development/IncrementalShapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/obj/Development/IncrementalShapshot.xml -------------------------------------------------------------------------------- /Chapter08/Ch08SSAS/obj/Development/LastBuilt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Ch08SSAS/obj/Development/LastBuilt.xml -------------------------------------------------------------------------------- /Chapter08/Chapter08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08.R -------------------------------------------------------------------------------- /Chapter08/Chapter08.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08.sql -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/Adventure Works DW2014.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/Adventure Works DW2014.ds -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/Adventure Works DW2014.dsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/Adventure Works DW2014.dsv -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.database -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.dwproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.dwproj -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.dwproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/Ch08NaiveBayes.dwproj.user -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/TM.dmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/TM.dmm -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.asdatabase -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.configsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.configsettings -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.deploymentoptions -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/bin/Ch08NaiveBayes.deploymenttargets -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/obj/Development/IncrementalShapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/obj/Development/IncrementalShapshot.xml -------------------------------------------------------------------------------- /Chapter08/Chapter08/Ch08NaiveBayes/obj/Development/LastBuilt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Ch08NaiveBayes/obj/Development/LastBuilt.xml -------------------------------------------------------------------------------- /Chapter08/Chapter08/Chapter08.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Chapter08.database -------------------------------------------------------------------------------- /Chapter08/Chapter08/Chapter08.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Chapter08.dtproj -------------------------------------------------------------------------------- /Chapter08/Chapter08/Chapter08.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Chapter08.dtproj.user -------------------------------------------------------------------------------- /Chapter08/Chapter08/Chapter08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Chapter08.sln -------------------------------------------------------------------------------- /Chapter08/Chapter08/DataMining.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/DataMining.dtsx -------------------------------------------------------------------------------- /Chapter08/Chapter08/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/Project.params -------------------------------------------------------------------------------- /Chapter08/Chapter08/SplitData.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/SplitData.dtsx -------------------------------------------------------------------------------- /Chapter08/Chapter08/TermExtractionLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/TermExtractionLookup.dtsx -------------------------------------------------------------------------------- /Chapter08/Chapter08/bin/Development/Chapter08.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/bin/Development/Chapter08.ispac -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/Chapter08.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/Chapter08.dtproj -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/DataMining.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/DataMining.dtsx -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/SplitData.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/SplitData.dtsx -------------------------------------------------------------------------------- /Chapter08/Chapter08/obj/Development/TermExtractionLookup.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter08/Chapter08/obj/Development/TermExtractionLookup.dtsx -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Scripts/Chapter10.txt -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_GAC_WinSCPnet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Scripts/Chapter10_GAC_WinSCPnet.bat -------------------------------------------------------------------------------- /Chapter10/Scripts/SSIS2016Cookbook.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Scripts/SSIS2016Cookbook.snk -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.database -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.dtproj.user -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/AdventureWorksETL.sln -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/Project.params -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/bin/Debug/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/bin/Debug/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Debug/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Debug/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Debug/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Debug/BuildLog.xml -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Debug/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Debug/Project.params -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Debug/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Debug/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Debug/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Debug/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/FileSizes.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/FileSizes.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/AdventureWorksETL/obj/Development/UsingVariables.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/AdventureWorksETL/obj/Development/UsingVariables.dtsx -------------------------------------------------------------------------------- /Chapter10/Solution/Chapter10_Deploy_CustomComponent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/Chapter10_Deploy_CustomComponent.bat -------------------------------------------------------------------------------- /Chapter10/Solution/Chapter10_Deploy_CustomComponent2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/Chapter10_Deploy_CustomComponent2.bat -------------------------------------------------------------------------------- /Chapter10/Solution/Chapter10_Deploy_CustomTask.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/Chapter10_Deploy_CustomTask.bat -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/.vs/SSISCustomization/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/.vs/SSISCustomization/v14/.suo -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSIS2016Cookbook.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSIS2016Cookbook.snk -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSISCustomComponents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSISCustomComponents.csproj -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSISCustomComponents.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/SSISCustomComponents.csproj.user -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/ValidateEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/ValidateEmail.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SQLServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SQLServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Debug/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SQLServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SQLServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/bin/Release/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/SSIS2016Cookbook.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/SSIS2016Cookbook.snk -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/SSISCustomComponents2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/SSISCustomComponents2.csproj -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/ValidateEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/ValidateEmail.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SQLServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SQLServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Debug/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SQLServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SQLServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/bin/Release/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents2.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/SSISCustomComponents2.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents2.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/SSISCustomComponents2.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomComponents2/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/SSIS2016Cookbook.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/SSIS2016Cookbook.snk -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/SSISCustomTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/SSISCustomTasks.csproj -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/SecureFTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/SecureFTP.cs -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SQLServer.ManagedDTS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SQLServer.ManagedDTS.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.Dts.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.Dts.Design.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/SSISCustomTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/SSISCustomTasks.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/SSISCustomTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/SSISCustomTasks.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/WinSCPnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Debug/WinSCPnet.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SQLServer.ManagedDTS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SQLServer.ManagedDTS.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.DTSPipelineWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.DTSRuntimeWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.DTSRuntimeWrap.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.Dts.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.Dts.Design.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.PipelineHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/Microsoft.SqlServer.PipelineHost.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/SSISCustomTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/SSISCustomTasks.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/SSISCustomTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/SSISCustomTasks.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/WinSCPnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/bin/Release/WinSCPnet.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/SSISCustomTasks.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.dll -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/SSISCustomTasks.pdb -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomTasks/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Solution/SSISCustomization/SSISCustomization.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Solution/SSISCustomization/SSISCustomization.sln -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/.vs/AdventureWorksETL/v14/.suo -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.database -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.dtproj.user -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/AdventureWorksETL.sln -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/Project.params -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/bin/Debug/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/bin/Debug/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/bin/Development/AdventureWorksETL.ispac -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Debug/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Debug/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Debug/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Debug/BuildLog.xml -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Debug/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Debug/Project.params -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Debug/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Debug/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Debug/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Debug/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/AdventureWorksETL.dtproj -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/BuildLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/BuildLog.xml -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/CustomWebServiceSource.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/FileSizes.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/FileSizes.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/ProcessingExcel.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/Project.params -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/RegExValidation.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/RegExValidation.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/SecureFtpTask.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/SecureFtpTask.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/AdventureWorksETL/obj/Development/UsingVariables.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/AdventureWorksETL/obj/Development/UsingVariables.dtsx -------------------------------------------------------------------------------- /Chapter10/Starter/Chapter10_Deploy_CustomComponent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/Chapter10_Deploy_CustomComponent.bat -------------------------------------------------------------------------------- /Chapter10/Starter/Chapter10_Deploy_CustomTask.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Chapter10/Starter/Chapter10_Deploy_CustomTask.bat -------------------------------------------------------------------------------- /Common files/AdventureWorkLTDW.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/AdventureWorkLTDW.zip -------------------------------------------------------------------------------- /Common files/AdventureWorkLTDW2012.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/AdventureWorkLTDW2012.zip -------------------------------------------------------------------------------- /Common files/AdventureWorksLT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/AdventureWorksLT.zip -------------------------------------------------------------------------------- /Common files/DBAdventureworksLTDW.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/DBAdventureworksLTDW.zip -------------------------------------------------------------------------------- /Common files/Datamart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/Datamart.zip -------------------------------------------------------------------------------- /Common files/ETL.HDP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/ETL.HDP.zip -------------------------------------------------------------------------------- /Common files/General.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/General.zip -------------------------------------------------------------------------------- /Common files/MasterData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/MasterData.zip -------------------------------------------------------------------------------- /Common files/SSISCookBook (1).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/SSISCookBook (1).sln -------------------------------------------------------------------------------- /Common files/SSISCookBook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/SSISCookBook.sln -------------------------------------------------------------------------------- /Common files/Staging.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/Staging.zip -------------------------------------------------------------------------------- /Common files/gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/gitattributes -------------------------------------------------------------------------------- /Common files/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/Common files/gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/SQL-Server-2017-Integration-Services-Cookbook/HEAD/README.md --------------------------------------------------------------------------------