how report can be generated if we have the database designed
in oracle 10g?
Answer Posted / su
By using sql*plus environment.
we can specify the column width , through following
sql> COL empno FORMAT 999999
sql>COL ENAME FORMAT A30
sql>SELECT empno as "Employee Number",
ename as 'Employee Name"
FROM emp;
we can also use TTITLE, BTITLE etc
:)
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
Explain the various types of oracle report?
Name the different triggers supported by oracle reports and their firing order.
what are bind variables?
what is tripstop report?
if u want to delete all these detail block etc what will happen in form
where do u put the report file
In what situation u create the BPA.
what the 'lov of validation' property of an item? Mention what is the difference between lov and list item?
in user parameter property we have list of values.can we write select query for binding? for example:: select empno from emp where deptno=:deptnum :deptnum is first parameter it displays distinct dept nos. if i do like this it is giving error:: bind variables are not allowed in the select statement
what are the oracle forms services components include?
What is the difference between flex mode and confined mode?
How can we generate report output in excel format?
if i want to change the functionality of a item in report during runtime how like what do u write in when_button_pressed
How to create Drill down report?
Explain master-detail relationship with some examples.