Difference between revisions of "Oracle:Section7"

From mi-linux
Jump to navigationJump to search
Line 1: Line 1:
 +
[[Main Page]] >> [[Oracle|Oracle and SQL]] >> [[Oracle_Workbook|Workbook]] >> Section 7 answers
 
[[Main Page]] >> [[Oracle|Oracle and SQL]] >> [[Oracle_Workbook|Workbook]] >> Section 7 answers
 
[[Main Page]] >> [[Oracle|Oracle and SQL]] >> [[Oracle_Workbook|Workbook]] >> Section 7 answers
  
 +
== Answers to Section 7 ==
  
 
== Exercise 7.1 ==
 
== Exercise 7.1 ==
Line 11: Line 13:
 
* save the output of the query into a file U:\salary.txt.
 
* save the output of the query into a file U:\salary.txt.
  
SET TTITLE 'Computing Sales Report'
+
TTITLE 'Computing Sales Report'
SET BTITLE 'For Your Eyes Only'
+
BTITLE 'For Your Eyes Only'
SET PAGESIZE 65
+
SET PAGESIZE 30
 +
SPOOL u:\salary.txt
 +
SELECT * FROM EMP
 +
WHERE JOB = 'SALESMAN';
 +
REM don't forget to switch everything off again
 +
SPOOL OFF
 +
TTITLE OFF
 +
BTITLE OFF
  
SPOOL u:\salary.txt
 
SELECT * FROM EMP
 
WHERE JOB = 'SALESMAN';
 
  
REM don't forget to switch everything off again
+
----
SPOOL OFF
+
 
TTITLE OFF
+
Return to the [[Oracle_Workbook|Workbook]].
BTITLE OFF
 

Revision as of 18:33, 8 March 2016

Main Page >> Oracle and SQL >> Workbook >> Section 7 answers Main Page >> Oracle and SQL >> Workbook >> Section 7 answers

Answers to Section 7

Exercise 7.1

7.1 Create a file which produces a report on Salesmen earning more than 3000. The report should have the following features:

  • it should be headed 'Computing Sales Report'
  • each page should have 'For Your Eyes Only' at the bottom of the report.
  • the output should be ordered by salary.
  • The SQL query file should be stored as U:\salesman.sql.
  • save the output of the query into a file U:\salary.txt.
TTITLE 'Computing Sales Report'
BTITLE 'For Your Eyes Only'
SET PAGESIZE 30
SPOOL u:\salary.txt
SELECT * FROM EMP
WHERE JOB = 'SALESMAN';
REM don't forget to switch everything off again
SPOOL OFF
TTITLE OFF
BTITLE OFF



Return to the Workbook.