Skip to content

Commit aa961cd

Browse files
add G-3330 in the appendix
1 parent 0aa4374 commit aa961cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/9-appendix/appendix.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ n/a | 3150 | Try to use identity columns for surrogate keys. | Critical | | |
5454
n/a | 3160 | Avoid visible virtual columns. | Blocker | | | ✘ | | ✘ | | |
5555
n/a | 3170 | Always use DEFAULT ON NULL declarations to assign default values to table columns if you refuse to store NULL values. | Blocker | | | | | ✘ | | |
5656
n/a | 3180 | Always specify column names instead of positional references in ORDER BY clauses. | Major | ✘ | | | | ✘ | | |
57-
n/a | 3182 | Always specify column names instead of positional references in GROUP BY clauses. | Blocker | | | | | ✘ | | |
57+
n/a | 3182 | Always specify column names/aliases instead of positional references in GROUP BY clauses. | Blocker | | | | | ✘ | | |
5858
n/a | 3183 | Always specify column aliases instead of expressions in GROUP BY clauses. | Minor | | | ✘ | | | | |
5959
n/a | 3185 | Never use ROWNUM at the same query level as ORDER BY. | Blocker | | | | | ✘ | | | ✘
6060
n/a | 3190 | Avoid using NATURAL JOIN. | Blocker | ✘ | | | | ✘ | | |
@@ -63,6 +63,7 @@ n/a | 3195 | Always use wildcards in a LIKE clause. | Blocker | | | ✘ |
6363
n/a | 3220 | Always process saved exceptions from a FORALL statement. | Critical | | | | | ✘ | | | ✘
6464
n/a | 3310 | Never commit within a cursor loop. | Blocker | | ✘ | | | ✘ | | |
6565
n/a | 3320 | Try to move transactions within a non-cursor loop into procedures. | Major | | | ✘ | | | ✘ | | ✘
66+
n/a | 3330 | Avoid autonomous transactions. | Blocker | | | | | ✘ | | | ✘
6667
31 | 4110 | Always use %NOTFOUND instead of NOT %FOUND to check whether a cursor returned data. | Minor | | | ✘ | | | | |
6768
32 | 4120 | Avoid using %NOTFOUND directly after the FETCH when working with BULK OPERATIONS and LIMIT clause. | Blocker | | | | | ✘ | | |
6869
33 | 4130 | Always close locally opened cursors. | Blocker | | ✘ | | | ✘ | | |

0 commit comments

Comments
 (0)