Skip to content

Asopus/ParticularOutbox

Repository files navigation

Prerequisites:

  • Make sure you have a mssql database called 'NServiceBus' running on 'localhost'

  • Spin up the following docker image:

docker run -d --name oracle_db -p 1521:1521 -e ORACLE_PASSWORD=admin gvenzl/oracle-xe:18
  • Once the database is accessible (could take up to 5 minutes after starting the container), log in as 'SYS' with role 'SYSDBA' and password 'admin':

syslogin

  • After logging in as SYS, execute the following script
create user TESTUSER identified by "TESTUSER";
GRANT ALL PRIVILEGES TO TESTUSER;
create table TESTUSER.test (id number not null);
  • Run app

About

A short spike showcasing the particular outbox feature with mssql transport and oracle persistence

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages