Skip to content

Commit 0a86a69

Browse files
Remove reference to SqlVarient. This was replaced by SqlDialect in v3
1 parent 68f288e commit 0a86a69

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

persistence/sql/dialect-oracle.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,9 @@ Using the [Oracle.ManagedDataAccess NuGet Package](https://www.nuget.org/package
2222

2323
snippet: SqlPersistenceUsageOracle
2424

25-
In Versions 2.2.0 and above it's possible to specify custom schema using the following code:
26-
27-
```
28-
var persistence = endpointConfiguration.UsePersistence<SqlPersistence>();
29-
persistence.SqlVariant(SqlVariant.Oracle);
30-
persistence.Schema("custom_schema");
31-
```
32-
3325
> [!NOTE]
3426
> The ODP.NET managed driver requires the `Enlist=false` or `Enlist=dynamic` setting in the [Oracle connection string](https://docs.oracle.com/database/121/ODPNT/featConnecting.htm) to allow the persister to enlist in a [Distributed Transaction](https://msdn.microsoft.com/en-us/library/windows/desktop/ms681205.aspx) at the correct moment.
3527
36-
3728
## Unicode support
3829

3930
include: unicode-support
@@ -98,7 +89,6 @@ where INDEX_NAME = 'SAGAIDX_525D1D4DC0C3DCD96947E1';
9889
9990
If a saga name is longer than 27 characters, an exception will be thrown, and a [substitute table name must be specified](saga.md#table-structure-table-name).
10091

101-
10292
### Custom Finders
10393

10494
Because Oracle 11g does not support any JSON query capability, custom saga finders that locate saga data by querying into the JSON payload of the saga are not supported by SQL Persistence when using Oracle.

0 commit comments

Comments
 (0)