Skip to content

Commit 5375218

Browse files
replace "Oracle 11g" with "Oracle Database 11g"
1 parent dec8a1d commit 5375218

File tree

2 files changed

+2
-2
lines changed
  • docs/4-language-usage

2 files changed

+2
-2
lines changed

docs/4-language-usage/2-variables-and-types/2-numeric-data-types/g-2230.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
`simple_integer` does no checks on numeric overflow, which results in better performance compared to the other numeric datatypes.
99

10-
With Oracle 11g, the new data type `simple_integer` has been introduced. It is a sub-type of `pls_integer` and covers the same range. The basic difference is that `simple_integer` is always `not null`. When the value of the declared variable is never going to be null then you can declare it as `simple_integer`. Another major difference is that you will never face a numeric overflow using `simple_integer` as this data type wraps around without giving any error. `simple_integer` data type gives major performance boost over `pls_integer` when code is compiled in `native` mode, because arithmetic operations on `simple_integer` type are performed directly at the hardware level.
10+
With Oracle Database 11g, the new data type `simple_integer` has been introduced. It is a sub-type of `pls_integer` and covers the same range. The basic difference is that `simple_integer` is always `not null`. When the value of the declared variable is never going to be null then you can declare it as `simple_integer`. Another major difference is that you will never face a numeric overflow using `simple_integer` as this data type wraps around without giving any error. `simple_integer` data type gives major performance boost over `pls_integer` when code is compiled in `native` mode, because arithmetic operations on `simple_integer` type are performed directly at the hardware level.
1111

1212

1313
## Example (bad)

docs/4-language-usage/7-stored-objects/8-sequences/g-7810.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## Reason
77

8-
Since Oracle 11g it is no longer needed to use a `select` statement to read a sequence (which would imply a context switch).
8+
Since Oracle Database 11g it is no longer needed to use a `select` statement to read a sequence (which would imply a context switch).
99

1010
## Example (bad)
1111

0 commit comments

Comments
 (0)