markup html entmap off : markup « SQL PLUS Session Environment « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » SQL PLUS Session Environment » markup 
29. 41. 2. markup html entmap off
SQL>
SQL>
SQL> create table emp
  2  empno      NUMBER(4)    constraint E_PK primary key
  3  , ename      VARCHAR2(8)
  4  , init       VARCHAR2(5)
  5  , job        VARCHAR2(8)
  6  , mgr        NUMBER(4)
  7  , bdate      DATE
  8  , sal        NUMBER(6,2)
  9  , comm       NUMBER(6,2)
 10  , deptno     NUMBER(2)    default 10
 11  ;

Table created.

SQL> insert into emp values(1,'Tom','N',   'TRAINER', 13,date '1965-12-17',  800 , NULL,  20);

row created.

SQL> insert into emp values(2,'Jack','JAM', 'Tester',6,date '1961-02-20',  1600300,   30);

row created.

SQL> insert into emp values(3,'Wil','TF' ,  'Tester',6,date '1962-02-22',  1250500,   30);

row created.

SQL> insert into emp values(4,'Jane','JM',  'Designer', 9,date '1967-04-02',  2975, NULL,  20);

row created.

SQL> insert into emp values(5,'Mary','P',  'Tester',6,date '1956-09-28',  12501400,  30);

row created.

SQL> insert into emp values(6,'Black','R',   'Designer', 9,date '1963-11-01',  2850, NULL,  30);

row created.

SQL> insert into emp values(7,'Chris','AB',  'Designer', 9,date '1965-06-09',  2450, NULL,  10);

row created.

SQL> insert into emp values(8,'Smart','SCJ', 'TRAINER', 4,date '1959-11-26',  3000, NULL,  20);

row created.

SQL> insert into emp values(9,'Peter','CC',   'Designer',NULL,date '1952-11-17',  5000, NULL,  10);

row created.

SQL> insert into emp values(10,'Take','JJ', 'Tester',6,date '1968-09-28',  15000,     30);

row created.

SQL> insert into emp values(11,'Ana','AA',  'TRAINER', 8,date '1966-12-30',  1100, NULL,  20);

row created.

SQL> insert into emp values(12,'Jane','R',   'Manager',   6,date '1969-12-03',  800 , NULL,  30);

row created.

SQL> insert into emp values(13,'Fake','MG',   'TRAINER', 4,date '1959-02-13',  3000, NULL,  20);

row created.

SQL> insert into emp values(14,'Mike','TJA','Manager',   7,date '1962-01-23',  1300, NULL,  10);

row created.

SQL>
SQL>
SQL>
SQL>
SQL> set echo off termout off heading on
SQL> set markup html on spool on                   -
>     preformat off entmap on                   -
>     head "<title>HTML Demo Report</title>     -
>           <link rel='stylesheet' href='x.css'>"
SQL&gt;
<br>
SQL&gt; spool  htmldemo.htm replace
<br>
SQL&gt;
<br>
SQL&gt; select empno, ename, init, sal
<br>
  2  from   emp
<br>
  3  where  deptno = 20;
<br>
<p>
<table border='1' width='90%' align='center' summary='Script output'>
<tr>
Enter...
<th scope="col">
EMPNO
</th>
<th scope="col">
ENAME
</th>
<th scope="col">
INIT
</th>
<th scope="col">
SAL
</th>
</tr>
<tr>
<td align="right">
     1
</td>
<td>
Tom
</td>
<td>
N
</td>
<td align="right">
   800
</td>
</tr>
<tr>
<td align="right">
     4
</td>
<td>
Jane
</td>
<td>
JM
</td>
<td align="right">
  2975
</td>
</tr>
<tr>
<td align="right">
     8
</td>
<td>
Smart
</td>
<td>
SCJ
</td>
<td align="right">
  3000
</td>
</tr>
<tr>
<td align="right">
    11
</td>
<td>
Ana
</td>
<td>
AA
</td>
<td align="right">
  1100
</td>
</tr>
<tr>
<td align="right">
    13
</td>
<td>
Fake
</td>
<td>
MG
</td>
<td align="right">
  3000
</td>
</tr>
</table>
<p>

rows selected.<br>
<br>


SQL&gt; set    markup html entmap off preformat on
<br>
SQL> set    heading off
<br>
SQL>
<br>
SQL> select '<a href="http://www.naturaljoin.nl">'||
<br>
  2         'Visit this web site</a>'
<br>
  3  from   dual;
<br>
<pre>
Enter...

<a href="http://www.naturaljoin.nl">Visit this web site</a>
</pre>

row selected.<br>
<br>


SQL> spool  off
<br>
SQL> set    markup html off
<br>
SQL> set    echo on
SQL>
SQL>
SQL> drop table emp;

Table dropped.

SQL>
SQL>
29. 41. markup
29. 41. 1. show markup
29. 41. 2. markup html entmap off
29. 41. 3. set markup html on
29. 41. 4. Format report with CSS
29. 41. 5. Output result to html table
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.