-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.lst
1707 lines (1707 loc) · 76.9 KB
/
functions.lst
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
ainIMakeUnus ALTER INDEX MAKE UNUSABLE for a non-partitioned index
apadrv [SQL_APA] DRIVE THE ACCESS PATH SELECTION FOR A SQL COMMAND
apakkoqb [SQL_APA] Drive access path analysis for each Query block
apaqbd [SQL_APA]
apaqbdDescendents [SQL_APA]
apaqbdList [SQL_APA]
atbdrv alter table driver.
ctcatim_alter_table_ind_maint index maintenance on a partitioned table - alter table
ctcdrv ctcdrv - Create Table or Cluster DRiVer.
dbgeEndDDEInvocation [diag_dde]
dbgeEndDDEInvocationImpl [diag_dde]
dbgeExecuteForError [diag_dde]
dbgePostErrorKGE [diag_dde] Post the error for DDE invocation from KGE
dbgexExplicitEndInc [diag_dde]
dbgexPhaseII DBGEX Phase II
dbgexProcessError [diag_dde] Process the Error
dbkePostKGE_kgsf [rdbms_dde] DBKE Post KGE error for KGSF
dbkedDefDump Do DDE default dump
delexe delexe.c - delete execute [DML]
delrow delrow - Row Procedure used by KXRD to delete or lock a
dreb_populate [Text]
drekmap [Text]
drepklm [Text]
drepprep [Text]
drextmain [Text]
drftdisp [Text]
evaopn2 evaluate operand
evapls EVAluate any PLSql function
expepr expepr evaluates the argument predicate.
hshuid [PLSQL_KG_Interface]
insexe [DML] insexe - insert execute
kaudel ? Module Notes: perform inserts, updates, and deletes, modifying indexes on tables
kauupd KAU: update table and modify indexes
kcbAdoptBuffers [CACHE_RCV]
kcbapl Cache Buffers APpLy
kcbassertsd [CACHE_RCV]
kcbchg1 [CACHE_RCV]
kcbchg1_main [CACHE_RCV]
kcbflc_keep_all [CACHE_RCV]
kcbflc_keep_range [CACHE_RCV]
kcbgcur [CACHE_RCV] KCB: Get a block in current mode.
kcbgcurstdby [CACHE_RCV]
kcbgtcr [CACHE_RCV]
kcbldrget [CACHE_RCV]
kcblgt [CACHE_RCV]
kcblin [CACHE_RCV]
kcblin_internal [CACHE_RCV]
kcblrd [CACHE_RCV]
kcbnew [CACHE_RCV]
kcbr_apply_change [CACHE_RCV]
kcbr_media_apply [CACHE_RCV]
kcbrbr kcbrbr: Reuse Block Range: Called by space management
kcfbsy synch the control file with the SGA
kcfis_finalize_cached_sessions [KCFIS]
kcfmta mount all files
kco_blkchk Cache Op block check
kcoapl Cache Op APpLy
kcoubk undo callback routine
kcra_dump_redo [CACHE_RCV]
kcra_dump_redo_internal [CACHE_RCV]
kcra_scan_redo [CACHE_RCV]
kcrfw_redo_gen REDO GENeration
kdBlkCheckError Block Check Error
kdblGetBlockDba [DIRPATH_LOAD]
kdblai [DIRPATH_LOAD]
kdblba [DIRPATH_LOAD]
kdddgb KDD: Kernel Data Delete Get Block
kdibc3position kdibc3position - KDIBC position input stream at rowid
kdiblFinish1 KDIBL: Callback processing for KXIB
kdiblLockRange KDIBL lock the range associated with a given dml target
kdiblcfls kdiblcfls - KDIBL conventional flush batch with undo overhead
kdibliFinish KXIB insert callback
kdibr1sf kdibr1sf - KDIBR bit Stream Fetch
kdicdrv KDI: create index driver routine
kdiciitk_idx_ids_to_qerli PARALLEL CREATE INDEX [SQL_Execution]
kdicrws KDI: create index using row source
kdifind At any given moment, each possible key has a unique ASSOCIATED BLOCK at a kdiblLockPiece
kdl_write1 write into an ILOB instance
kdla_read [LOB_KDLA]
kdla_write [LOB_KDLA]
kdld_write [Data]
kdlf_write [Data] write data to a lob (via buffers or callbacks)
kdlgsp_init Space management batching */
kdliAppendData [LOB_INODE]
kdliInjectBuffer [LOB_INODE]
kdliOpAppend [LOB_INODE]
kdliReadX [LOB_INODE]
kdliWriteData [LOB_INODE]
kdliWriteV [LOB_INODE]
kdliXfmCheck [LOB_INODE]
kdli_fwritev [LOB_INODE]
kdli_readx [LOB_INODE]
kdlrci_get_inline_data [LOB_KDLRCI]
kdlwFlush [LOB_KDLW]
kdlwFlushLobInt [LOB_KDLW]
kdlw_read [LOB_KDLW]
kdlw_read_data [LOB_KDLW]
kdlw_write [LOB_KDLW]
kdlxDecompress1 [LOB_KDLX]
kdlxDecompressCbk [LOB_KDLX]
kdlxDecompressSUnit [LOB_KDLX]
kdlxDecompressUnit [LOB_KDLX]
kdlx_read [LOB_KDLX]
kdlxdup_flush [LOB_KDLXDUP]
kdlxdup_read [LOB_KDLXDUP]
kdsgrp Get row piece */
kdst_fetch Kernel Data Scan Table Fetch
kdugetpart KDT: get partition information for a deleted/updated row
kdusru KDU: Single Row Update, main entry
kdzhGetBlockDba [ADVCMP_COMP]
kdzhailseb [ADVCMP_COMP]
kdzhbirc [ADVCMP_COMP]
kdzhcl [ADVCMP_COMP]
kebm_slave_main [MMON]
kernel Kernel Service User management RESet Iterrupt in process
kesaiExecAction [SQL_Manage_Infra]
kesaiTuneSqlDrv [SQL_Manage_Infra]
kespmEvolveDrv [SQL_Perf]
kestsTuneSqlDrv [SQL_Tune]
kestsaAutoTuneDrv [SQL_Tune_Auto]
kestsaAutoTuneSql [SQL_Tune_Auto]
kestsaDoRounds [SQL_Tune_Auto]
kestseDoOneExec [SQL_Test_Exec]
kestseDoOneRound [SQL_Test_Exec]
kestseExecutePlans [SQL_Test_Exec]
kestsePlansDoRounds [SQL_Test_Exec]
kestsiIndexAnalyzeDrv [SQL_Tune_Index]
kewb_maintain_thresholds [AWR]
kewbmbta_do [AWR]
kewrews_execute_wr_sql [REPOSITORY]
kewrfdbs_flush_data_by_sql [FLUSH]
kewrfsst_flush_sqlstat [FLUSH]
kewrft_flush_table [FLUSH
kewrgwxf1_gwrsql_exft_1 [REPOSITORY]
kewrgwxf_gwrsql_exft [REPOSITORY]
kewrose_oci_stmt_exec [REPOSITORY]
kewuxs_execute_statement [AWR]
kfddsGet [ASM]
kfioRequest [ASM]
kfioRequestPriv [ASM]
kfioRqSetPrepare [ASM]
kfioSubmitIO [ASM]
kfioTranslateIO [ASM]
kfkOpenErrRet [KFK]
kfk_check_load_lib [KFK]
kfk_check_load_lib_asminst [KFK]
kfk_load_by_idx_in_pga [KFK]
kfk_oss_initialize [KFK]
kfpkgDGReadFile [ASM]
kgeade KGE ADd Error onto the error stack
kgeadse KGE ADd String Internal Error onto the error stack
kgeasi Raise an error on an ASSERTION failure (IGNORE)
kgeasnmierr
kgerev kgerev - KGE Record Error code (with Va_list) */
kgerinv KGE Record Internal (Named) error (with Va_list)
kgerinv_internal record internal or soft internal named error
kgesinv KGE Signal Internal (Named) error (with VA_list)
kghalf KGH: Non-recoverably allocate a freeable chunk of memory
kghalo KGH: main allocation entry point
kghalp KGH: Allocate permanent memory
kghasp [KGH]
kghbigasp [KGH]
kgherror [KGH] KGH: Internal routine for signaling an error
kghfnd KGH: Find a chunk of at least the minimum size
kghfre [KGH]
kghfrf KGH: Non-recoverably free a freeable chunk of space
kghfrh [KGH]
kghfrh_internal [KGH]
kghfrmrg [KGH]
kghfrunp KGH: Ask client to free unpinned space
kghfrx Free extent. This is called when a heap is unpinned to request that it
kghgex KGH: Get a new extent
kghnerror [KGH]
kghnospc KGH: There is no space available in the heap, signal an error.
kghssgfr [KGH]
kghssggr [KGH]
kghxal Allocate a fixed size piece of shared memory
kglLock [LIBCACHE]
kglMutexCleanupAll [LIBCACHE]
kglMutexRecovery [LIBCACHE]
kglOnErrorMutexCleanup [LIBCACHE]
kglSessionHashInsert [LIBCACHE]
kgldafr [LIBCACHE]
kgldon [LIBCACHE]
kgldpo [LIBCACHE]
kgldpo0 [LIBCACHE]
kglget [LIBCACHE]
kglgob [LIBCACHE]
kglhdd [LIBCACHE]
kglhdda [LIBCACHE]
kglhpd kglhpd - KGL HeaP Deallocate */
kgllccl [LIBCACHE]
kgllkal [LIBCACHE]
kgllkdl [LIBCACHE]
kgllkds [LIBCACHE]
kglobal kglobal - KGL OBject AlLocate
kglobcl kglobcl - KGL OBject CLear all tables */
kglobf0 kglobf0 - KGL OBject Free heap/data block 0 of an object [LIBCACHE]
kglobfr kglobfr - KGL OBject FRee all heaps (except data block 0`s) of an object
kglobld [LIBCACHE]
kglobpn KGL2: OBject PiN heaps and load data pieces [LIBCACHE]
kglpim KGL: PIn and load More heaps [LIBCACHE]
kglpin KGL: PIN heaps and load data pieces of an object [LIBCACHE]
kglpndl [LIBCACHE]
kglpnds [LIBCACHE]
kglrfcl kglrfcl - KGL ReFerence CLear
kglsscn Scan a loaded set invoking a supplied callback for each element
kgmgaicn KGM Generic Arguments Input Conversions
kgmtconv KGMT perform CONVersion
kgmtimob IMage to OBject (named types)
kjblcrcbk [GCS]
kjbmpocr [GCS]
kjbmundocr [GCS]
kjbrcrcvt [GCS]
kjbrscrping [GCS]
kjcsmpav allocate a msg b 0 1 1
kjcsrmg receive a vector of messages
kjctr_pbmsg process batch message
kjctr_rksxp read messages from KSXP service
kjctr_watq read messages from wait queue
kjctrcv Receive messages
kjcts_dmpbmsg dump batch message content
kjmpmsgi [RAC_MLMDS]
kjmsm [RAC_MLMDS] lmS Main loop
kjmxmpm [RAC_MLMDS]
kkcnrli [AQ]
kkdcico Kkdc Insert COnstraint definition.
kkdlacd KKDL get All Column Definitions: Get all column definitions
kkdlcod
kkdoloi Load Objects-related Information
kkeIdxSelectivity [SQL_Costing]
kkeapr KKE: anaylze predicates for optimization - returns stat ptr
kkecpst Create copy of column statistics in compile time memory
kkeidc [SQL_Costing]
kkejcd returns cardinality of a join between two tables
kkejeq Computes the join cardinality for an equijoin predicate
kkepsl selectivity of single predicate
kkestAddMCPredToCtx [SQL_Costing]
kkestAllocMCCtx [SQL_Costing]
kkestBuildMCCtxFromKeys [SQL_Costing]
kketac [SQL_Costing]
kkevcs set view column stats from underlying column
kkmatr [SQL_Semantic] get All TRiggers
kkmdel extra semantic processing for deletes
kkmdrv [SQL_Semantic]
kkmfcbbt [SQL_Semantic]
kkmfcblo [SQL_Semantic]
kkmfcbrm [SQL_Semantic]
kkmpfcbk [SQL_Semantic]
kkmupd [SQL_Semantic]
kkmups [SQL_Semantic]
kkmupsViewDestFro [SQL_Semantic]
kkoBitmapAccPath [SQL_Costing]
kkoabr [SQL_Costing]
kkobmp [SQL_Costing]
kkobrfak [SQL_Costing]
kkocnp [SQL_Costing] kkocnp - KKO Cost Next Permutation
kkofbp [SQL_Costing]
kkofmp [SQL_Costing]
kkoiqb [SQL_Costing] KKO: Initialize Query Block
kkoixo [SQL_Costing]
kkojnp [SQL_Costing] KKO: Join Order Path
kkonxc [SQL_Costing]
kkooqb [SQL_Costing] KKO: Optimize Query Block
kkopmCheckSmbUpdate KKOPM Check if updates to the Sql Management Base are pending.
kkoqbc [SQL_Costing] KKO: Query block optimization start point
kkotap [SQL_Costing]
kkpalt [PART]
kkpamDGSPam [PART]
kkpamFRange [PART]
kkpamRFGet [PART]
kkpapDAFkk [PART]
kkpapDAFkkSLvl [PART]
kkpapFMParts [PART]
kkpapSetBounds [PART]
kkpoati_alter_table_index_maint index maintenance driver
kkpomiu_mark_index_unusable Marks an index unusable
kkqctdrvIT [SQL_Transform] KKQCT DRiVer Initiate cost-based Transformation
kkqctdrvJF [SQL_Transform]
kkqctdrvTD [SQL_Transform] KKQCT DRiVer for Transformation Directives
kkqcttcalo [SQL_Transform]
kkqdrv [SQL_Transform] Kernel Kompile Query transformations DRiVer
kkqgbpCheckPred KKQGBP Check Validity of Pred
kkqgbpCheckValidity KKQGBP Check Basic Validity
kkqgbpColHasHighNDV KKQGBP Column Has High NDV
kkqgbpTravChkTran KKQGBP Traverse, Check and Transform
kkqgbpdrv KKQGBP DRiVer
kkqjfUnitTrans [SQL_Transform]
kkqjfdrv [SQL_Transform]
kkqjfgdtr [SQL_Transform]
kkqjfpt [SQL_Transform]
kkqjpddrv [SQL_Transform]
kkqtutlCleanupSubqCB [SQL_Transform]
kkqtutlMarkRefsInQB [SQL_Transform]
kkqtutlPerformSetOp [SQL_Transform]
kkqtutlPerformSetOpOnList [SQL_Transform]
kkqvmTrMrg [SQL_VMerge]
kkqvmdrv [SQL_VMerge]
kkqvmdrv2 [SQL_VMerge]
kksCloseCursor [cursor]
kksFullTypeCheck [cursor]
kksLoadChild [cursor] Load Child
kksOnErrorMutexCleanup [cursor]
kksParentHandleFreeCbk [cursor]
kksParseChildCursor [cursor]
kksParseCursor [cursor] KKS: Parse Cursor
kksSetBindType [cursor]
kksfbc [cursor] KKS: Find Bound Cursor
kkspbd0 [cursor]
kkspsc0 [cursor] KKS: Parse Shared Cursor
kkx_push_env_for_ICD_for_new_session [PROGINT_PLSQL]
kkxexe KKX: execute plsql
kkxrpc ARGSUSED
kkxtexe - KKX Trigger EXEcute
kkyase ? Module Notes: kky - Kerner Kompilation sYstem/session
klclil1r [DIRPATH_LOAD] Kernel Loader C Level Interface Load 1 Row
klcslod load NLS data object
kllcqgf [DIRPATH_LOAD]
klmalf [DIRPATH_LOAD]
kluprd [DIRPATH_LOAD]
kluuld [DIRPATH_LOAD]
kluuldcs [DIRPATH_LOAD]
kluuscn [DIRPATH_LOAD]
kodpunp kodpunp - KOD (Pickler) UNPickle an image into an object
kohalc KOH: ALlocate memory Chunk
kohdtg KOH: DuRation Table Get an duration entry
kokbXformCollItersInQbc [OBJECTS_Types]
kokegkldai [OBJECTS_Images]
kokl_pdbaware_kdlf_copy [OBJECTS_Types]
koklcopy2 [OBJECTS_Types]
koklcre [OBJECTS_Types] KOK Lob CREate
kokleva [OBJECTS_Types] lob EVAluate
koklglfn [OBJECTS_Types]
kokliccb [OBJECTS_Types]
kokliclo [OBJECTS_Types] KOK Lob Internal Create with another LOcator
kokligrd kokligrd - KOK Lob Internal initialize kdllfn with row data */
koklivrl [OBJECTS_Types]
kokltcc [OBJECTS_Types]
kokltcr [OBJECTS_Types]
koklwrite1 [OBJECTS_Types] KOKL Write with Conversions
kokmrwo [OBJECTS_Types]
kokmrwo_agg [OBJECTS_Types]
kolaCreateFromSource [LOB]
kolaErrorHandler KOLA ERROR handler
kolarsAssign [LOB]
kole_substr [LOB_Default]
kole_templob_init [LOB_Default]
koltitcr [OBJECTS_Types]
kolttcr [OBJECTS_Types]
kotgatc [OBJECTS_Types]
koxsihread koxsihread - KOXS Image Handle WRITE (from buffer)
kpdbfCopyTaskCbk parallel copy or move file task callback
kpdbfDeleteFile delete a file based on copy or move
kpndbcon Kernel Prog Network - DBlink CONNection
kpoal8 kpoal8.c - Kernel Programmatic Oracle ALl Version 8
kpoauth KPO AUTHenticate
kpodpuls [DIRPATH_LOAD]
kpolob [PROGINT_MISC] kpolob.c - KPP Lob operations
kponPurgeUnreachLoc [AQ] remove registrations for unreachable locations
kpoopq KPO: Set Keyword Value pair
kpooprx open, parse, and optionally execute
kporpc kporpc.c - The oracle side function to start rpc
kprball execute ALL bundled KPR (RPI) operations
kpudpxuls_ctxUnloadStream [DPAPI_Load]
kpuexec kpuexec - KPU : Execute
kpulfwr [PROGINT]
kpulfwrarr [PROGINT]
kpurcs kpurcs - KPU Remote Call with ServiceContext
kpurcsc [PROGINT] kpurcsc - KPU Remote Call with ServiceContext, Callbacks
kpureq kpureq - KPU : Request (a statement to be executed)
kqfd_WRT_qerfxtst_c FIXED TABLE [SQL_Execution]
kqlUpdateStubs [LIBCACHE]
kqlvld [LIBCACHE]
kqrsrd subordinate cache object read
krtchk check consistency of specied with translation table
ksbabs [background_proc] KSB: Background process: Action based server
ksbcti call timeout/interrupts
ksbrdp [background_proc] KSB: run a detached (background) process
kscnfy KSC invoke notifier
ksddoa # Debug support Do an Action
ksdhng_analyze_graph [hang_analysis]
ksdhng_graph_build_local [hang_analysis]
ksdhng_local_detect [hang_analysis]
ksdhng_request_msg_get [hang_analysis]
ksdhng_request_msg_get_phase_di [hang_analysis]
ksdpcg # KSD: Post and check event in the specified event group
ksdpec # KSD: Post Event and Check trigger condition
ksdxcb # CallBack for sosd layer signal handler (IGNORE)
ksdxfstk dump abridged os STacK
ksedmp # KSE: dump the process state
ksedst # KSE: dump the call stack
ksedst1 Kernel Service Error Debug Stack Trace 1 (helper)
ksepop [KSE]
ksesin # KSE: signal an internal error (named)
ksfd_io [VOS]
ksfd_kfioRequest [VOS]
ksfd_osmio [VOS]
ksfdmp # Call relevant dump routine
ksfdnfy ksfd PDB open notifier
ksfdread [VOS]
ksfpec # KSF: Post an event??
ksliwat KSL: Latching: Awaken a wait event
ksmapg Callback function for allocating a PGA extent
ksmasg Callback function for allocating an SGA extent. The SGA is fixed size
ksmsgfr [KSM]
kssdch [VOS] KSS: delete children of state obj.
kssdct KSS: delete children of specified type
kssdel [VOS]
kssxdl [VOS] KSS: delete SO ignoring all except severe errors. cleans latches
ksucln [ksu] KSUCLN: Cleanup detached process
ksucln_dpc [ksu]
ksucln_dpc_cleanup [ksu]
ksucln_dpc_dfs [ksu]
ksucln_dpc_main [ksu]
ksucre Creation/deletion of sessions
ksucrp KSU: Create and initialise a process
ksudel KSU: delete specified user session
ksudlc delete call
ksudlp [ksu] KSU: delete process.called when user detaches or during cleanup by PMON
ksudss system state dump
ksupop KSU: pop user or recursive call
ksuxda_del_proc [ksu]
ksuxdl [ksu] KSUCLN: Delete state object for PMON
ksuxds [ksu] KSU: acquires the ksupol, the so latch protects access to sniper bit
ksvrdp [ksv_trace] Run generic Detached slave Process
kswsdls KSWS DeLete Service
ktbapundo Block APply UNdo
ktbgcl1 KTB General CLean 1. DESCRIPTION: Performs ITL cleanout for read consistency and for current blocks. For read consistency (KTB_CR), always cleanout until the CR scan time For current (KTB_CUR)
ktbgcur Kernel Transaction Block GET
ktcrsp1 KTC Rollback to SavePoint
ktrgcm common CR read code
ktrget get a read consistent block
ktsiseg_info KTS Segment INFo
ktsisegstg Given a ktid fills the stgdef
ktspfmdb - Format a range of data blocks
ktspfmtrng - Format one range or less of data blocks
ktspgfblk3 KTSP Get first level bitmap block
ktspgsp_main Get Space for inserts
ktsplbfmb KTSPLB Move space from Freelist to Bitmap
ktsplbrecl reclaim space
ktssdrp_segment converts segment to temp in preparation for dropping. This procedure gets a lock on the segment (so the object cleanup will actually drop it at commit time) and converts segment to TEMPORARY type
ktuapundo Undo APply UNdo
ktugct Kernel Transaction Undo Get Commit Times */ This routine will return the commit times for transaction ids in */ a data block`s itl. It uses ktbisr and ktbisn to scan the block and */
ktundo Kernel Transaction UNDO
kturCurrBackoutOneChg Get undo rec to RB txn, non-CR only (Undo BacK Out)
kturRollbackToSavepoint Undo Roll back to Save Point
kturbk Kernel transaction Undo Roll BacK This is for CR only. Read the undo record (CRX) pointed by the uba and call ktundo to actually backs out the change.
kturbt Kernel Transactrion Undo Roll Back To (time scn) */ Routine to roll a transaction back so that "time" is */ in range on the block.
kwqadrpq Kernel queue Administration DRoP Queue
kwqbcsecl
kwqmnslv [AQ_TM] Slave callback called by ksvrdp
kwqvdsvc Drop SerViCe
kxe_push_env_internal_pp_ [SQL_Execution]
kxfpProcessError [Parallel_Execution]
kxfpProcessMsg [Parallel_Execution]
kxfpValidateSlaveGroup [Parallel_Execution]
kxfpgsg [Parallel_Execution]
kxfpqdqr [Parallel_Execution]
kxfpqidqr [Parallel_Execution]
kxfprdp [Parallel_Execution] KXFP: Run Detached Process
kxfrAllocSlaves [Parallel_Execution]
kxfrDmpGen [Parallel_Execution]
kxfrDmpSm [Parallel_Execution]
kxfrDmpState [Parallel_Execution]
kxfralo [Parallel_Execution]
kxfrialo [Parallel_Execution]
kxfxcp [Parallel_Execution]
kxfxcw [Parallel_Execution]
kxfxgs [Parallel_Execution]
kxfxmai [Parallel_Execution] KXFX: slave process main entry point
kxfxsExecute [Parallel_Execution]
kxfxsStmtExecute [Parallel_Execution]
kxfxsp [Parallel_Execution] KXFX: open, parse, bind entire dfo
kxhrUnpack KXHR: HJ: unpack a row
kxibDoFinish kxibDoFinish - do finish processing for a specified index
kxibFinish kxibFinish - kxib Finish index maintenance
kxsClean [cursor]
kxsCloseXsc [cursor]
kxsFreeExecutionHeap [cursor]
kxsFreeWorkArea [cursor]
kxsGetRuntimeLock [cursor] eXecute Shared cursor - Get Runtime Lock
kxsScanCursors [cursor]
kxsffir [cursor] kxsffir - KXS Function FIRe
kxtexe KXT: EXEcute trigger
kzpcap kzpcsp - KZP Check System Privilege
main # Standard executable entry point
msqapp Append character string to SQL statement.
npicon0 npicon0 - Network Program Interface CONnnect
npigdn0 npigdn: Get Database link info by Name.
opiDeferredSem OPI perform Deferred semantic Analysis
opiSem OPI SEMantic analysis driver
opidcl cleanup after the sqlnet connection is terminated. Put the cleanup actions
opidrv # opidrv - ORACLE Program Interface DRiVer (IGNORE)
opiexe opiexe - ORACLE Program Interface EXEcute
opifch OPIFCH: oracle side of the fetch interface
opifch2 program interface oracle fetch - main routine [SQL_Execution]
opiino ORACLE Program Interface INitialize Opi
opimai_real ? Module Notes: ?
opiodr OPIODR: ORACLE code request driver - route the current request
opiosq OPIOSQ: prepare to parse a sql command
opiosq0 OPI: prepare to parse a sql command
opipls opipls.c -- contains opi bundled call executor and support routines
opiprs opiprs - ORACLE Program Interface: PaRSe
opiprsdml
opiprsdmlcb opiprsdml callback fucntion
opirip # Oracle Program Interface Run Independent Process (IGNORE)
opistr STaRt Oracle
opitca OPITCA: sets up the context area
opitsk Two Task Oracle Side Function Dispatcher
osnsgl3 osnsgl3 - OSN SinGLe task connect to the server process for 3gl callbacks
osnsglw [Two_Task]
pcicmp0 [PLSQL_Infrastructure]
pefcal [PLSQL_External_Proc]
pefccal [PLSQL_External_Proc]
peftrusted [PLSQL_External_Proc] Execute a trusted Callout.
peicnt [PLSQL_Code_Execution] PL/SQL controlled Execution
pevm_BFTCHC [PLSQL_Code_Execution]
pevm_FCAL [PLSQL_Code_Execution]
pevm_NCAL [PLSQL_Code_Execution]
pevm_icd_call_common [PLSQL_Code_Execution]
pextproc [PLSQL_Code_Execution] Pefm call EXTernal PROCedure
pfri3_inst_body [PLSQL_Code_Execution]
pfri7_inst_body_common [PLSQL_Code_Execution]
pfrins [PLSQL_Code_Execution]
pfrinstr_FCAL [PLSQL_Code_Execution]
pfrinstr_FTCHC [PLSQL_Code_Execution]
pfrinstr_ICAL [PLSQL_Code_Execution]
pfrinstr_XCAL [PLSQL_Code_Execution]
pfrrun [PLSQL_Code_Execution] PSDEVN: PL/SQL Interpreter Main Instruction Loop
pfrrun_no_tool [PLSQL_Code_Execution] fast interpretation loop
ph2qeril_expand_rec_in_list IN-LIST [SQL_Execution]
phf_read_items [PLSQL_Infrastructure]
phpcmp [PLSQL_Infrastructure]
plsql_run [PLSQL_PSD_Standalones] single entry point for top level pfrrun and penrun
pricar [PLSQL_Code_Execution]
pricbr PL/SQL Remote Interface Call Back, Remote
prient [PLSQL_Code_Execution] Run given (RPC) entrypoint
prient2 [PLSQL_Code_Execution] common code to run given entrypoint: could be RPC or non-RPC
psddr0 Null pointer definitions for ttcdrv callback and contet. Used in psddrv. [PLSQL_PSD_Generic]
psdexsp [PLSQL_PSD_Generic] [PROGINT_PLSQL] All Private Routines
psdextp [PLSQL_PSD_Generic] [PROGINT_PLSQL] The only public routine, the actual PSD *
psdnal [PLSQL_PSD_Generic]
qcdoloi Load Object-specific Information
qcsogati [OBJECTS_Semanal]
qcspafq [SQL_Parser]
qcspqb [SQL_Parser]
qcspqbDescendents [SQL_Parser]
qcsprfro [SQL_Parser]
qcsprfro_tree [SQL_Parser]
qctogtia [OBJECTS_Semanal]
qctostcdc [OBJECTS_Semanal]
qctostco [OBJECTS_Semanal]
qeraeAllocate AND-EQUAL [SQL_Execution]
qeraeClose AND-EQUAL [SQL_Execution]
qeraeFetch AND-EQUAL [SQL_Execution]
qeraeRestoreFetchState AND-EQUAL [SQL_Execution]
qeraeRowProcedure AND-EQUAL [SQL_Execution]
qeraeSaveFetchState AND-EQUAL [SQL_Execution]
qeraeStart AND-EQUAL [SQL_Execution]
qerandvFetch Approximate NDV fetch method
qerbaAllocate BITMAP INDEXAND [SQL_Execution]
qerbaClose BITMAP INDEXAND [SQL_Execution]
qerbaFetch BITMAP INDEXAND [SQL_Execution]
qerbaFndOl BITMAP INDEXAND [SQL_Execution]
qerbaInitQB BITMAP INDEXAND [SQL_Execution]
qerbaPruneInputs BITMAP INDEXAND [SQL_Execution]
qerbaStart BITMAP INDEXAND [SQL_Execution]
qerbaStartWithQB BITMAP INDEXAND [SQL_Execution]
qerbaStrmAnd BITMAP INDEXAND [SQL_Execution] QERBA Stream And
qerbaUUStrmAnd BITMAP INDEXAND [SQL_Execution]
qerbaUUStrmNOT BITMAP INDEXAND [SQL_Execution]
qerbaUUStrmOR BITMAP INDEXAND [SQL_Execution]
qerbaUncompressStrm BITMAP INDEXAND [SQL_Execution]
qerbcARwo BITMAP INDEX COMPACTION [SQL_Execution]
qerbcAllocate BITMAP INDEX COMPACTION [SQL_Execution]
qerbcClose BITMAP INDEX COMPACTION [SQL_Execution]
qerbcCon BITMAP INDEX COMPACTION [SQL_Execution]
qerbcFetch BITMAP INDEX COMPACTION [SQL_Execution]
qerbcRop BITMAP INDEX COMPACTION [SQL_Execution]
qerbcStart BITMAP INDEX COMPACTION [SQL_Execution]
qerbcUnbuf BITMAP INDEX COMPACTION [SQL_Execution]
qerbiARwo BITMAP INDEX CREATION [SQL_Execution]
qerbiAllocate BITMAP INDEX CREATION [SQL_Execution]
qerbiClose BITMAP INDEX CREATION [SQL_Execution]
qerbiCmpSz BITMAP INDEX CREATION [SQL_Execution]
qerbiCon BITMAP INDEX CREATION [SQL_Execution]
qerbiCreateHeap BITMAP INDEX CREATION [SQL_Execution]
qerbiEntSz BITMAP INDEX CREATION [SQL_Execution]
qerbiFetch BITMAP INDEX CREATION [SQL_Execution]
qerbiFreeMemory BITMAP INDEX CREATION [SQL_Execution]
qerbiIPI BITMAP INDEX CREATION [SQL_Execution]
qerbiReduceMemory BITMAP INDEX CREATION [SQL_Execution]
qerbiRop BITMAP INDEX CREATION [SQL_Execution]
qerbiSetAutoMemoryRequirement BITMAP INDEX CREATION [SQL_Execution]
qerbiShouldReduceMemory BITMAP INDEX CREATION [SQL_Execution]
qerbiSrchPI BITMAP INDEX CREATION [SQL_Execution]
qerbiStart BITMAP INDEX CREATION [SQL_Execution]
qerbialv BITMAP INDEX CREATION [SQL_Execution]
qerbmAllocate MINUS [SQL_Execution]
qerbmClose MINUS [SQL_Execution]
qerbmFchRS MINUS [SQL_Execution]
qerbmFetch MINUS [SQL_Execution]
qerbmMovRL MINUS [SQL_Execution]
qerbmStart MINUS [SQL_Execution]
qerbmStrmMi MINUS [SQL_Execution]
qerboAllocate BITMAP INDEX OR [SQL_Execution]
qerboClose BITMAP INDEX OR [SQL_Execution]
qerboFetch BITMAP INDEX OR [SQL_Execution]
qerboMerge BITMAP INDEX OR [SQL_Execution]
qerboReadBM BITMAP INDEX OR [SQL_Execution]
qerboStart BITMAP INDEX OR [SQL_Execution]
qerbtAllocate BITMAP CONVERT [SQL_Execution]
qerbtClose BITMAP CONVERT [SQL_Execution]
qerbtFetch BITMAP CONVERT [SQL_Execution]
qerbtPaAllocate BITMAP CONVERT [SQL_Execution]
qerbtRop BITMAP CONVERT [SQL_Execution]
qerbtStart BITMAP CONVERT [SQL_Execution]
qerbtTTGet BITMAP CONVERT [SQL_Execution]
qerbuAllocate BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuClose BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuCmpCpl BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuCrHeap BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuCrItem BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuEndMrg BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuFetch BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuFrHeaps BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuInitMrg BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuMemCheck BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuNPass BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuNStrp BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuNaRange BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuOrMrg BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuRop BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuSetAutoMemoryRequirement BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuSetMemL BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuStart BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbuTrItem BITMAP INDEX UNLIMITED-OR [SQL_Execution]
qerbx1RidRChk BITMAP INDEX ACCESS [SQL_Execution]
qerbxARRwo BITMAP INDEX ACCESS [SQL_Execution]
qerbxARwo BITMAP INDEX ACCESS [SQL_Execution]
qerbxAllocate BITMAP INDEX ACCESS [SQL_Execution]
qerbxClose BITMAP INDEX ACCESS [SQL_Execution]
qerbxFFSFetch BITMAP INDEX ACCESS [SQL_Execution]
qerbxFetch BITMAP INDEX ACCESS [SQL_Execution]
qerbxMakeKey BITMAP INDEX ACCESS [SQL_Execution]
qerbxPaAllocate BITMAP INDEX ACCESS [SQL_Execution]
qerbxRFetch BITMAP INDEX ACCESS [SQL_Execution]
qerbxRelease BITMAP INDEX ACCESS [SQL_Execution]
qerbxReleaseSelf BITMAP INDEX ACCESS [SQL_Execution]
qerbxRidRChk BITMAP INDEX ACCESS [SQL_Execution]
qerbxScanInd BITMAP INDEX ACCESS [SQL_Execution]
qerbxStart BITMAP INDEX ACCESS [SQL_Execution]
qerbxTIGet BITMAP INDEX ACCESS [SQL_Execution]
qerbxUpdKeyRid BITMAP INDEX ACCESS [SQL_Execution]
qerbxXKFetch BITMAP INDEX ACCESS [SQL_Execution]
qercbAllocate CONNECT BY [SQL_Execution]
qercbCheckForLoops CONNECT BY [SQL_Execution]
qercbClose CONNECT BY [SQL_Execution]
qercbFetch CONNECT BY [SQL_Execution]
qercbPopState CONNECT BY [SQL_Execution]
qercbPushState CONNECT BY [SQL_Execution]
qercbSetPriorsToBase CONNECT BY [SQL_Execution]
qercbSetPriorsToEntry CONNECT BY [SQL_Execution]
qercbSetPriorsToNull CONNECT BY [SQL_Execution]
qercbSetStackToPriors CONNECT BY [SQL_Execution]
qercbStart CONNECT BY [SQL_Execution]
qercbiAllocate SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiCheckForLoops SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiCheckForLoopsLLD SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiCheckForLoopsRW SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiClose SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiComparePrior SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiDisplayLoopErrorMessage SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiFetch SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiFilterData SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiGoToPrior SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiInitPathFuncs SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiNoFilRowP SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPFetch SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPStart SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPopState SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPopulateBaseOpns SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPumpCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPumpQBCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiPushState SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiQBCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithBFetch SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithBPumpCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithBPumpQBCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithCursorEnd SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithDFetch SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithRowP SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRecWithTmpIxIns SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRelease SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiRowP SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSeekCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSetIsLeafCycle SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSetPriorsToBase SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSetPriorsToEntry SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSetPriorsToNull SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiSimpleSeekCompare SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiStart SUPPORT FOR CONNECT BY [SQL_Execution]
qercbiUnpackFromSort SUPPORT FOR CONNECT BY [SQL_Execution]
qercoAllocate COUNT [SQL_Execution]
qercoFetch COUNT [SQL_Execution]
qercoRop COUNT [SQL_Execution]
qercoStart COUNT [SQL_Execution]
qercotAllocate COUNT [SQL_Execution]
qercotClose COUNT [SQL_Execution]
qercotFetch COUNT [SQL_Execution]
qercotStart COUNT [SQL_Execution]
qercotcae COUNT [SQL_Execution]
qerdlAllocate DELETE [SQL_Execution]
qerdlConStaRow DELETE [SQL_Execution]
qerdlCubeRowProcedure DELETE [SQL_Execution]
qerdlFetch DELETE [SQL_Execution]
qerdlStart DELETE [SQL_Execution]
qerdlStatus DELETE [SQL_Execution]
qerepAllocate EXPLOSION [SQL_Execution]
qerepFetch EXPLOSION [SQL_Execution]
qerepRop EXPLOSION [SQL_Execution]
qerepStart EXPLOSION [SQL_Execution]
qerffAllocate FIFO BUFFER [SQL_Execution]
qerffClose FIFO BUFFER [SQL_Execution]
qerffFetch FIFO BUFFER [SQL_Execution]
qerffRowProc FIFO BUFFER [SQL_Execution]
qerffStart FIFO BUFFER [SQL_Execution]
qerfiAllocate FIRST ROW [SQL_Execution]
qerfiFetch FIRST ROW [SQL_Execution]
qerflAllocate FILTER DEFINITION [SQL_Execution]
qerflFetch FILTER DEFINITION [SQL_Execution]
qerflFetchOutside [SQL_Execution] FILTER DEFINITION fetch operation for a filter
qerflRestoreFetchState FILTER DEFINITION [SQL_Execution]
qerflRop FILTER DEFINITION [SQL_Execution]
qerflRopAllowUnknown FILTER DEFINITION [SQL_Execution]
qerflSaveFetchState FILTER DEFINITION [SQL_Execution]
qerflStart FILTER DEFINITION [SQL_Execution]
qerfuAllocate UPDATE [SQL_Execution]
qerfuCreatePri UPDATE [SQL_Execution]
qerfuFetch UPDATE [SQL_Execution]
qerfuFetch1 UPDATE [SQL_Execution]
qerfuLockingRowProcedure UPDATE [SQL_Execution]
qerfuProcessFetchedRow UPDATE [SQL_Execution]
qerfuRowProcedure UPDATE [SQL_Execution]
qerfuSelect UPDATE [SQL_Execution]
qerfuStart UPDATE [SQL_Execution]
qerfuTransSel UPDATE [SQL_Execution]
qerfxAllocate FIXED TABLE [SQL_Execution]
qerfxArrayMaxSize FIXED TABLE [SQL_Execution]
qerfxCleanup FIXED TABLE [SQL_Execution]
qerfxClose FIXED TABLE [SQL_Execution]
qerfxCreateTempClobFromBuff FIXED TABLE [SQL_Execution]
qerfxDataToClob FIXED TABLE [SQL_Execution]
qerfxFetch FIXED TABLE [SQL_Execution]
qerfxGCol FIXED TABLE [SQL_Execution]
qerfxStart FIXED TABLE [SQL_Execution]
qerfxStreamToClob FIXED TABLE [SQL_Execution]
qerfxTvrtPurgeCheck FIXED TABLE [SQL_Execution]
qerfxtstcb FIXED TABLE [SQL_Execution]
qerfxtstin FIXED TABLE [SQL_Execution]
qerfxtstsb8 FIXED TABLE [SQL_Execution]
qerfxtstub8 FIXED TABLE [SQL_Execution]
qerghAggregateRecords HASH GROUP BY [SQL_Execution]
qerghAllocate HASH GROUP BY [SQL_Execution]
qerghClose HASH GROUP BY [SQL_Execution]
qerghCopyWorkArea HASH GROUP BY [SQL_Execution]
qerghDumpCB HASH GROUP BY [SQL_Execution]
qerghFeedbackStats HASH GROUP BY [SQL_Execution]
qerghFetch HASH GROUP BY [SQL_Execution]
qerghFreeHashTable HASH GROUP BY [SQL_Execution]
qerghInitializeHashTable HASH GROUP BY [SQL_Execution]
qerghNoAggsCB HASH GROUP BY [SQL_Execution]
qerghPAggRowP HASH GROUP BY [SQL_Execution]
qerghPAggRowPRowsets HASH GROUP BY [SQL_Execution]
qerghPrepareForNextRun HASH GROUP BY [SQL_Execution]
qerghRelease HASH GROUP BY [SQL_Execution]
qerghRowP HASH GROUP BY [SQL_Execution]
qerghRowPRowsets HASH GROUP BY [SQL_Execution]
qerghStart HASH GROUP BY [SQL_Execution]
qergiAllocate GRANULE ITERATOR [SQL_Execution]
qergiFetch QERGR: FETCH procedure of PX Granule Iterator Row source, GRANULE ITERATOR [SQL_Execution]
qergiFirstPartition GRANULE ITERATOR [SQL_Execution]
qergiGetIdentifier GRANULE ITERATOR [SQL_Execution]
qergiGetPap GRANULE ITERATOR [SQL_Execution]
qergiResume GRANULE ITERATOR [SQL_Execution]
qergiStart GRANULE ITERATOR [SQL_Execution]
qergiSuspend GRANULE ITERATOR [SQL_Execution]
qergrAdaptiveFetch GROUP BY ROLLUP [SQL_Execution]
qergrAdaptiveFetchRowP GROUP BY ROLLUP [SQL_Execution]
qergrAllocate GROUP BY ROLLUP [SQL_Execution]
qergrCRowP GROUP BY ROLLUP [SQL_Execution]
qergrClose GROUP BY ROLLUP [SQL_Execution]
qergrCopyBufs GROUP BY ROLLUP [SQL_Execution]
qergrCopyVal GROUP BY ROLLUP [SQL_Execution]
qergrDisAggFetch GROUP BY ROLLUP [SQL_Execution]
qergrEvaB2N GROUP BY ROLLUP [SQL_Execution]
qergrEvaXtraOpns GROUP BY ROLLUP [SQL_Execution]
qergrFetch GROUP BY ROLLUP [SQL_Execution]
qergrFindGid GROUP BY ROLLUP [SQL_Execution]
qergrFreeBufs GROUP BY ROLLUP [SQL_Execution]
qergrGetB2N GROUP BY ROLLUP [SQL_Execution]
qergrInitADPR GROUP BY ROLLUP [SQL_Execution]
qergrMapCol GROUP BY ROLLUP [SQL_Execution]
qergrNosortFetch GROUP BY ROLLUP [SQL_Execution]
qergrNosortRowP GROUP BY ROLLUP [SQL_Execution]
qergrNullifyCols GROUP BY ROLLUP [SQL_Execution]
qergrPAggRowP GROUP BY ROLLUP [SQL_Execution]
qergrPrecompGid GROUP BY ROLLUP [SQL_Execution]
qergrRelease GROUP BY ROLLUP [SQL_Execution]
qergrRowP GROUP BY ROLLUP [SQL_Execution]
qergrSetADPRDistribution GROUP BY ROLLUP [SQL_Execution]
qergrSetupB2N GROUP BY ROLLUP [SQL_Execution]
qergrStart GROUP BY ROLLUP [SQL_Execution]
qergsAllocate GROUP BY SORT [SQL_Execution]
qergsClose GROUP BY SORT [SQL_Execution]
qergsFetch GROUP BY SORT [SQL_Execution] group by sort row source fetch
qergsPAggRowP GROUP BY SORT [SQL_Execution]
qergsPAggRowPRowsets GROUP BY SORT [SQL_Execution]
qergsPrepareForNextRun GROUP BY SORT [SQL_Execution]
qergsRelease GROUP BY SORT [SQL_Execution]
qergsRowP GROUP BY SORT [SQL_Execution]
qergsRowPRowsets GROUP BY SORT [SQL_Execution]
qergsStart GROUP BY SORT [SQL_Execution]
qerhcAllocate HASH CLUSTERS [SQL_Execution]
qerhcBPad HASH CLUSTERS [SQL_Execution]
qerhcClose HASH CLUSTERS [SQL_Execution]
qerhcEval HASH CLUSTERS [SQL_Execution]
qerhcFetch HASH CLUSTERS [SQL_Execution]
qerhcGetnFilRowScn HASH CLUSTERS [SQL_Execution]
qerhcHash HASH CLUSTERS [SQL_Execution]
qerhcRelease HASH CLUSTERS [SQL_Execution]
qerhcRestore HASH CLUSTERS [SQL_Execution]
qerhcSave HASH CLUSTERS [SQL_Execution]
qerhcStart HASH CLUSTERS [SQL_Execution]
qerhc_cb HASH CLUSTERS [SQL_Execution]
qerhcqFetch HASH CLUSTERS [SQL_Execution]
qerhjAdjustMPP HASH JOIN [SQL_Execution]
qerhjAllocHashTable HASH JOIN [SQL_Execution]
qerhjAllocate HASH JOIN [SQL_Execution]
qerhjBestFanout HASH JOIN [SQL_Execution]
qerhjBuildHashTable HASH JOIN [SQL_Execution]
qerhjBuildHashTable2 HASH JOIN [SQL_Execution]
qerhjClose HASH JOIN [SQL_Execution]
qerhjComputeFanoutAndBPS HASH JOIN [SQL_Execution]
qerhjComputeHjParameters HASH JOIN [SQL_Execution]
qerhjComputeMemory HASH JOIN [SQL_Execution]
qerhjComputeNbBuckets HASH JOIN [SQL_Execution]
qerhjComputeNbSlots HASH JOIN [SQL_Execution]
qerhjDisableHJCbk HASH JOIN [SQL_Execution]
qerhjExpandHashAreaCb HASH JOIN [SQL_Execution]
qerhjExtMemForPQBuffer HASH JOIN [SQL_Execution]
qerhjFOJSwapPartitions HASH JOIN [SQL_Execution]
qerhjFetch [SQL_Execution] Hash join row source - Fetch Procedure
qerhjFetchOuterJoin HASH JOIN [SQL_Execution]
qerhjFetchPhase2 HASH JOIN [SQL_Execution]
qerhjFitInMemory HASH JOIN [SQL_Execution]
qerhjFreeHashTable HASH JOIN [SQL_Execution]
qerhjFreeSpace HASH JOIN [SQL_Execution]
qerhjGenProbeHashTable HASH JOIN [SQL_Execution]
qerhjGetNewBuffer HASH JOIN [SQL_Execution]
qerhjGetNextRowPiece HASH JOIN [SQL_Execution]
qerhjInitializeManagementComponents HASH JOIN [SQL_Execution]
qerhjInnerProbeHashTable HASH JOIN [SQL_Execution]
qerhjInnerProbeHashTableRowset HASH JOIN [SQL_Execution]
qerhjInnerProbeProcessRowset HASH JOIN [SQL_Execution]
qerhjIterateOverBuffers HASH JOIN [SQL_Execution]
qerhjIterateScan HASH JOIN [SQL_Execution]
qerhjLeftNullExtend HASH JOIN [SQL_Execution]
qerhjLeftNullExtend2 HASH JOIN [SQL_Execution]
qerhjManageListElement HASH JOIN [SQL_Execution]
qerhjNewFlushedPartitions HASH JOIN [SQL_Execution]
qerhjPackBuffer HASH JOIN [SQL_Execution]
qerhjPackBufferRowset HASH JOIN [SQL_Execution]
qerhjProbeProcessRowsetFastPath HASH JOIN [SQL_Execution]
qerhjRHMigrate HASH JOIN [SQL_Execution]
qerhjRePartition HASH JOIN [SQL_Execution]
qerhjRelease HASH JOIN [SQL_Execution]
qerhjRemoveHashEntry HASH JOIN [SQL_Execution]
qerhjResizeBuild HASH JOIN [SQL_Execution]
qerhjRetainExpandCb HASH JOIN [SQL_Execution]
qerhjReturnPieceGivenAllPieces HASH JOIN [SQL_Execution]
qerhjReturnRowset HASH JOIN [SQL_Execution]
qerhjSetExecutionJoinType HASH JOIN [SQL_Execution]
qerhjSplitBuild HASH JOIN [SQL_Execution]
qerhjSplitBuildPrepare HASH JOIN [SQL_Execution]
qerhjSplitBuildRowset HASH JOIN [SQL_Execution]
qerhjSplitProbe HASH JOIN [SQL_Execution]
qerhjSplitProbeRowset HASH JOIN [SQL_Execution]
qerhjStart HASH JOIN [SQL_Execution]
qerhjSyncPendingIO HASH JOIN [SQL_Execution]
qerhjUpdateFilterStats HASH JOIN [SQL_Execution]
qerhjWalkBuffSemiJoin HASH JOIN [SQL_Execution]
qerhjWalkHashBucket [SQL_Execution] HASH JOIN EXEC HashJ - walk list of pointers in a hash bucket and check for a match
qerhjWalkHashBucket2 HASH JOIN [SQL_Execution]
qerhjadf HASH JOIN [SQL_Execution]
qerilAllocate IN-LIST [SQL_Execution]
qerilCopyInList IN-LIST [SQL_Execution]
qerilFetch IN-LIST [SQL_Execution]
qerilInListDupElim IN-LIST [SQL_Execution]
qerilInitializeInList IN-LIST [SQL_Execution]
qerilRestoreFetchState IN-LIST [SQL_Execution]
qerilRop IN-LIST [SQL_Execution]
qerilSaveFetchState IN-LIST [SQL_Execution]
qerilSortMultiCol IN-LIST [SQL_Execution]
qerilSortSingleCol IN-LIST [SQL_Execution]
qerilStart IN-LIST [SQL_Execution]
qerilcil IN-LIST [SQL_Execution]
qerilevaa IN-LIST [SQL_Execution]
qerilevao IN-LIST [SQL_Execution]
qerilfil IN-LIST [SQL_Execution]
qerilnil IN-LIST [SQL_Execution]
qerimDmlStaRowTyp2String INDEX MAINTENANCE [SQL_Execution]
qerimInitDmlStaRow INDEX MAINTENANCE [SQL_Execution]
qerimSendDummyStatusRow INDEX MAINTENANCE [SQL_Execution]
qerimalo INDEX MAINTENANCE [SQL_Execution]
qerimfch INDEX MAINTENANCE [SQL_Execution]
qerimrop INDEX MAINTENANCE [SQL_Execution]
qerimsta INDEX MAINTENANCE [SQL_Execution]
qerixAddNotNullStopKeyPredicate INDEX [SQL_Execution]
qerixAfterFetch INDEX [SQL_Execution]
qerixAllocate INDEX [SQL_Execution]
qerixAllocateIOT INDEX [SQL_Execution]
qerixAllocatePartCluster INDEX [SQL_Execution]
qerixAllocatePartNonCluster INDEX [SQL_Execution]
qerixBuildPKeyIOT INDEX [SQL_Execution]
qerixChangePartition INDEX [SQL_Execution]
qerixChangePartition_kdifk INDEX [SQL_Execution]
qerixChangePartition_kdixs INDEX [SQL_Execution]
qerixCheckPrefixColCount INDEX [SQL_Execution]
qerixClose INDEX [SQL_Execution]
qerixDeq_kdifk INDEX [SQL_Execution]
qerixFetch INDEX [SQL_Execution]
qerixFetchAndEqualRangeScan INDEX [SQL_Execution]
qerixFetchByLogicalRowid INDEX [SQL_Execution]
qerixFetchFastFullScan INDEX [SQL_Execution]
qerixFetchIOTPrimaryKey INDEX [SQL_Execution]
qerixFetchIOTRangeScan INDEX [SQL_Execution]
qerixFetchIOTSkipScan INDEX [SQL_Execution]
qerixFetchIndexMinMax INDEX [SQL_Execution]
qerixFetchSkipScan INDEX [SQL_Execution]
qerixFetchUniqueIndex INDEX [SQL_Execution]
qerixFillRowScn INDEX [SQL_Execution]
qerixFindRowScnIdx INDEX [SQL_Execution]
qerixGetIOTPnum INDEX [SQL_Execution]
qerixGetKey INDEX [SQL_Execution]
qerixGetNonKeyCol INDEX [SQL_Execution]
qerixGetRowid INDEX [SQL_Execution]
qerixGetnFilFbtInsdel INDEX [SQL_Execution]
qerixInitIOTPartSegment INDEX [SQL_Execution]
qerixInit_kdiss INDEX [SQL_Execution]
qerixKafOrderFn INDEX [SQL_Execution]
qerixLinearKeyBufLength INDEX [SQL_Execution]
qerixMakeLogicalRowid INDEX [SQL_Execution]
qerixMapSkipScanOpr INDEX [SQL_Execution]
qerixMarkEmptySegment INDEX [SQL_Execution]
qerixReInit_kdixs INDEX [SQL_Execution]
qerixRelease INDEX [SQL_Execution]
qerixReleaseSelf INDEX [SQL_Execution]
qerixRelease_kdifk INDEX [SQL_Execution]
qerixRelease_kdixs INDEX [SQL_Execution]
qerixRestoreChildRwo INDEX [SQL_Execution]
qerixRestoreFetchState INDEX [SQL_Execution]
qerixRestoreFetchState2 INDEX [SQL_Execution]
qerixRootDescChangePartition INDEX [SQL_Execution]
qerixRootDescInit INDEX [SQL_Execution]
qerixSaveChildRwo INDEX [SQL_Execution]
qerixSaveFetchState INDEX [SQL_Execution]
qerixSaveFetchState2 INDEX [SQL_Execution]
qerixStart INDEX [SQL_Execution]
qerixTIGet INDEX [SQL_Execution]
qerixTunnelGetKey INDEX [SQL_Execution]
qerixfidr INDEX [SQL_Execution]
qerixtFetch INDEX [SQL_Execution]
qerjoAllocate NESTED LOOP OUTER [SQL_Execution]
qerjoAllocateLHS NESTED LOOP OUTER [SQL_Execution]
qerjoClose NESTED LOOP OUTER [SQL_Execution]
qerjoCopyLHS NESTED LOOP OUTER [SQL_Execution]
qerjoDisableNLJCbk NESTED LOOP OUTER [SQL_Execution]
qerjoDisableNLJRws NESTED LOOP OUTER [SQL_Execution]
qerjoFetch NESTED LOOP OUTER Fetch from join row source [SQL_Execution]
qerjoFreeLHS NESTED LOOP OUTER [SQL_Execution]
qerjoGetDynOff NESTED LOOP OUTER [SQL_Execution]
qerjoGetRightSort NESTED LOOP OUTER [SQL_Execution]
qerjoPassthru NESTED LOOP OUTER [SQL_Execution]
qerjoPreserveLHS NESTED LOOP OUTER [SQL_Execution]
qerjoResolveDynamic NESTED LOOP OUTER [SQL_Execution]
qerjoRestoreLHS NESTED LOOP OUTER [SQL_Execution]
qerjoRestoreMethod NESTED LOOP OUTER [SQL_Execution]
qerjoRowProcedure NESTED LOOP OUTER [SQL_Execution]
qerjoSaveMethod NESTED LOOP OUTER [SQL_Execution]
qerjoStart NESTED LOOP OUTER [SQL_Execution]
qerjosIsNLCartesian NESTED LOOP OUTER [SQL_Execution]
qerjotFetch Row Source: join - tunneling fetch NESTED LOOP JOIN [SQL_Execution]
qerjotRelease NESTED LOOP JOIN [SQL_Execution]
qerjotRowProc NESTED LOOP JOIN [SQL_Execution]
qerleAllocate LINEAR EXECUTION IMPLEMENTATION [SQL_Execution]
qerleStart LINEAR EXECUTION IMPLEMENTATION [SQL_Execution]
qerliAllocate PARALLEL CREATE INDEX [SQL_Execution]
qerliClose PARALLEL CREATE INDEX [SQL_Execution]