We are BW 3.1 Oracle 9.2. We have a few InfoCube queries that would perform better if a full table scan on the fact table was done rather than using the system generated Star Transformation hint.
When use RSRT or other entry points to see the SQL and the Explain plan, I have the option of putting in an Oracle hint and generating another Explain Plan.
Is there any way to save the query with a different Oracle hint than the Star Transformation hint?
Hi John,
I'm afraid you can't do that because that's not a property of a query but done by the data manager.
You could do the following (not recommended by SAP): Disable star transformation with Oracle parameter star_transformation_enabled but that would most probably have a negative impact on other queries.
Another possibility is that these query would better run on an ODS Object than an InfoCube. So if you have the data in an ODS Object you could use that for reporting without star transformation.
Regards, Klaus
Add a comment