I am running DBMS_SQLTUNE.report_tuning_task() and I get the error
below.

First, what bind variables are being referred too, I thought bind vars came
in the following format :emp. Secondly, How can this be fixed (with out
changing the query).




QL> SET LONG 10000;
SET PAGESIZE 1000
SET LINESIZE 200
SELECT DBMS_SQLTUNE.report_tuning_task('emp_dept_tuning_task') AS recommendation
s FROM dual;
SET PAGESIZE 24SQL> SQL> SQL>
RECOMMENDATIONS
--------------------------------------------------------------------------------
GENERAL INFORMATION SECTION
-------------------------------------------------------------------------------
Tuning Task Name : emp_dept_tuning_task
Tuning Task Owner : PBH
Scope : COMPREHENSIVE
Time Limit(seconds) : 60
Completion Status : COMPLETED
Started at : 03/26/2009 15:44:07
Completed at : 03/26/2009 15:44:07
Number of Errors : 1

-------------------------------------------------------------------------------
Schema Name: PBH
SQL ID : 1k68ck3bma0dx
SQL Text : SELECT e.emp_no, e.dept_no, d.dept_no FROM emp e JOIN dept d
ON e.dept_no = d.dept_no

-------------------------------------------------------------------------------
ERRORS SECTION
-------------------------------------------------------------------------------
- ORA-16951: Too many bind variables supplied for this SQL statement.

-------------------------------------------------------------------------------