Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Oracle Advanced PL/SQL Developer Professional Guide

You're reading from  Oracle Advanced PL/SQL Developer Professional Guide

Product type Book
Published in May 2012
Publisher Packt
ISBN-13 9781849687225
Pages 440 pages
Edition 1st Edition
Languages
Author (1):
Saurabh K. Gupta Saurabh K. Gupta
Profile icon Saurabh K. Gupta

Table of Contents (22) Chapters

Oracle Advanced PL/SQL Developer Professional Guide
Credits
Foreword
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
1. Overview of PL/SQL Programming Concepts 2. Designing PL/SQL Code 3. Using Collections 4. Using Advanced Interface Methods 5. Implementing VPD with Fine Grained Access Control 6. Working with Large Objects 7. Using SecureFile LOBs 8. Compiling and Tuning to Improve Performance 9. Caching to Improve Performance 10. Analyzing PL/SQL Code 11. Profiling and Tracing PL/SQL Code 12. Safeguarding PL/SQL Code against SQL Injection Attacks Answers to Practice Questions Index

Chapter 6, Working with Large Objects


Question No.

Answer

Explanation

1

a

LOBs can appear as a database column or a user defined object type attribute.

2

b

LOB type parameters can exist.

3

a

LOB data greater than 4 K is stored out of line with the current row. Mandatorily, it's a different LOB segment which may or may not be in the same tablespace.

4

b

The BLOB column must be initialized with EMPTY_BLOB()

5

c

The constructor methods EMPTY_CLOB() and EMPTY_BLOB() are used to initialize NULL and NOT NULL LOB types.

6

b and c

FILEOPEN works only with BFILEs.

7

b

Temporary LOBs are session specific.

8

c and d

BFILE is a read-only type. The files accessed through the BFILE locator open in read-only mode. They cannot be manipulated in any way during the BFILE access.

9

b and d

Temporary LOB is always an internal LOB which is used for manipulative actions in the LOB columns within a block.

10

c

The user must have read/write privilege on the directory to access the files contained in it.

11

b

A LONG column can be migrated to a LOB column using the following syntax:

ALTER TABLE [<schema>.]<table_name>
   MODIFY ( <long_column_name> { CLOB | BLOB | NCLOB } 
  [DEFAULT <default_value>]) [LOB_storage_clause]

Note that a LONG column can be migrated to CLOB or NCLOB while a LONG RAW column can be modified to BLOB only.

12

b

The BFILENAME function is used to return the LOB locator of a file which is located externally. It can be used for internal LOBs as well as external LOBs.

13

b and d

SecureFile is a new feature in Oracle 11g to store large objects with enhanced security, storage, and performance. Older LOBs may still exist as BasicFiles and can be migrated to SecureFiles.

14

a and c

The CREATE TABLE script executes successfully. The table and LOB are created in the default user tablespace. Oracle implicitly generates the LOB segment and LOB index. However, the segments are not created until the data has been inserted in the table.

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 $15.99/month. Cancel anytime}