├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .whitesource ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE ├── README.md ├── ReactiveETL.MongoDb ├── Helpers │ └── MongoDbExtensions.cs ├── MongoDbOperation.cs ├── ReactiveETL.MongoDb.csproj └── SuppressWarnings.cs ├── ReactiveETL.Tests ├── AdventureWorks │ └── AdworksTests.cs ├── App.config ├── Errors │ └── ErrorsFixture.cs ├── Files │ ├── FileReadTest.txt │ ├── FileTest.cs │ ├── MySimpleDal.cs │ └── UsingDALFixture.cs ├── Helper.cs ├── Joins │ ├── BaseJoinFixture.cs │ └── JoinFixture.cs ├── ReactiveETL.Tests.csproj └── UsersToPeople │ ├── BaseUserToPeopleTest.cs │ ├── User.cs │ ├── UserRecord.cs │ ├── UsersToPeopleActions.cs │ └── UsersToPeopleTest.cs ├── ReactiveETL.sln ├── ReactiveETL ├── AbstractObservableOperation.cs ├── AbstractOperation.cs ├── Activators │ ├── CommandActivator.cs │ ├── FileWriteActivator.cs │ ├── JoinActivator.cs │ └── OperationJoinActivator.cs ├── AnonymousDisposable.cs ├── Constants.cs ├── EtlFullResult.cs ├── EtlResult.cs ├── Exceptions │ ├── EtlResultException.cs │ ├── MissingKeyException.cs │ ├── ParameterCountException.cs │ └── ReactiveETLException.cs ├── Files │ ├── FileEngine.cs │ └── FluentFile.cs ├── Helpers │ ├── DbExtensions.cs │ ├── DbHelpers.cs │ ├── FileExtensions.cs │ ├── Helpers.cs │ ├── JoinExtensions.cs │ ├── OperationsExtensions.cs │ ├── RowJoinHelper.cs │ └── StringExtensions.cs ├── IObservableOperation.cs ├── IOperation.cs ├── Infrastructure │ ├── DatabaseSettings.cs │ ├── SqlCommandSet.cs │ └── Use.cs ├── Input.cs ├── LogProvider.cs ├── ObjectArrayKeys.cs ├── Operations │ ├── ApplyOperation.cs │ ├── ConsoleCountOperation.cs │ ├── Database │ │ ├── CommandOperation.cs │ │ └── InputCommandOperation.cs │ ├── DispatchGroupOperation.cs │ ├── File │ │ ├── FileWriteOperation.cs │ │ └── InputFileOperation.cs │ ├── FilterOperation.cs │ ├── GroupByOperation.cs │ ├── InputEnumerableOperation.cs │ ├── JoinOperation.cs │ ├── RecordOperation.cs │ ├── StartOperation.cs │ └── TransformOperation.cs ├── QuackingDictionary.cs ├── ReactiveETL.csproj ├── ReactiveETL.nuspec ├── Row.cs └── TODO.txt └── TestDatabase ├── Permissions.sql ├── Properties ├── Database.sqlcmdvars ├── Database.sqldeployment ├── Database.sqlpermissions └── Database.sqlsettings ├── Schema Objects ├── Database Level Objects │ ├── Service Broker │ │ └── Routes │ │ │ └── AutoCreatedLocal.route.sql │ └── Storage │ │ └── Files │ │ ├── test.sqlfile.sql │ │ └── test_log.sqlfile.sql └── Schemas │ └── dbo │ └── Tables │ ├── Fibonacci.table.sql │ ├── People.table.sql │ ├── Roles.table.sql │ ├── User2Role.table.sql │ └── Users.table.sql ├── Scripts ├── Post-Deployment │ └── Script.PostDeployment.sql └── Pre-Deployment │ └── Script.PreDeployment.sql ├── TestDatabase.dbproj ├── TestDatabase.sqlproj └── TestDatabase_20150513100432.sqlproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/.whitesource -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/README.md -------------------------------------------------------------------------------- /ReactiveETL.MongoDb/Helpers/MongoDbExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.MongoDb/Helpers/MongoDbExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL.MongoDb/MongoDbOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.MongoDb/MongoDbOperation.cs -------------------------------------------------------------------------------- /ReactiveETL.MongoDb/ReactiveETL.MongoDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.MongoDb/ReactiveETL.MongoDb.csproj -------------------------------------------------------------------------------- /ReactiveETL.MongoDb/SuppressWarnings.cs: -------------------------------------------------------------------------------- 1 | #pragma warning disable 0436 -------------------------------------------------------------------------------- /ReactiveETL.Tests/AdventureWorks/AdworksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/AdventureWorks/AdworksTests.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/App.config -------------------------------------------------------------------------------- /ReactiveETL.Tests/Errors/ErrorsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Errors/ErrorsFixture.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Files/FileReadTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Files/FileReadTest.txt -------------------------------------------------------------------------------- /ReactiveETL.Tests/Files/FileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Files/FileTest.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Files/MySimpleDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Files/MySimpleDal.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Files/UsingDALFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Files/UsingDALFixture.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Helper.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Joins/BaseJoinFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Joins/BaseJoinFixture.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/Joins/JoinFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/Joins/JoinFixture.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/ReactiveETL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/ReactiveETL.Tests.csproj -------------------------------------------------------------------------------- /ReactiveETL.Tests/UsersToPeople/BaseUserToPeopleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/UsersToPeople/BaseUserToPeopleTest.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/UsersToPeople/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/UsersToPeople/User.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/UsersToPeople/UserRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/UsersToPeople/UserRecord.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/UsersToPeople/UsersToPeopleActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/UsersToPeople/UsersToPeopleActions.cs -------------------------------------------------------------------------------- /ReactiveETL.Tests/UsersToPeople/UsersToPeopleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.Tests/UsersToPeople/UsersToPeopleTest.cs -------------------------------------------------------------------------------- /ReactiveETL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL.sln -------------------------------------------------------------------------------- /ReactiveETL/AbstractObservableOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/AbstractObservableOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/AbstractOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/AbstractOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Activators/CommandActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Activators/CommandActivator.cs -------------------------------------------------------------------------------- /ReactiveETL/Activators/FileWriteActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Activators/FileWriteActivator.cs -------------------------------------------------------------------------------- /ReactiveETL/Activators/JoinActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Activators/JoinActivator.cs -------------------------------------------------------------------------------- /ReactiveETL/Activators/OperationJoinActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Activators/OperationJoinActivator.cs -------------------------------------------------------------------------------- /ReactiveETL/AnonymousDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/AnonymousDisposable.cs -------------------------------------------------------------------------------- /ReactiveETL/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Constants.cs -------------------------------------------------------------------------------- /ReactiveETL/EtlFullResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/EtlFullResult.cs -------------------------------------------------------------------------------- /ReactiveETL/EtlResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/EtlResult.cs -------------------------------------------------------------------------------- /ReactiveETL/Exceptions/EtlResultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Exceptions/EtlResultException.cs -------------------------------------------------------------------------------- /ReactiveETL/Exceptions/MissingKeyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Exceptions/MissingKeyException.cs -------------------------------------------------------------------------------- /ReactiveETL/Exceptions/ParameterCountException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Exceptions/ParameterCountException.cs -------------------------------------------------------------------------------- /ReactiveETL/Exceptions/ReactiveETLException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Exceptions/ReactiveETLException.cs -------------------------------------------------------------------------------- /ReactiveETL/Files/FileEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Files/FileEngine.cs -------------------------------------------------------------------------------- /ReactiveETL/Files/FluentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Files/FluentFile.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/DbExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/DbExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/DbHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/DbHelpers.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/FileExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/Helpers.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/JoinExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/JoinExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/OperationsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/OperationsExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/RowJoinHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/RowJoinHelper.cs -------------------------------------------------------------------------------- /ReactiveETL/Helpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Helpers/StringExtensions.cs -------------------------------------------------------------------------------- /ReactiveETL/IObservableOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/IObservableOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/IOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/IOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Infrastructure/DatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Infrastructure/DatabaseSettings.cs -------------------------------------------------------------------------------- /ReactiveETL/Infrastructure/SqlCommandSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Infrastructure/SqlCommandSet.cs -------------------------------------------------------------------------------- /ReactiveETL/Infrastructure/Use.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Infrastructure/Use.cs -------------------------------------------------------------------------------- /ReactiveETL/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Input.cs -------------------------------------------------------------------------------- /ReactiveETL/LogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/LogProvider.cs -------------------------------------------------------------------------------- /ReactiveETL/ObjectArrayKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/ObjectArrayKeys.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/ApplyOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/ApplyOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/ConsoleCountOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/ConsoleCountOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/Database/CommandOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/Database/CommandOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/Database/InputCommandOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/Database/InputCommandOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/DispatchGroupOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/DispatchGroupOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/File/FileWriteOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/File/FileWriteOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/File/InputFileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/File/InputFileOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/FilterOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/FilterOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/GroupByOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/GroupByOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/InputEnumerableOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/InputEnumerableOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/JoinOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/JoinOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/RecordOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/RecordOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/StartOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/StartOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/Operations/TransformOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Operations/TransformOperation.cs -------------------------------------------------------------------------------- /ReactiveETL/QuackingDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/QuackingDictionary.cs -------------------------------------------------------------------------------- /ReactiveETL/ReactiveETL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/ReactiveETL.csproj -------------------------------------------------------------------------------- /ReactiveETL/ReactiveETL.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/ReactiveETL.nuspec -------------------------------------------------------------------------------- /ReactiveETL/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/Row.cs -------------------------------------------------------------------------------- /ReactiveETL/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/ReactiveETL/TODO.txt -------------------------------------------------------------------------------- /TestDatabase/Permissions.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestDatabase/Properties/Database.sqlcmdvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Properties/Database.sqlcmdvars -------------------------------------------------------------------------------- /TestDatabase/Properties/Database.sqldeployment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Properties/Database.sqldeployment -------------------------------------------------------------------------------- /TestDatabase/Properties/Database.sqlpermissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Properties/Database.sqlpermissions -------------------------------------------------------------------------------- /TestDatabase/Properties/Database.sqlsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Properties/Database.sqlsettings -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Database Level Objects/Service Broker/Routes/AutoCreatedLocal.route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Database Level Objects/Service Broker/Routes/AutoCreatedLocal.route.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Database Level Objects/Storage/Files/test.sqlfile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Database Level Objects/Storage/Files/test.sqlfile.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Database Level Objects/Storage/Files/test_log.sqlfile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Database Level Objects/Storage/Files/test_log.sqlfile.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Schemas/dbo/Tables/Fibonacci.table.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE [dbo].[Fibonacci] ( 2 | [id] INT NULL 3 | ); 4 | 5 | -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Schemas/dbo/Tables/People.table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Schemas/dbo/Tables/People.table.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Schemas/dbo/Tables/Roles.table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Schemas/dbo/Tables/Roles.table.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Schemas/dbo/Tables/User2Role.table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Schemas/dbo/Tables/User2Role.table.sql -------------------------------------------------------------------------------- /TestDatabase/Schema Objects/Schemas/dbo/Tables/Users.table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Schema Objects/Schemas/dbo/Tables/Users.table.sql -------------------------------------------------------------------------------- /TestDatabase/Scripts/Post-Deployment/Script.PostDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Scripts/Post-Deployment/Script.PostDeployment.sql -------------------------------------------------------------------------------- /TestDatabase/Scripts/Pre-Deployment/Script.PreDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/Scripts/Pre-Deployment/Script.PreDeployment.sql -------------------------------------------------------------------------------- /TestDatabase/TestDatabase.dbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/TestDatabase.dbproj -------------------------------------------------------------------------------- /TestDatabase/TestDatabase.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/TestDatabase.sqlproj -------------------------------------------------------------------------------- /TestDatabase/TestDatabase_20150513100432.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhon/ReactiveETL/HEAD/TestDatabase/TestDatabase_20150513100432.sqlproj --------------------------------------------------------------------------------