Skip to content

Commit d86035d

Browse files
committed
Integrate/Oracle: Implement suggestions by CodeRabbit
1 parent 50e86fa commit d86035d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/integrate/oracle/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
:::{rubric} About
1111
:::
1212

13-
[Oracle Database] (Oracle DBMS, or simply as Oracle) is a proprietary multi-model
13+
[Oracle Database] (Oracle DBMS, or simply Oracle) is a proprietary multi-model
1414
database management system produced and marketed by Oracle Corporation.
1515

1616
It is commonly used for running online transaction processing (OLTP), data

docs/integrate/oracle/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ To make the settings persistent, add them to your shell profile (`~/.profile`).
4242
```shell
4343
alias crash="docker run --rm -it --network=cratedb-demo ghcr.io/crate/cratedb-toolkit crash"
4444
alias ctk-ingest="docker run --rm -i --network=cratedb-demo ghcr.io/crate/cratedb-toolkit-ingest ctk"
45-
alias sqlplus="docker run --rm -it --network=cratedb-demo --volume=$(PWD):/demo --env=ORACLE_PASSWORD=secret --entrypoint= docker.io/gvenzl/oracle-free:23-slim sqlplus"
45+
alias sqlplus="docker run --rm -it --network=cratedb-demo --volume=$(PWD):/demo --env=ORACLE_PASSWORD=secret --entrypoint=sqlplus docker.io/gvenzl/oracle-free:23-slim"
4646
```
4747
:::
4848
:::{tab-item} Windows PowerShell
4949
To make the settings persistent, add them to your PowerShell profile (`$PROFILE`).
5050
```powershell
5151
function crash { docker run --rm -it --network=cratedb-demo ghcr.io/crate/cratedb-toolkit crash @args }
5252
function ctk-ingest { docker run --rm -i --network=cratedb-demo ghcr.io/crate/cratedb-toolkit-ingest ctk @args }
53-
function sqlplus { docker run --rm -it --network=cratedb-demo --volume=${PWD}:/demo --env=ORACLE_PASSWORD=secret --entrypoint= docker.io/gvenzl/oracle-free:23-slim sqlplus @args }
53+
function sqlplus { docker run --rm -it --network=cratedb-demo --volume=${PWD}:/demo --env=ORACLE_PASSWORD=secret --entrypoint=sqlplus docker.io/gvenzl/oracle-free:23-slim @args }
5454
```
5555
:::
5656
:::{tab-item} Windows Command
5757
```shell
5858
doskey crash=docker run --rm -it --network=cratedb-demo ghcr.io/crate/cratedb-toolkit crash $*
5959
doskey ctk-ingest=docker run --rm -i --network=cratedb-demo ghcr.io/crate/cratedb-toolkit-ingest ctk $*
60-
doskey sqlplus=docker run --rm -it --network=cratedb-demo --volume=%cd%:/demo --env=ORACLE_PASSWORD=secret --entrypoint= docker.io/gvenzl/oracle-free:23-slim sqlplus $*
60+
doskey sqlplus=docker run --rm -it --network=cratedb-demo --volume=%cd%:/demo --env=ORACLE_PASSWORD=secret --entrypoint=sqlplus docker.io/gvenzl/oracle-free:23-slim $*
6161
```
6262
:::
6363

0 commit comments

Comments
 (0)