Looking for stats for input sizes of at least between 4 and 30 MB.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To my knowledge, there are no published stats, but as Gandalf suggested in the comment on your question, you can test it yourself. To get the stats I would recommend using the DBMS_PROFILER package which times lines of PLSQL down to the nanosecond.
A quick primer on DBMS_PROFILER cribbed from Oracle PL/SQL Programming by Steven Feuerstein (published by O’Reilly):
Install scripts (for your DBA): $ORACLE_HOME/rdbms/admin/profload.sql
Install scripts (for your schema to capture stats): $ORACLE_HOME/rdmbs/admin/proftab.sql
scripts for reporting (for your schema): $ORACLE_HOME/plsql/demo/profrep.sql
$ORACLE_HOME/plsql/demo/profsum.sql
to profile:
to get reports, run one of the queries in the scripts for reporting.