Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Oracle SQL Developer

You're reading from   Oracle SQL Developer Learn Database design, development,and administration using the feature-rich SQL Developer 4.1 interface

Arrow left icon
Product type Paperback
Published in Jan 2016
Publisher
ISBN-13 9781785281273
Length 344 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Ajith Narayanan Ajith Narayanan
Author Profile Icon Ajith Narayanan
Ajith Narayanan
Susan Harper Susan Harper
Author Profile Icon Susan Harper
Susan Harper
Arrow right icon
View More author details
Toc

Table of Contents (21) Chapters Close

Oracle SQL Developer
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
1. Getting Started with SQL Developer 4.1 FREE CHAPTER 2. Database Connections and SQL Worksheet 3. The Power of SQL Reports 4. Working with PL/SQL 5. SQL Developer for DBAs 6. SQL Developer Accessibility 7. Importing, Exporting, and Working with Data 8. Database Connections and JDBC Drivers 9. Introducing SQL Developer Data Modeler 10. Extending SQL Developer 11. Working with Application Express 12. Working with SQL Developer Migrations 13. Oracle Data Miner 4.1 14. REST Data Services and REST Development Index

SQL Worksheet "hints" for formatting output


You can use special SQL Worksheet "hints" to generate output in several formats, such as CSV and SQL INSERT statements. (These hints do not work in SQL*Plus but do work in SQLcli.) You must use Run Script (F5), not Execute Statement, to see the formatted output. The hints must be in lowercase. Some example statements showing the available special SQL Worksheet hints are as follows:

SELECT /*ansiconsole*/ * FROM EMPLOYEES; — Best appearance for ANSI terminal.

SELECT /*csv*/ * FROM EMPLOYEES; — Comma-separated values

SELECT /*delimited*/ * FROM EMPLOYEES; — (Same as csv)

SELECT /*fixed*/ * FROM EMPLOYEES; — Fixed-width fields with trailing blanks

SELECT /*html*/ * FROM EMPLOYEES; — Marked-up HTML table

SELECT /*insert*/ * FROM EMPLOYEES; — SQL INSERT statements

SELECT /*json*/ * FROM EMPLOYEES; — JSON object format

SELECT /*loader*/ * FROM EMPLOYEES; — Pipe-delimited format for SQL*Loader

SELECT /*text*/ * FROM EMPLOYEES; — Plain text

SELECT /*xml...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime
Visually different images