NServiceBus.Persistence.Sql icon indicating copy to clipboard operation
NServiceBus.Persistence.Sql copied to clipboard

Native SQL Persistence for NServiceBus

Results 104 NServiceBus.Persistence.Sql issues
Sort by recently updated
recently updated
newest added

Bumps [System.Data.SqlClient](https://github.com/dotnet/corefx) from 4.8.4 to 4.8.5. Release notes Sourced from System.Data.SqlClient's releases. .NET Core 2.1.0 RC1 Release Notes Known Issues Download and Install Repos CoreCLR CoreFX Core-Setup CLI Commits See...

dependencies
.NET

Bumps [Microsoft.SqlServer.DACFx](https://github.com/microsoft/DacFx) from 160.6296.0 to 161.6374.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.SqlServer.DACFx&package-manager=nuget&previous-version=160.6296.0&new-version=161.6374.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies
.NET

Bumps [Npgsql](https://github.com/npgsql/npgsql) from 6.0.7 to 7.0.0. Release notes Sourced from Npgsql's releases. v7.0.0 See the release notes. The full list of changes is available here. Commits f844598 Bump version to...

dependencies
.NET

Bumps MySql.Data from 8.0.29 to 8.0.31. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MySql.Data&package-manager=nuget&previous-version=8.0.29&new-version=8.0.31)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
.NET

This issue describes possible options for improving saga performance when using MSSQL. These are not necessarily obviously better solutions, and will need to be validated by performance testing with various...

Improvement
candidate-for-next-release

- Related to : https://github.com/Particular/NServiceBus.Persistence.Sql/issues/778 By default instances will be competing for the outbox cleanup task. If for instances the endpoint is scaled out to 5 instances then the cleanup...

Improvement

Quoting @mauroservienti > say that you have a legacy system which db you cannot touch, and you want to introduce messaging. If you need the Outbox and want to use...

SqlPersistence offers an option to control scripts generation via an assembly level attribute. When using the attribute it seems natural to disable scripts generation byu setting values to `false`: ```...

*Issue transferred from internal repo* There is a [new command line tool](https://github.com/Particular/NServiceBus.Persistence.Sql/pull/598) that users can use to generate the database scripts. The new script can be used when we drop...

It's possible, and recommended in the docs, to configure your script generation using something like the following: ``` [assembly: SqlPersistenceSettings( MsSqlServerScripts = false, MySqlScripts = false, OracleScripts = true, PostgreSqlScripts...

Bug
Triaged