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
Give Thin python-oracledb OOB syntax. Fix grammar (#2520)
* Give Thin python-oracledb OOB syntax. Fix grammar
Signed-off-by: Christopher Jones <[email protected]>
* Wrap lines per linter
Signed-off-by: Christopher Jones <[email protected]>
Copy file name to clipboardExpand all lines: OracleDatabase/SingleInstance/FAQ.md
+25-2
Original file line number
Diff line number
Diff line change
@@ -76,13 +76,36 @@ Also make sure you assign an appropriate size as the default Docker uses is only
76
76
77
77
When initially connecting to your 19c (or higher) database the client may appear to hang and timeout after a few minutes with: `ORA-12637: Packet receive failed`
78
78
79
-
Oracle Net 19c will attempt to [automatically detect support for Out Of Band breaks](https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-554C0311-68FB-4628-AC8D-C22D8ADDE995) and enable or disable the feature. Some network stacks do not correctly handle this and problems have been seen on _docker-engine-19.03.1.ol-1.0.0.el7_. You may explicitly disable this feature by setting `DISABLE_OOB=ON` in the client's _sqlnet.ora_ file. By default, Oracle Instant Client for Linux will use _/<instant_client_path>/network/admin/sqlnet.ora_, _$TNS_ADMIN/sqlnet.ora_ or _~/.sqlnet.ora_. For example, you could use
79
+
Oracle Net 19c will attempt to [automatically detect support for Out Of Band
and enable or disable the feature. Some network stacks do not correctly handle
82
+
this and problems have been seen on _docker-engine-19.03.1.ol-1.0.0.el7_. You
83
+
may explicitly disable this feature by setting `DISABLE_OOB=ON` in the client's
84
+
_sqlnet.ora_ file. By default, Oracle Instant Client for Linux will use
85
+
_/<instant_client_path>/network/admin/sqlnet.ora_, _$TNS_ADMIN/sqlnet.ora_ or
86
+
_~/.sqlnet.ora_. For example, you could use:
80
87
81
88
```shell
82
89
echo"DISABLE_OOB=ON">>~/.sqlnet.ora
83
90
```
84
91
85
-
For more information configuring _sqlnet.ora_ file see [Database Net Services Reference](https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-2041545B-58D4-48DC-986F-DCC9D0DEC642), [Instant Client Installation for Linux](https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html), [What is DISABLE_OOB (Out Of Band Break)? (Doc ID 373475.1)](https://support.oracle.com/epmos/faces/DocumentDisplay?id=373475.1) and issue #1352
92
+
For more information on configuring the _sqlnet.ora_ file see [Database Net
0 commit comments