-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules_list.txt
More file actions
1195 lines (1195 loc) · 28 KB
/
rules_list.txt
File metadata and controls
1195 lines (1195 loc) · 28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RULE_access_driver_type
RULE_accessible_by_clause
RULE_accessor
RULE_action_audit_clause
RULE_actions_clause
RULE_activate_standby_db_clause
RULE_ad_attributes_clause
RULE_ad_level_clause
RULE_ad_using_clause
RULE_add_binding_clause
RULE_add_calc_meas_clause
RULE_add_calcs_clause
RULE_add_column_clause
RULE_add_constraint
RULE_add_constraint_clause
RULE_add_disk_clause
RULE_add_filegroup_clause
RULE_add_hash_index_partition
RULE_add_logfile_clauses
RULE_add_modify_drop_column_clauses
RULE_add_mv_log_column_clause
RULE_add_or_drop
RULE_add_overflow_clause
RULE_add_rem_container_data
RULE_add_table_partition
RULE_add_update_secret
RULE_add_update_secret_seps
RULE_add_volume_clause
RULE_administer_key_management
RULE_aggregate_clause
RULE_aggregate_function_name
RULE_all_clause
RULE_allocate_extent_clause
RULE_allow_or_disallow
RULE_alter_add_cache_clause
RULE_alter_analytic_view
RULE_alter_attribute_definition
RULE_alter_attribute_dimension
RULE_alter_audit_policy
RULE_alter_cluster
RULE_alter_collection_clauses
RULE_alter_database
RULE_alter_database_link
RULE_alter_datafile_clause
RULE_alter_dimension
RULE_alter_diskgroup
RULE_alter_drop_cache_clause
RULE_alter_flashback_archive
RULE_alter_function
RULE_alter_hierarchy
RULE_alter_identified_by
RULE_alter_index
RULE_alter_index_ops_set1
RULE_alter_index_ops_set2
RULE_alter_index_partitioning
RULE_alter_inmemory_join_group
RULE_alter_interval_partition
RULE_alter_iot_clauses
RULE_alter_java
RULE_alter_keystore_password
RULE_alter_library
RULE_alter_lockdown_profile
RULE_alter_mapping_table_clause
RULE_alter_materialized_view
RULE_alter_materialized_view_log
RULE_alter_materialized_zonemap
RULE_alter_method_element
RULE_alter_method_spec
RULE_alter_mv_option1
RULE_alter_mv_refresh
RULE_alter_operator
RULE_alter_outline
RULE_alter_overflow_clause
RULE_alter_package
RULE_alter_pmem_filestore
RULE_alter_procedure
RULE_alter_resource_cost
RULE_alter_role
RULE_alter_rollback_segment
RULE_alter_sequence
RULE_alter_session
RULE_alter_session_set_clause
RULE_alter_synonym
RULE_alter_table
RULE_alter_table_partitioning
RULE_alter_table_properties
RULE_alter_table_properties_1
RULE_alter_tablespace
RULE_alter_tablespace_attrs
RULE_alter_tablespace_encryption
RULE_alter_tablespace_set
RULE_alter_tempfile_clause
RULE_alter_trigger
RULE_alter_type
RULE_alter_user
RULE_alter_user_editions_clause
RULE_alter_varray_col_properties
RULE_alter_view
RULE_alter_view_editionable
RULE_alternate_key_clause
RULE_analyze
RULE_anonymous_block
RULE_argument
RULE_assignment_statement
RULE_associate_statistics
RULE_atom
RULE_attribute_clause
RULE_attribute_clustering_clause
RULE_attribute_definition
RULE_attribute_name
RULE_attributes_clause
RULE_audit_container_clause
RULE_audit_direct_path
RULE_audit_operation_clause
RULE_audit_schema_object_clause
RULE_audit_traditional
RULE_audit_user
RULE_auditing_by_clause
RULE_auditing_on_clause
RULE_autoextend_clause
RULE_autogenerated_sequence_definition
RULE_av_measure
RULE_backup_keystore
RULE_base_meas_clause
RULE_begin_or_end
RULE_between_bound
RULE_between_elements
RULE_bind_variable
RULE_binding_clause
RULE_bitmap_join_index_clause
RULE_block
RULE_blockchain_drop_table_clause
RULE_blockchain_hash_and_data_format_clause
RULE_blockchain_row_retention_clause
RULE_blockchain_table_clauses
RULE_body
RULE_bounds_clause
RULE_build_clause
RULE_c_agent_in_clause
RULE_c_external_parameter
RULE_c_parameters_clause
RULE_c_property
RULE_c_spec
RULE_cache_clause
RULE_cache_or_nocache
RULE_cache_specification
RULE_calc_meas_clause
RULE_call_spec
RULE_call_statement
RULE_caption_clause
RULE_case_else_part_expression
RULE_case_else_part_statement
RULE_case_expression
RULE_case_statement
RULE_case_when_part_expression
RULE_case_when_part_statement
RULE_cav_using_clause
RULE_cdb_fleet_clauses
RULE_cell_assignment
RULE_cell_reference_options
RULE_char_set_name
RULE_character_set_clause
RULE_check_constraint
RULE_check_diskgroup_clause
RULE_classification_clause
RULE_classification_item
RULE_clause_options
RULE_close_keystore
RULE_close_statement
RULE_cluster_clause
RULE_cluster_index_clause
RULE_cluster_name
RULE_clustering_column_group
RULE_clustering_columns
RULE_clustering_join
RULE_clustering_join_item
RULE_coalesce_index_partition
RULE_coalesce_table_partition
RULE_collation_name
RULE_collect_order_by_part
RULE_collection_expression
RULE_collection_item
RULE_collection_method_call
RULE_collection_name
RULE_column_alias
RULE_column_association
RULE_column_based_update_set_clause
RULE_column_clauses
RULE_column_collation_name
RULE_column_definition
RULE_column_list
RULE_column_name
RULE_column_one_or_more_sub_clause
RULE_column_or_attribute
RULE_column_properties
RULE_comment_on_column
RULE_comment_on_materialized
RULE_comment_on_table
RULE_commit_statement
RULE_commit_switchover_clause
RULE_compile_type_clause
RULE_compiler_parameters_clause
RULE_component_action
RULE_component_actions
RULE_composite_hash_partitions
RULE_composite_list_partitions
RULE_composite_range_partitions
RULE_compound_dml_trigger
RULE_compound_expression
RULE_compound_trigger_block
RULE_compute_clauses
RULE_concatenation
RULE_condition
RULE_conditional_insert_clause
RULE_conditional_insert_else_part
RULE_conditional_insert_when_part
RULE_connection_qualifier
RULE_constant
RULE_constraint_clauses
RULE_constraint_name
RULE_constraint_state
RULE_constructor_declaration
RULE_constructor_spec
RULE_container_clause
RULE_container_data_clause
RULE_container_names
RULE_container_tableview_name
RULE_continue_statement
RULE_controlfile_clauses
RULE_controlfile_options
RULE_convert_database_clause
RULE_convert_redundancy_clause
RULE_cost_class_name
RULE_cost_matrix_clause
RULE_cpu_cost
RULE_create_analytic_view
RULE_create_attribute_dimension
RULE_create_audit_policy
RULE_create_cluster
RULE_create_context
RULE_create_controlfile
RULE_create_database
RULE_create_database_link
RULE_create_datafile_clause
RULE_create_dimension
RULE_create_directory
RULE_create_diskgroup
RULE_create_edition
RULE_create_flashback_archive
RULE_create_function_body
RULE_create_hierarchy
RULE_create_index
RULE_create_inmemory_join_group
RULE_create_java
RULE_create_key
RULE_create_keystore
RULE_create_library
RULE_create_lockdown_profile
RULE_create_materialized_view
RULE_create_materialized_view_log
RULE_create_materialized_zonemap
RULE_create_mv_refresh
RULE_create_operator
RULE_create_outline
RULE_create_package
RULE_create_package_body
RULE_create_pmem_filestore
RULE_create_procedure_body
RULE_create_profile
RULE_create_restore_point
RULE_create_role
RULE_create_rollback_segment
RULE_create_schema
RULE_create_sequence
RULE_create_spfile
RULE_create_synonym
RULE_create_table
RULE_create_tablespace
RULE_create_tablespace_set
RULE_create_trigger
RULE_create_type
RULE_create_user
RULE_create_view
RULE_create_zonemap_as_subquery
RULE_create_zonemap_on_table
RULE_credential_name
RULE_cursor_declaration
RULE_cursor_expression
RULE_cursor_loop_param
RULE_cursor_manipulation_statements
RULE_cursor_name
RULE_cycle_clause
RULE_data_manipulation_language_statements
RULE_database
RULE_database_clause
RULE_database_file_clauses
RULE_database_logging_clauses
RULE_database_logging_sub_clause
RULE_database_name
RULE_datafile_specification
RULE_datafile_tempfile_clauses
RULE_datafile_tempfile_spec
RULE_datatype
RULE_datatype_null_enable
RULE_datetime_expr
RULE_db_name
RULE_deallocate_unused_clause
RULE_declare_spec
RULE_default_aggregate_clause
RULE_default_collation_clause
RULE_default_cost_clause
RULE_default_index_compression
RULE_default_measure_clause
RULE_default_selectivity
RULE_default_selectivity_clause
RULE_default_settings_clause
RULE_default_table_compression
RULE_default_tablespace
RULE_default_tablespace_params
RULE_default_temp_tablespace
RULE_default_value_part
RULE_deferred_segment_creation
RULE_delete_secret
RULE_delete_secret_seps
RULE_delete_statement
RULE_dependent_exceptions_part
RULE_dependent_handling_clause
RULE_description_clause
RULE_dim_by_clause
RULE_dim_key
RULE_dim_order_clause
RULE_dim_ref
RULE_dimension_join_clause
RULE_dir_name
RULE_dir_object_name
RULE_directory_name
RULE_directory_path
RULE_disable_constraint
RULE_disable_enable
RULE_disassociate_statistics
RULE_disk_offline_clause
RULE_disk_online_clause
RULE_disk_region_clause
RULE_diskgroup_alias_clauses
RULE_diskgroup_attributes
RULE_diskgroup_availability
RULE_diskgroup_directory_clauses
RULE_diskgroup_template_clauses
RULE_diskgroup_volume_clauses
RULE_dml_event_clause
RULE_dml_event_element
RULE_dml_event_nested_clause
RULE_dml_table_expression_clause
RULE_domain
RULE_domain_index_clause
RULE_drop_analytic_view
RULE_drop_attribute_dimension
RULE_drop_audit_policy
RULE_drop_binding_clause
RULE_drop_cluster
RULE_drop_column_clause
RULE_drop_constraint
RULE_drop_constraint_clause
RULE_drop_context
RULE_drop_database
RULE_drop_database_link
RULE_drop_directory
RULE_drop_disk_clause
RULE_drop_diskgroup
RULE_drop_diskgroup_file_clause
RULE_drop_edition
RULE_drop_filegroup_clause
RULE_drop_flashback_archive
RULE_drop_function
RULE_drop_hierarchy
RULE_drop_index
RULE_drop_index_partition
RULE_drop_indextype
RULE_drop_inmemory_join_group
RULE_drop_java
RULE_drop_library
RULE_drop_lockdown_profile
RULE_drop_logfile_clauses
RULE_drop_materialized_view
RULE_drop_materialized_zonemap
RULE_drop_mirror_clause
RULE_drop_operator
RULE_drop_outline
RULE_drop_package
RULE_drop_pmem_filestore
RULE_drop_procedure
RULE_drop_restore_point
RULE_drop_role
RULE_drop_rollback_segment
RULE_drop_sequence
RULE_drop_synonym
RULE_drop_table
RULE_drop_table_partition
RULE_drop_tablespace
RULE_drop_tablespace_set
RULE_drop_trigger
RULE_drop_type
RULE_drop_user
RULE_drop_view
RULE_dynamic_base_profile
RULE_dynamic_returning_clause
RULE_edition_name
RULE_editioning_clause
RULE_element
RULE_element_spec
RULE_element_spec_options
RULE_else_part
RULE_elsif_part
RULE_enable_constraint
RULE_enable_disable_clause
RULE_enable_disable_volume
RULE_enable_or_disable
RULE_enable_pluggable_database
RULE_encryption_spec
RULE_end_time_column
RULE_equijoin_condition
RULE_error_directive
RULE_error_logging_clause
RULE_error_logging_into_part
RULE_error_logging_reject_part
RULE_evaluation_edition_clause
RULE_exception_declaration
RULE_exception_handler
RULE_exception_name
RULE_exceptions_clause
RULE_exchange_table_partition
RULE_execute_immediate
RULE_exit_statement
RULE_explain_statement
RULE_export_keys
RULE_expression
RULE_expressions_
RULE_extended_attribute_clause
RULE_extent_management_clause
RULE_external_table_clause
RULE_external_table_data_props
RULE_fact_columns_clause
RULE_fetch_clause
RULE_fetch_statement
RULE_field_spec
RULE_file_name_convert
RULE_file_owner_clause
RULE_file_path
RULE_file_permissions_clause
RULE_file_specification
RULE_filegroup_clauses
RULE_filename
RULE_filename_convert_sub_clause
RULE_filenumber
RULE_filter_clause
RULE_filter_clauses
RULE_flashback_archive_clause
RULE_flashback_archive_quota
RULE_flashback_archive_retention
RULE_flashback_mode_clause
RULE_flashback_query_clause
RULE_flashback_table
RULE_for_clause
RULE_for_each_row
RULE_for_update_clause
RULE_for_update_of_part
RULE_for_update_options
RULE_forall_statement
RULE_force_keystore
RULE_force_noforce
RULE_foreign_key_clause
RULE_from_clause
RULE_full_database_recovery
RULE_func_decl_in_type
RULE_function_argument
RULE_function_argument_analytic
RULE_function_argument_modeling
RULE_function_association
RULE_function_body
RULE_function_name
RULE_function_spec
RULE_general_element
RULE_general_element_part
RULE_general_recovery
RULE_general_table_ref
RULE_global_partitioned_index
RULE_goto_statement
RULE_grant_object_name
RULE_grant_statement
RULE_grantee_name
RULE_group_by_clause
RULE_group_by_elements
RULE_group_redo_logfile
RULE_grouping_sets_clause
RULE_grouping_sets_elements
RULE_hash_partition_quantity
RULE_hash_partitions
RULE_hash_partitions_by_quantity
RULE_hash_subpartition_quantity
RULE_hash_subparts_by_quantity
RULE_having_clause
RULE_heap_org_table_clause
RULE_hier_attr_clause
RULE_hier_attr_name
RULE_hier_attrs_clause
RULE_hier_ref
RULE_hier_using_clause
RULE_hierarchical_query_clause
RULE_hierarchies_clause
RULE_hierarchy_clause
RULE_id_expression
RULE_identified_by
RULE_identified_by_password_clause
RULE_identified_by_store
RULE_identified_other_clause
RULE_identifier
RULE_identity_clause
RULE_identity_options
RULE_identity_options_parentheses
RULE_if_statement
RULE_ilm_after_on
RULE_ilm_clause
RULE_ilm_compression_policy
RULE_ilm_inmemory_policy
RULE_ilm_policy_clause
RULE_ilm_tiering_policy
RULE_ilm_time_period
RULE_immutable_table_clauses
RULE_immutable_table_no_delete_clause
RULE_immutable_table_no_drop_clause
RULE_implementation_clause
RULE_implementation_type_name
RULE_implicit_cursor_expression
RULE_import_keys
RULE_in_elements
RULE_including_contents_clause
RULE_including_or_excluding
RULE_index_attributes
RULE_index_expr
RULE_index_name
RULE_index_org_overflow_clause
RULE_index_org_table_clause
RULE_index_partition_description
RULE_index_partitioning_clause
RULE_index_partitioning_values_list
RULE_index_properties
RULE_index_subpartition_clause
RULE_index_subpartition_subclause
RULE_indexing_clause
RULE_indextype
RULE_indextype_name
RULE_individual_hash_partitions
RULE_individual_hash_subparts
RULE_inline_constraint
RULE_inline_ref_constraint
RULE_inmemory_attributes
RULE_inmemory_column_clause
RULE_inmemory_distribute
RULE_inmemory_duplicate
RULE_inmemory_memcompress
RULE_inmemory_priority
RULE_inmemory_table_clause
RULE_inmmemory_clause
RULE_inquiry_directive
RULE_insert_into_clause
RULE_insert_statement
RULE_instance_clauses
RULE_interval_expr
RULE_interval_expression
RULE_into_clause
RULE_into_clause1
RULE_invoker_rights_clause
RULE_io_cost
RULE_isolate_keystore
RULE_java_spec
RULE_join_clause
RULE_join_condition
RULE_join_condition_item
RULE_join_on_part
RULE_join_path_clause
RULE_join_using_part
RULE_json_array_element
RULE_json_column_clause
RULE_json_column_definition
RULE_json_function
RULE_json_object_content
RULE_json_object_entry
RULE_json_on_null_clause
RULE_json_query_on_empty_clause
RULE_json_query_on_error_clause
RULE_json_query_return_type
RULE_json_query_returning_clause
RULE_json_query_wrapper_clause
RULE_json_return_clause
RULE_json_table_clause
RULE_json_transform_op
RULE_json_value_on_mismatch_clause
RULE_json_value_return_clause
RULE_json_value_return_type
RULE_keep_clause
RULE_key_clause
RULE_key_compression
RULE_key_management_clauses
RULE_keystore_management_clauses
RULE_keystore_password
RULE_label_declaration
RULE_label_name
RULE_language
RULE_lead_cdb_clause
RULE_lead_cdb_uri_clause
RULE_level_clause
RULE_level_group_type
RULE_level_hier_clause
RULE_level_specification
RULE_levels_clause
RULE_levels_item
RULE_library_debug
RULE_library_editionable
RULE_library_name
RULE_link_authentication
RULE_link_name
RULE_list_partition_desc
RULE_list_partitions
RULE_list_subpartition_desc
RULE_list_values_clause
RULE_listagg_overflow_clause
RULE_literal
RULE_lob_compression_clause
RULE_lob_deduplicate_clause
RULE_lob_item
RULE_lob_parameters
RULE_lob_partition_storage
RULE_lob_partitioning_storage
RULE_lob_retention_clause
RULE_lob_segname
RULE_lob_storage_clause
RULE_lob_storage_parameters
RULE_local_domain_index_clause
RULE_local_link_name
RULE_local_partitioned_index
RULE_local_xmlindex_clause
RULE_lock_mode
RULE_lock_table_element
RULE_lock_table_statement
RULE_lockdown_feature
RULE_lockdown_options
RULE_lockdown_statements
RULE_log_grp
RULE_logfile_clause
RULE_logfile_clauses
RULE_logfile_descriptor
RULE_logging_clause
RULE_logical_expression
RULE_logical_operation
RULE_logical_replication_clause
RULE_loop_statement
RULE_lost_write_protection
RULE_low_high
RULE_lower_bound
RULE_main_model
RULE_main_model_name
RULE_managed_standby_recovery
RULE_map_order_func_declaration
RULE_map_order_function_spec
RULE_mapping_table_clause
RULE_match_string
RULE_maximize_standby_db_clause
RULE_maxsize_clause
RULE_meas_aggregate_clause
RULE_measure_list
RULE_measures_clause
RULE_memoptimize_read_write_clause
RULE_merge_element
RULE_merge_insert_clause
RULE_merge_into_existing_keystore
RULE_merge_into_new_keystore
RULE_merge_statement
RULE_merge_table_partition
RULE_merge_update_clause
RULE_merge_update_delete_part
RULE_migrate_keys
RULE_mk
RULE_mkid
RULE_model_clause
RULE_model_column
RULE_model_column_clauses
RULE_model_column_list
RULE_model_column_partition_part
RULE_model_expression
RULE_model_expression_element
RULE_model_iterate_clause
RULE_model_name
RULE_model_rules_clause
RULE_model_rules_element
RULE_model_rules_part
RULE_modifier_clause
RULE_modify_col_properties
RULE_modify_col_substitutable
RULE_modify_col_visibility
RULE_modify_collection_retrieval
RULE_modify_column_clauses
RULE_modify_diskgroup_file
RULE_modify_filegroup_clause
RULE_modify_index_default_attrs
RULE_modify_index_partition
RULE_modify_index_partitions_ops
RULE_modify_index_subpartition
RULE_modify_lob_parameters
RULE_modify_lob_storage_clause
RULE_modify_mv_column_clause
RULE_modify_table_partition
RULE_modify_volume_clause
RULE_monitoring_nomonitoring
RULE_move_datafile_clause
RULE_move_keys
RULE_move_mv_log_clause
RULE_move_table_clause
RULE_move_to_filegroup_clause
RULE_multi_column_for_loop
RULE_multi_table_element
RULE_multi_table_insert
RULE_multiset_expression
RULE_mv_column_alias
RULE_mv_log_augmentation
RULE_mv_log_purge_clause
RULE_native_datatype_element
RULE_nested_item
RULE_nested_table_col_properties
RULE_nested_table_type_def
RULE_network_cost
RULE_new_column_name
RULE_new_constraint_name
RULE_new_index_name
RULE_new_partition_name
RULE_new_tablespace_name
RULE_new_values_clause
RULE_noaudit_statement
RULE_non_dml_event
RULE_non_dml_trigger
RULE_non_reserved_keywords_in_12c
RULE_non_reserved_keywords_in_18c
RULE_non_reserved_keywords_pre12c
RULE_null_statement
RULE_numeric
RULE_numeric_function
RULE_numeric_function_name
RULE_numeric_function_wrapper
RULE_numeric_negative
RULE_object_action
RULE_object_as_part
RULE_object_member_spec
RULE_object_name
RULE_object_privilege
RULE_object_properties
RULE_object_table
RULE_object_table_substitution
RULE_object_type
RULE_object_type_col_properties
RULE_object_type_def
RULE_object_under_part
RULE_object_view_clause
RULE_odci_parameters
RULE_offset_clause
RULE_oid_clause
RULE_oid_index_clause
RULE_old_column_name
RULE_old_constraint_name
RULE_on_comp_partitioned_clause
RULE_on_comp_partitioned_table
RULE_on_delete_clause
RULE_on_hash_partitioned_clause
RULE_on_hash_partitioned_table
RULE_on_list_partitioned_table
RULE_on_object_clause
RULE_on_range_partitioned_table
RULE_online_or_offline
RULE_opaque_format_spec
RULE_open_for_statement
RULE_open_keystore
RULE_open_statement
RULE_operator_context_clause
RULE_operator_function_name
RULE_operator_name
RULE_option_values
RULE_oracle_namespace
RULE_order_by_clause
RULE_order_by_elements
RULE_other_function
RULE_out_of_line_constraint
RULE_out_of_line_part_storage
RULE_out_of_line_ref_constraint
RULE_outer_join_sign
RULE_outer_join_type
RULE_outline_options
RULE_over_clause
RULE_over_clause_keyword
RULE_overriding_function_spec
RULE_overriding_subprogram_spec
RULE_package_name
RULE_package_obj_body
RULE_package_obj_spec
RULE_parallel_clause
RULE_parallel_enable_clause
RULE_parameter
RULE_parameter_name
RULE_parameter_spec
RULE_parameter_value
RULE_paren_column_list
RULE_partial_database_recovery
RULE_partial_database_recovery_10g
RULE_partition_by_clause
RULE_partition_extended_names
RULE_partition_extension_clause
RULE_partition_extention_clause
RULE_partition_key_value
RULE_partition_name
RULE_partition_name_old
RULE_partitioned_table
RULE_partitioning_storage_clause
RULE_password_expire_clause
RULE_password_parameters
RULE_password_value
RULE_path
RULE_period_definition
RULE_permanent_tablespace_attrs
RULE_permanent_tablespace_clause
RULE_pfile_name
RULE_phase
RULE_physical_attributes_clause
RULE_physical_properties
RULE_pipe_row_statement
RULE_pipelined_using_clause
RULE_pivot_clause
RULE_pivot_element
RULE_pivot_for_clause
RULE_pivot_in_clause
RULE_pivot_in_clause_element
RULE_pivot_in_clause_elements
RULE_plsql_library_source
RULE_pmem_filestore_options
RULE_policy_name
RULE_pragma_clause
RULE_pragma_declaration
RULE_pragma_elements
RULE_precision_part
RULE_prepare_clause
RULE_primary_key_clause
RULE_primary_operator_item
RULE_primary_operator_list
RULE_privilege_audit_clause
RULE_proc_decl_in_type
RULE_procedure_body
RULE_procedure_name
RULE_procedure_spec
RULE_profile_clause
RULE_profile_name
RULE_program_unit
RULE_property_clauses
RULE_property_name
RULE_property_value
RULE_proxy_clause
RULE_purge_statement
RULE_qry_transform_clause
RULE_qualified_disk_clause
RULE_qualified_template_clause
RULE_quantified_expression
RULE_query_block
RULE_query_name
RULE_query_partition_clause
RULE_quorum_regular
RULE_quota_clause
RULE_quotagroup_clauses
RULE_quoted_string
RULE_raise_statement
RULE_range_partition_desc
RULE_range_partitions
RULE_range_subpartition_desc
RULE_range_values_clause
RULE_range_values_list
RULE_read_only_clause
RULE_rebalance_diskgroup_clause
RULE_rebuild_clause
RULE_record_name
RULE_record_type_def
RULE_records_per_block_clause
RULE_recovery_clauses
RULE_redo_log_file_spec
RULE_redundancy_clause
RULE_ref_cursor_type_def
RULE_reference_model
RULE_reference_model_name
RULE_reference_partition_desc
RULE_reference_partitioning
RULE_references_clause
RULE_referencing_clause
RULE_referencing_element
RULE_register_logfile_clause
RULE_regular_id
RULE_relational_expression
RULE_relational_operator
RULE_relational_property
RULE_relational_table
RULE_relies_on_part
RULE_rename_column_clause
RULE_rename_disk_clause
RULE_rename_index_partition
RULE_rename_object
RULE_replace_disk_clause
RULE_replace_type_clause
RULE_replay_upgrade_clauses
RULE_resetlogs_or_noresetlogs
RULE_resize_disk_clause
RULE_resource_parameters
RULE_respect_or_ignore_nulls
RULE_restore_point
RULE_result_cache_clause
RULE_return_rows_clause
RULE_return_statement
RULE_reverse_migrate_keys
RULE_revoke_object_privileges
RULE_revoke_roles_from_programs
RULE_revoke_statement
RULE_revoke_system_privilege
RULE_revokee_clause
RULE_role_audit_clause
RULE_role_clause
RULE_role_identified_clause
RULE_role_name
RULE_rollback_segment
RULE_rollback_segment_name
RULE_rollback_statement
RULE_rollup_cube_clause
RULE_routine_clause
RULE_routine_name
RULE_row_movement_clause
RULE_sample_clause
RULE_savepoint_name
RULE_savepoint_statement
RULE_schema_name
RULE_schema_object_name
RULE_scoped_table_ref_constraint
RULE_scrub_clause
RULE_search_clause
RULE_searched_case_expression
RULE_searched_case_statement
RULE_secret
RULE_secret_management_clauses
RULE_security_clause
RULE_seed_part
RULE_segment_attributes_clause
RULE_segment_group
RULE_segment_management_clause
RULE_select_list_elements
RULE_select_only_statement
RULE_select_statement
RULE_selected_list
RULE_selected_tableview
RULE_selection_directive
RULE_selection_directive_body
RULE_seq_of_declare_specs
RULE_seq_of_statements
RULE_sequence_name
RULE_sequence_spec
RULE_sequence_start_clause
RULE_set_command
RULE_set_constraint_command
RULE_set_container_data
RULE_set_key
RULE_set_key_tag
RULE_set_time_zone_clause
RULE_set_transaction_command
RULE_shrink_clause
RULE_simple_case_expression
RULE_simple_case_statement
RULE_simple_dml_trigger
RULE_single_column_for_loop
RULE_single_table_insert
RULE_size_clause
RULE_sort_or_nosort
RULE_source_clause
RULE_spfile_name
RULE_split_index_partition
RULE_split_table_partition
RULE_sql_macro_body
RULE_sql_operation
RULE_sql_plus_command
RULE_sql_plus_command_no_semicolon
RULE_sql_script
RULE_sql_statement
RULE_sql_statement_shortcut
RULE_sqlj_object_type
RULE_sqlj_object_type_attr
RULE_standard_actions
RULE_standard_function
RULE_standard_prediction_function_keyword
RULE_standby_database_clauses
RULE_start_command
RULE_start_part
RULE_start_standby_clause
RULE_start_time_column