You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: persistence/sql/dialect-oracle.md
-10Lines changed: 0 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,18 +22,9 @@ Using the [Oracle.ManagedDataAccess NuGet Package](https://www.nuget.org/package
22
22
23
23
snippet: SqlPersistenceUsageOracle
24
24
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
-
33
25
> [!NOTE]
34
26
> 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.
35
27
36
-
37
28
## Unicode support
38
29
39
30
include: unicode-support
@@ -98,7 +89,6 @@ where INDEX_NAME = 'SAGAIDX_525D1D4DC0C3DCD96947E1';
98
89
99
90
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).
100
91
101
-
102
92
### Custom Finders
103
93
104
94
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