├── LICENSE ├── README.md ├── ash ├── ashcount.sql ├── ashdump.sql ├── ashprofile.sql ├── ashtempspace.sql ├── ashtls.sql ├── directwritepercent.sql ├── directwritesql.sql └── newmachines.sql ├── awr ├── activeshared.sql ├── average.sql ├── bind2.sql ├── dumpsql.sql ├── fileio.sql ├── iosummary.sql ├── nologging.sql ├── noprofile.sql ├── onesysstat.sql ├── onewaitevent.sql ├── osstatcpu.sql ├── pagingout.sql ├── processmem.sql ├── profiles.sql ├── segstat.sql ├── sessioncount.sql ├── space.sql ├── sqlstat.sql ├── sqlstatsum.sql └── sqlstatsumday.sql ├── force_matching_signature ├── ashfms.sql ├── ashfmscount.sql ├── ashtopelapsed.sql ├── fmsstat.sql ├── fmsstat2.sql ├── fmstopsql.sql └── fmstosqlid.sql ├── lob ├── blobinlinecutoff.sql ├── inoneblock.sql ├── lobspace.sql └── spacetest.sql ├── misc ├── 12cheader.sql ├── checksuppl.sql ├── header.sql ├── regsqlpatch.sql ├── spaceused.sql ├── statictabsum.sql ├── tablesizes.sql ├── tempsegments.sql ├── test.sql ├── test2.sql ├── tkprof.txt ├── totalspace.sql ├── trace.sql ├── undo.sql └── userprivs.sql ├── optimizerstatistics ├── all.sql ├── colpartstats.sql ├── columnstats.sql ├── histograms.sql ├── indexcolumns.sql ├── indexstats.sql ├── indpartstats.sql ├── oldindexcolumns.sql ├── parthists.sql ├── tablelist.sql ├── tablestats.sql ├── tabpartstats.sql └── tabsubpartstats.sql ├── perfprofile ├── allappserversessions │ ├── after.sql │ └── before.sql ├── allsessionsoneosuser │ ├── after.sql │ └── before.sql ├── allsessionsoneuser │ ├── after.sql │ └── before.sql ├── basicusergrouptalk │ ├── after.sql │ └── before.sql ├── originalwithosstats │ ├── afterothersession.sql │ ├── afterownsession.sql │ ├── beforeothersession.sql │ └── beforeownsession.sql ├── parallelquery │ ├── after.sql │ └── before.sql ├── wholesession │ └── profile.sql └── wholesessionsamesession │ └── profile.sql ├── plan ├── awrplan │ ├── findsql.sql │ └── getplans.sql ├── extractplan.sql ├── extractplansqlid.sql └── plan.sql ├── refresh ├── buildscripts.bat ├── makeafter.sql ├── makeallimp.sql ├── makebefore.sql ├── makeexp.sql ├── makeoneimp.sql └── tablelist.sql ├── resourcemanager ├── maxactive.sql ├── rmq1.sql ├── rmq2.sql ├── rmq3.sql └── schedulerwindows.sql ├── spaceproddbs ├── all.sql ├── datafiles.sql ├── fileio.sql ├── filesystemio.sql ├── freespace.sql ├── parameters.sql ├── rollback.sql ├── segments.sql ├── tables.sql └── tempfiles.sql ├── testselectpackage ├── example.log ├── example.sql ├── install.sql ├── package.sql ├── packagedescription.txt ├── planhashvalues.sql ├── tables.sql └── testresults.sql └── v$ ├── currprocessmem.sql ├── filesystemquery.sql ├── getsql.sql ├── librarycachelocks.sql ├── locks.sql ├── onewaitdiff.sql ├── redologsperhour.sql ├── unrecoverable.sql ├── vbind.sql ├── vdumpsql.sql ├── vfindsqlid.sql └── vsqlarea.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/README.md -------------------------------------------------------------------------------- /ash/ashcount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/ashcount.sql -------------------------------------------------------------------------------- /ash/ashdump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/ashdump.sql -------------------------------------------------------------------------------- /ash/ashprofile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/ashprofile.sql -------------------------------------------------------------------------------- /ash/ashtempspace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/ashtempspace.sql -------------------------------------------------------------------------------- /ash/ashtls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/ashtls.sql -------------------------------------------------------------------------------- /ash/directwritepercent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/directwritepercent.sql -------------------------------------------------------------------------------- /ash/directwritesql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/directwritesql.sql -------------------------------------------------------------------------------- /ash/newmachines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/ash/newmachines.sql -------------------------------------------------------------------------------- /awr/activeshared.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/activeshared.sql -------------------------------------------------------------------------------- /awr/average.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/average.sql -------------------------------------------------------------------------------- /awr/bind2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/bind2.sql -------------------------------------------------------------------------------- /awr/dumpsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/dumpsql.sql -------------------------------------------------------------------------------- /awr/fileio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/fileio.sql -------------------------------------------------------------------------------- /awr/iosummary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/iosummary.sql -------------------------------------------------------------------------------- /awr/nologging.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/nologging.sql -------------------------------------------------------------------------------- /awr/noprofile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/noprofile.sql -------------------------------------------------------------------------------- /awr/onesysstat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/onesysstat.sql -------------------------------------------------------------------------------- /awr/onewaitevent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/onewaitevent.sql -------------------------------------------------------------------------------- /awr/osstatcpu.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/osstatcpu.sql -------------------------------------------------------------------------------- /awr/pagingout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/pagingout.sql -------------------------------------------------------------------------------- /awr/processmem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/processmem.sql -------------------------------------------------------------------------------- /awr/profiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/profiles.sql -------------------------------------------------------------------------------- /awr/segstat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/segstat.sql -------------------------------------------------------------------------------- /awr/sessioncount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/sessioncount.sql -------------------------------------------------------------------------------- /awr/space.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/space.sql -------------------------------------------------------------------------------- /awr/sqlstat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/sqlstat.sql -------------------------------------------------------------------------------- /awr/sqlstatsum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/sqlstatsum.sql -------------------------------------------------------------------------------- /awr/sqlstatsumday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/awr/sqlstatsumday.sql -------------------------------------------------------------------------------- /force_matching_signature/ashfms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/ashfms.sql -------------------------------------------------------------------------------- /force_matching_signature/ashfmscount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/ashfmscount.sql -------------------------------------------------------------------------------- /force_matching_signature/ashtopelapsed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/ashtopelapsed.sql -------------------------------------------------------------------------------- /force_matching_signature/fmsstat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/fmsstat.sql -------------------------------------------------------------------------------- /force_matching_signature/fmsstat2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/fmsstat2.sql -------------------------------------------------------------------------------- /force_matching_signature/fmstopsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/fmstopsql.sql -------------------------------------------------------------------------------- /force_matching_signature/fmstosqlid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/force_matching_signature/fmstosqlid.sql -------------------------------------------------------------------------------- /lob/blobinlinecutoff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/lob/blobinlinecutoff.sql -------------------------------------------------------------------------------- /lob/inoneblock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/lob/inoneblock.sql -------------------------------------------------------------------------------- /lob/lobspace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/lob/lobspace.sql -------------------------------------------------------------------------------- /lob/spacetest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/lob/spacetest.sql -------------------------------------------------------------------------------- /misc/12cheader.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/12cheader.sql -------------------------------------------------------------------------------- /misc/checksuppl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/checksuppl.sql -------------------------------------------------------------------------------- /misc/header.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/header.sql -------------------------------------------------------------------------------- /misc/regsqlpatch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/regsqlpatch.sql -------------------------------------------------------------------------------- /misc/spaceused.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/spaceused.sql -------------------------------------------------------------------------------- /misc/statictabsum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/statictabsum.sql -------------------------------------------------------------------------------- /misc/tablesizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/tablesizes.sql -------------------------------------------------------------------------------- /misc/tempsegments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/tempsegments.sql -------------------------------------------------------------------------------- /misc/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/test.sql -------------------------------------------------------------------------------- /misc/test2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/test2.sql -------------------------------------------------------------------------------- /misc/tkprof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/tkprof.txt -------------------------------------------------------------------------------- /misc/totalspace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/totalspace.sql -------------------------------------------------------------------------------- /misc/trace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/trace.sql -------------------------------------------------------------------------------- /misc/undo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/undo.sql -------------------------------------------------------------------------------- /misc/userprivs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/misc/userprivs.sql -------------------------------------------------------------------------------- /optimizerstatistics/all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/all.sql -------------------------------------------------------------------------------- /optimizerstatistics/colpartstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/colpartstats.sql -------------------------------------------------------------------------------- /optimizerstatistics/columnstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/columnstats.sql -------------------------------------------------------------------------------- /optimizerstatistics/histograms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/histograms.sql -------------------------------------------------------------------------------- /optimizerstatistics/indexcolumns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/indexcolumns.sql -------------------------------------------------------------------------------- /optimizerstatistics/indexstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/indexstats.sql -------------------------------------------------------------------------------- /optimizerstatistics/indpartstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/indpartstats.sql -------------------------------------------------------------------------------- /optimizerstatistics/oldindexcolumns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/oldindexcolumns.sql -------------------------------------------------------------------------------- /optimizerstatistics/parthists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/parthists.sql -------------------------------------------------------------------------------- /optimizerstatistics/tablelist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/tablelist.sql -------------------------------------------------------------------------------- /optimizerstatistics/tablestats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/tablestats.sql -------------------------------------------------------------------------------- /optimizerstatistics/tabpartstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/tabpartstats.sql -------------------------------------------------------------------------------- /optimizerstatistics/tabsubpartstats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/optimizerstatistics/tabsubpartstats.sql -------------------------------------------------------------------------------- /perfprofile/allappserversessions/after.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allappserversessions/after.sql -------------------------------------------------------------------------------- /perfprofile/allappserversessions/before.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allappserversessions/before.sql -------------------------------------------------------------------------------- /perfprofile/allsessionsoneosuser/after.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allsessionsoneosuser/after.sql -------------------------------------------------------------------------------- /perfprofile/allsessionsoneosuser/before.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allsessionsoneosuser/before.sql -------------------------------------------------------------------------------- /perfprofile/allsessionsoneuser/after.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allsessionsoneuser/after.sql -------------------------------------------------------------------------------- /perfprofile/allsessionsoneuser/before.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/allsessionsoneuser/before.sql -------------------------------------------------------------------------------- /perfprofile/basicusergrouptalk/after.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/basicusergrouptalk/after.sql -------------------------------------------------------------------------------- /perfprofile/basicusergrouptalk/before.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/basicusergrouptalk/before.sql -------------------------------------------------------------------------------- /perfprofile/originalwithosstats/afterothersession.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/originalwithosstats/afterothersession.sql -------------------------------------------------------------------------------- /perfprofile/originalwithosstats/afterownsession.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/originalwithosstats/afterownsession.sql -------------------------------------------------------------------------------- /perfprofile/originalwithosstats/beforeothersession.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/originalwithosstats/beforeothersession.sql -------------------------------------------------------------------------------- /perfprofile/originalwithosstats/beforeownsession.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/originalwithosstats/beforeownsession.sql -------------------------------------------------------------------------------- /perfprofile/parallelquery/after.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/parallelquery/after.sql -------------------------------------------------------------------------------- /perfprofile/parallelquery/before.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/parallelquery/before.sql -------------------------------------------------------------------------------- /perfprofile/wholesession/profile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/wholesession/profile.sql -------------------------------------------------------------------------------- /perfprofile/wholesessionsamesession/profile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/perfprofile/wholesessionsamesession/profile.sql -------------------------------------------------------------------------------- /plan/awrplan/findsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/plan/awrplan/findsql.sql -------------------------------------------------------------------------------- /plan/awrplan/getplans.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/plan/awrplan/getplans.sql -------------------------------------------------------------------------------- /plan/extractplan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/plan/extractplan.sql -------------------------------------------------------------------------------- /plan/extractplansqlid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/plan/extractplansqlid.sql -------------------------------------------------------------------------------- /plan/plan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/plan/plan.sql -------------------------------------------------------------------------------- /refresh/buildscripts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/buildscripts.bat -------------------------------------------------------------------------------- /refresh/makeafter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/makeafter.sql -------------------------------------------------------------------------------- /refresh/makeallimp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/makeallimp.sql -------------------------------------------------------------------------------- /refresh/makebefore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/makebefore.sql -------------------------------------------------------------------------------- /refresh/makeexp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/makeexp.sql -------------------------------------------------------------------------------- /refresh/makeoneimp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/makeoneimp.sql -------------------------------------------------------------------------------- /refresh/tablelist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/refresh/tablelist.sql -------------------------------------------------------------------------------- /resourcemanager/maxactive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/resourcemanager/maxactive.sql -------------------------------------------------------------------------------- /resourcemanager/rmq1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/resourcemanager/rmq1.sql -------------------------------------------------------------------------------- /resourcemanager/rmq2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/resourcemanager/rmq2.sql -------------------------------------------------------------------------------- /resourcemanager/rmq3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/resourcemanager/rmq3.sql -------------------------------------------------------------------------------- /resourcemanager/schedulerwindows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/resourcemanager/schedulerwindows.sql -------------------------------------------------------------------------------- /spaceproddbs/all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/all.sql -------------------------------------------------------------------------------- /spaceproddbs/datafiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/datafiles.sql -------------------------------------------------------------------------------- /spaceproddbs/fileio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/fileio.sql -------------------------------------------------------------------------------- /spaceproddbs/filesystemio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/filesystemio.sql -------------------------------------------------------------------------------- /spaceproddbs/freespace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/freespace.sql -------------------------------------------------------------------------------- /spaceproddbs/parameters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/parameters.sql -------------------------------------------------------------------------------- /spaceproddbs/rollback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/rollback.sql -------------------------------------------------------------------------------- /spaceproddbs/segments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/segments.sql -------------------------------------------------------------------------------- /spaceproddbs/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/tables.sql -------------------------------------------------------------------------------- /spaceproddbs/tempfiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/spaceproddbs/tempfiles.sql -------------------------------------------------------------------------------- /testselectpackage/example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/example.log -------------------------------------------------------------------------------- /testselectpackage/example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/example.sql -------------------------------------------------------------------------------- /testselectpackage/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/install.sql -------------------------------------------------------------------------------- /testselectpackage/package.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/package.sql -------------------------------------------------------------------------------- /testselectpackage/packagedescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/packagedescription.txt -------------------------------------------------------------------------------- /testselectpackage/planhashvalues.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/planhashvalues.sql -------------------------------------------------------------------------------- /testselectpackage/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/tables.sql -------------------------------------------------------------------------------- /testselectpackage/testresults.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/testselectpackage/testresults.sql -------------------------------------------------------------------------------- /v$/currprocessmem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/currprocessmem.sql -------------------------------------------------------------------------------- /v$/filesystemquery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/filesystemquery.sql -------------------------------------------------------------------------------- /v$/getsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/getsql.sql -------------------------------------------------------------------------------- /v$/librarycachelocks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/librarycachelocks.sql -------------------------------------------------------------------------------- /v$/locks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/locks.sql -------------------------------------------------------------------------------- /v$/onewaitdiff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/onewaitdiff.sql -------------------------------------------------------------------------------- /v$/redologsperhour.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/redologsperhour.sql -------------------------------------------------------------------------------- /v$/unrecoverable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/unrecoverable.sql -------------------------------------------------------------------------------- /v$/vbind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/vbind.sql -------------------------------------------------------------------------------- /v$/vdumpsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/vdumpsql.sql -------------------------------------------------------------------------------- /v$/vfindsqlid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/vfindsqlid.sql -------------------------------------------------------------------------------- /v$/vsqlarea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbydurrett/OracleDatabaseTuningSQL/HEAD/v$/vsqlarea.sql --------------------------------------------------------------------------------