0

I'm working on oracle and taking report from database Oracle.

SELECT OPERATION, OBJECT_TYPE, CPU_COST, IO_COST FROM SYS.V_$SQL_PLAN;

I want to take a html output in oracle. I have this table in output but I want to see html formate. Is there any way to see that?

1 Answer 1

1

This can be done from SQL* Plus

SET MARKUP HTML ON
SELECT OPERATION, OBJECT_TYPE, CPU_COST, IO_COST FROM SYS.V_$SQL_PLAN;

Check This link for more options to format the output as desired.

Sign up to request clarification or add additional context in comments.

1 Comment

Thank you but I need in ORACLE SQL DEVELOPER.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.