I am searching for any method to pass
any table name to a sql statement in a self-written report.
a short example:
I try to create a report which lets me select a column from a table - both (column and table) should be provided at time the report is executed.
Of course something like
select :column
from :table
does not work; error is ORA-01745.
Does anyone knows a method to pass a variable string into the SQL
before the cursor is created?