! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/

Size: px
Start display at page:

Download "! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/"

Transcription

1 1

2 ! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/ 2

3 %&'24&

4 4

5 &*7+8 9!"#$%#&: 5

6 Probably You Do Not Need to Actually Design Anything 6

7 4*+/+.; "#&%$' 7

8 "#&%$' 4*+/+.; () OBJECT *object_id name owner created LINKS *object_id1 *object_id2 OBJ_ATTR_VALUES *object_id *attribute_id attribute_name attribute_type ATTRIBUTES *attribute_id attribute_name attribute_type 8

9 "#&%$' 4*+/+.;.<.!* +..+= Create table Object ( object_id number primary key, data +,&- ); 9

10 Brilliant Stuff, This XMLDB Database Thingy! (You only need ONE TABLE!) 10

11 ./,& 0$/#12 ') ); 1+ ); 11

12 /3 )$4 $5 Create table Object ( data +,&- ); 0&# 1$ 12

13 3055$4 1$(# CREATE TABLE "MARCO". OBJECT" OF "SYS"."XMLTYPE" XMLSCHEMA " ELEMENT ROOT" ID 4733 PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL ,'&#$$7 NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST $5 GROUPS 1 BUFFER_POOL 1$ DEFAULT) TABLESPACE "USERS VARRAY "XMLEXTRA"."NAMESPACES" STORE AS BASICFILE LOB "NAMESPACES660_L" (ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 CACHE STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) VARRAY "XMLEXTRA"."EXTRADATA" STORE AS BASICFILE LOB "EXTRADATA659_L" (ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 CACHE STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS $ PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) 13

14 &)$ $5 18!,#, /98!:/; 3)+>&)>2 +*68! -1; 23 8*+>2+>3>./+ )-2? (0. <)90 /: -.)+ 3*!<<1."A.+').) $$<&>7,$><& 578$$$ 5$56$55 14

15 $&#,# -) %&' /, *$<5 &! 2*! '- 2!<%B0 &!!!"# $%& 15

16 6, 16

17 #5&# $#$= 1 1$ %&'3".* %&'*%$$$>%&',.>C & 1$ /") )/ %&'') ) +)+!>2*!>C>,.; 8$5+>3>%&'3 >-. > 8&# 5!"#$# "!%$# 5$= /$$'%> /-,? > 7,$ 17

18 @$A# 1$ $$5,)-& )>,.>.+ )/ +.* 2' +%&'''24&!,-.,;= 5.!) %$$$,<. 8 )>,.>* 18

19 %$$$!5/< 19

20 +$11 $5& 1$ 20

21 $ $ 6B 6@0* % %&'* % B,!%&'!+ &D& 5D ' C) E,FG$#* <,GH E "")"/*" */"%&' " 6 ))!!+$)0(3IJ0 21

22 @$1616##9); SQL> BEGIN DBMS_XMLSCHEMA.registerSchema (SCHEMAURL => ' SCHEMADOC => xdburitype('/public/root.xsd').getclob(), LOCAL => TRUE, -- local GENTYPES => TRUE, -- generate object types GENBEAN => FALSE, -- no java beans GENTABLES => TRUE, -- generate object tables OWNER => USER); END; / 22

23 SQL> select * from tab; TNAME TABTYPE INFO_TABLE TABLE ROOT_TABLE TABLE )#<C)$ 61 SQL> select dbms_metadata.get_ddl('table','root_table') from dual; DBMS_METADATA.GET_DDL('TABLE','ROOT_TABLE') CREATE TABLE "MARCO"."ROOT_TABLE" OF "SYS"."XMLTYPE" XMLSCHEMA " ELEMENT "ROOT" PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "USERS" VARRAY "XMLEXTRA"."NAMESPACES" STORE AS BASICFILE LOB "NAMESPACES780_L"... VARRAY "XMLDATA"."INFO"."SYS_XDBPD$" STORE AS BASICFILE LOB "SYS_XDBP..." DISALLOW NONSCHEMA... 23

24 @$1616##9$&; SQL> BEGIN DBMS_XMLSCHEMA.registerSchema (SCHEMAURL => ' SCHEMADOC => xdburitype('/public/root.xsd').getclob(), LOCAL => TRUE, -- local GENTYPES => FALSE, -- generate object types GENBEAN => FALSE, -- no java beans GENTABLES => TRUE, -- generate object tables OPTIONS => DBMS_XMLSCHEMA.REGISTER_BINARYXML, OWNER => USER); END; / 24

25 SQL> select * from tab; TNAME TABTYPE ROOT_TABLE TABLE )#$& 61 SQL> select dbms_metadata.get_ddl('table','root_table') from dual; DBMS_METADATA.GET_DDL('TABLE','ROOT_TABLE') CREATE TABLE "MARCO"."ROOT_TABLE" OF "SYS"."XMLTYPE" XMLTYPE STORE AS BASICFILE BINARY XML ( TABLESPACE "USERS" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) XMLSCHEMA " ELEMENT "ROOT" DISALLOW NONSCHEMA... TABLESPACE "USERS" 25

26 D5$ (#$$ %&'C *C *C 5# *C *C )0 $& 61-$ K%&'24& K''L24& 3''24& ##& *+# 26

27 6&$+*+,- E>; SQL> create table "XML_XSD01" of XMLTYPE 2 XMLTYPE STORE AS BASICFILE BINARY XML 3 XMLSCHEMA " 4 ELEMENT "ROOT" 5 ALLOW NONSCHEMA; Table created. SQL> create table "XML_XSD02_BUG" of XMLTYPE 2 XMLTYPE STORE AS BASICFILE BINARY XML 3 XMLSCHEMA " 4 ELEMENT "ROOT" 5 ALLOW ANYSCHEMA 6 DISALLOW NONSCHEMA; Table created. Oops... B

28 616## 28

29 @<C)$$& %&' ) %&' 0 %&'+! / %&'+! C 6.. +%&'.. 4+/.* 2' % NO %&'3 & *! N+O 30L % N+"O %&'3 2 *! NO 0 % N+O >3 2 *! NO & % N+O >3 /M 0 /M 0 / 29

30 6, $& * Q P Q! P Q P &' QQ P Q %11<* QQ P Q.)!. P Q QQ &*+&)* QQ P Q %&'3 P F Q -." Q Q Q "3 Q P P 30

31 8!*$5+ &#$( &' $ 143 >03 0!3 03 T+,. ")$)#$( 03 >0 0D7L ,( $$$ 0 * %$#$( 60RC'6R>>S !%&'<)* 31

32 8$5+, )# ') 3 ) < %&' * 90,,: <2') 6 6#<$1 -.%&'3 / 35 T /% %U A.+0 T -.@@+>"" 2/*&.+?.!!%1! %&'3<* %&'3 1/ 32

33 8$5+*+,- SQL> CREATE INDEX XMLIX_INFO on INFO_TABLE (object_value) 2 INDEXTYPE IS XDB.XMLIndex; SQL> CREATE INDEX XMLIX_ROOT on ROOT_TABLE (object_value) 2 INDEXTYPE IS XDB.XMLIndex 3 PARAMETERS ('PATHS (INCLUDE (/ROOT/ID 4 /ROOT/INFO/INFO_ID 5 ) 6 NAMESPACE MAPPING (xmlns=" 7 PATH TABLE XMLBIN_PATH_TABLE 8 PATH ID INDEX XMLBIN_PATHID_IX 9 ORDER KEY INDEX XMLBIN_ORDERKEY_IX'); 33

34 $&-$ SQL> CREATE TABLE "ROOT_TABLE" OF "SYS"."XMLTYPE" 2 XMLTYPE STORE AS SECUREFILE BINARY XML 3 XMLSCHEMA " ELEMENT "ROOT" 4 DISALLOW NONSCHEMA 5 COMPRESS 6 ; SQL> alter table "ROOT_TABLE" 2 modify lob (XMLDATA) 3 (COMPRESS HIGH); -- ALTER TABLE "ROOT" MODIFY LOG (XMLDATA) -- COMPRESS NOCOMPRESS COMPRESS MEDIUM COMPRESS HIGH B

35 )-2 <) *TV * +.. <V ) <.. * * =.,. <%&'>+V.,+.V V+.,)9-.&+:H 35

36 )7$ %&',!5. %&' -.*!8""<.**"<.*"<.*M!;<.*3 F %&' -A!8""<.**"<.*"M!;3 F$ )!8"")+*"/)!8""/))T* T*!8""T**9-: C+)<.<&T T? < 36

37 "#$= *)TW*!8""* 37

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Using SecureFiles 2 Migration Techniques 3 Migration with Online Redefinition

More information

Configure ODBC on ISE 2.3 with Oracle Database

Configure ODBC on ISE 2.3 with Oracle Database Configure ODBC on ISE 2.3 with Oracle Database Contents Introduction Prerequisites Requirements Components Used Configure Step 1. Oracle Basic Configuration Step 2. ISE Basic Configuration Step 3. Configure

More information

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE).

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE). Volume: 75 Questions Question: 1 Examine this code: Users of this function may set different date formats in their sessions. Which two modifications must be made to allow the use of your session s date

More information

Oracle Data Pump Internals

Oracle Data Pump Internals Oracle Data Pump Internals Dean Gagne Oracle USA Nashua NH USA Keywords: Oracle Data Pump, export, import, transportable tablespace, parallel, restart Introduction Oracle Data Pump was a new feature introduced

More information

Schema Comparison Report

Schema Comparison Report 1 - Overview for V142_V141_Comparison Project: Job Host: Start Time: Elapsed Time: V142_V141_Comparison Change Management DHS1568177 May 14, 2014 1:38 PM 00:21 (mm:ss) 2 - Source Archive Creation Date:

More information

Oracle XML DB and Native Web Services

Oracle XML DB and Native Web Services Oracle XML DB and Native Web Services Ondřej Kupka December 3, 2012 Section Layout 1 Oracle XML DB Overview Core Ideas and Architecture Storing XML Data Example Structured Model and XML Schemas XML/SQL

More information

Schema Comparison Report

Schema Comparison Report 1 - Overview for V123_V122_Comparison Name: Project: Job Host: Start Time: Elapsed Time: V123_V122_Comparison Change Management DHS1568177 Jul 26, 2012 2:19 PM 00:30 (mm:ss) 2 - Source Name: Type: Archive

More information

DBA_VIEWS DBA_SEQUENCES

DBA_VIEWS DBA_SEQUENCES Findexesontosabb táblák, nézetek DBA_OBJECTS/ALL_OBJECT OWNER (char) OBJECT_NAME (char) OBJECT_ID (number) OBJECT_TYPE (char) TABLE/INDEX/TRIGGER/VIEW CREATED létrehozva (dátum) LAST_DDL_TIME módosítva

More information

PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS

PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS -- DDL for Table ROSTER_INFO CREATE TABLE "RHAND6"."ROSTER_INFO" ( "ROSTERID" NUMBER(*,0), "PLAYERID" NUMBER(*,0), "YEAR" NUMBER(*,0), "TEAMNAME" VARCHAR2(50 BYTE), "LEAGUE" VARCHAR2(2 BYTE), "SALARY"

More information

An Introduction to Oracle XML DB in Oracle Database 11g Release 2

An Introduction to Oracle XML DB in Oracle Database 11g Release 2 An Introduction to Oracle XML DB in Oracle Database 11g Release 2 Mark D Drake Manager, Product Management The following is intended to outline our general product direction. It is

More information

RADventure Oracle Dictionary Tools Programmers Documentation

RADventure Oracle Dictionary Tools Programmers Documentation RADventure Oracle Dictionary Tools Programmers Documentation Table of contents 1 Welcome to the RADventure Oracle Dictionary Tools... 3 1.1 Oracletools Features... 3 1.2 Installation... 4 1.3 Starting

More information

LOBS, BLOBS, CLOBS Dealing with Attachments in APEX

LOBS, BLOBS, CLOBS Dealing with Attachments in APEX LOBS, BLOBS, CLOBS Dealing with Attachments in APEX Tim St. Hilaire June 2013 The Plan Intro The Goal APEX BLOB Wizard Making It Your Own Base Technology Advanced Database Concepts QuesGons IntroducGon

More information

Oracle Alter Table Add Unique Constraint Using Index Tablespace

Oracle Alter Table Add Unique Constraint Using Index Tablespace Oracle Alter Table Add Unique Constraint Using Index Tablespace You must also have space quota in the tablespace in which space is to be acquired in Additional Prerequisites for Constraints and Triggers

More information

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE ORACLE 8 IS ORDBMS HANDLES VLDB - GIGABYTES/TERABYTES 10,000 CONCURRENT USERS PARTITIONED TABLES AND INDEXES SINGLE DATA BLOCK IS INACCESSSIBLE CAN ACCESS MULTIPLE PARTITION IN PARALLEL FOR CONCURRENT

More information

Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE

Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE Neeraj Kumar Parashar Shekhawati Institute of Technology,Sikar Email: neerajparashar333@gmail.com Sikar-332001, India Abstract:

More information

Implement a virtual private database with fine-grained access control. Write code to interface with external C and Java applications.

Implement a virtual private database with fine-grained access control. Write code to interface with external C and Java applications. TEMARIO Oracle Database 11g: Advanced PL/SQL Duration: 3 Days What you will learn In this Oracle Database 11G Advanced PL/SQL training, expert Oracle University instructors will help you explore the advanced

More information

Copyright 2017, Oracle and/or its affiliates. All rights reserved.

Copyright 2017, Oracle and/or its affiliates. All rights reserved. An Introduction to Oracle XML DB in Oracle Database 12c Release 2 Mark D Drake Manager, Product Management The following is intended to outline our general product direction. It is intended for information

More information

SecureFiles with Oracle Database 18c O R A C L E W H I T E P A P E R F E B R U A R Y

SecureFiles with Oracle Database 18c O R A C L E W H I T E P A P E R F E B R U A R Y SecureFiles with Oracle Database 18c O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Best Storage for File Data 3 SecureFiles Overview 3 SecureFiles

More information

Tuning Considerations for Different Applications Lesson 4

Tuning Considerations for Different Applications Lesson 4 4 Tuning Considerations for Different Applications Lesson 4 Objectives After completing this lesson, you should be able to do the following: Use the available data access methods to tune the logical design

More information

NORAD DBControl Online Whitepaper

NORAD DBControl Online Whitepaper NORAD DBControl Online Whitepaper Ensuring Modern Database Service Standards with Online Reorganizations and Structural Changes Bradmark Technologies, Inc. 1 Contents Introduction... 3 Reasons to Reorganize...

More information

Redefining Tables Online Without Surprises. Nelson Calero Oracle Open World October 2017

Redefining Tables Online Without Surprises. Nelson Calero Oracle Open World October 2017 Redefining Tables Online Without Surprises Nelson Calero Oracle Open World October 2017 About me Database Consultant at Pythian since 2014 Working with Oracle tools and Linux environments since 1996 DBA

More information

Introduction 1. Conventions 7 Source Code and Updates 8. Setting Up 11

Introduction 1. Conventions 7 Source Code and Updates 8. Setting Up 11 Introduction 1 What This Book Is About 1 Who Should Use This Book? 2 How This Book Is Structured 3 Understanding the Database 3 Database Structures and Utilities 4 Performance 5 Advanced SQL Features 5

More information

Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences

Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences Marcel Kratochvil, CTO Piction Digital Image Systems Susan Mavris, Director, Oracle Multimedia

More information

Data Warehouse appliances: IBM Pure Data for Analytics

Data Warehouse appliances: IBM Pure Data for Analytics May 2017 Data Warehouse appliances: IBM Pure Data for Analytics Fabio Bresciani, Cloud & Cognitive, IBM Italia 1997 IBM ebusiness 1927 Italy 1956 Data storage industry creation 1969 IBM technology guided

More information

04 Storage management 15/07/17 12:34 AM. Storage management

04 Storage management 15/07/17 12:34 AM. Storage management Storage management 1 "High water" and "low water" marks PCTFREE and PCTUSED parameters PCTFREE ("high water" mark) and PCTUSED ("low water" mark) parameters control the use of free space for inserts and

More information

Customer Experiences with Oracle XML DB. Aris Prassinos MorphoTrak, SAFRAN Group Asha Tarachandani & Thomas Baby Oracle XML DB Development

Customer Experiences with Oracle XML DB. Aris Prassinos MorphoTrak, SAFRAN Group Asha Tarachandani & Thomas Baby Oracle XML DB Development Customer Experiences with Oracle XML DB Aris Prassinos MorphoTrak, SAFRAN Group Asha Tarachandani & Thomas Baby Oracle XML DB Development The following is intended to outline our general product direction.

More information

P6 Analytics Sample Data Release 1.2 May 2011 Copyright Oracle Primavera P6 Analytics Sample Data Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. The Programs (which include both

More information

Universitatea Politehnica Bucureşti - Facultatea de Automatica si Calculatoare. 4. Managing Data. Tables, Indexes and Constraints

Universitatea Politehnica Bucureşti - Facultatea de Automatica si Calculatoare. 4. Managing Data. Tables, Indexes and Constraints 4. Managing Data Tables, Indexes and Constraints 25.11.2009 Administrarea Bazelor de Date I 1 Overview Managing Tables Managing Indexes Managing Data Integrity Using Clusters and Index-Organized Tables

More information

VERSION. Version Date Description. Estimate size of B-tree Indexes ! " # $$% & ' ( )*(!+ $ &-+ / ! 5 '9

VERSION. Version Date Description. Estimate size of B-tree Indexes !  # $$% & ' ( )*(!+ $ &-+ / ! 5 '9 VERSION Version Date Description! " # $$% & ' ( )*(!+, -./01))( -#*** $ &-+ / 2 3 4 5 2 62 25 7 8! 5 '9!"-" 5 27/12/2005 Guy Lambregts OCP DBA Steria Benelux Page : 2 1. INTRODUCTION...4 2. HOW MANY LEAF

More information

Data Warehousing. One of the primary focal points of Oracle Database 11g is to change the perception of how to CHAPTER 12

Data Warehousing. One of the primary focal points of Oracle Database 11g is to change the perception of how to CHAPTER 12 CHAPTER 12 Data Warehousing One of the primary focal points of Oracle Database 11g is to change the perception of how to utilize the database for content management. Typically, third-party applications

More information

Using Oracle XML DB to Optimize Performance and Manage Structured XML Data

Using Oracle XML DB to Optimize Performance and Manage Structured XML Data Using Oracle XML DB to Optimize Performance and Manage Structured XML Data I want to improve the performance of my application... Can I copy Java code to an HTML Extension? I coded it this way... Here

More information

Manually configuring Oracle 12c IBM

Manually configuring Oracle 12c IBM Manually configuring Oracle 12c IBM ii Manually configuring Oracle 12c Contents Manually configuring Oracle 12c.... 1 iii iv Manually configuring Oracle 12c Manually configuring Oracle 12c Use the following

More information

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications An Oracle White Paper February 2011 Optimizing Storage for Oracle PeopleSoft Applications Executive Overview Enterprises are experiencing an explosion in the volume of data required to effectively run

More information

Post Upgrade Maintenance Specification

Post Upgrade Maintenance Specification IBM TRIRIGA Application Platform Version 3, Release 5.3 Post Upgrade Maintenance Specification Copyright IBM Corp. 2011 i Note Before using this information and the product it supports, read the information

More information

Design flexible data models leveraging Oracle 11gR2 XML indexing capabilities

Design flexible data models leveraging Oracle 11gR2 XML indexing capabilities Design flexible data models leveraging Oracle 11gR2 XML indexing capabilities Aris Prassinos Who am I Chief Engineer MorphoTrak, SAFRAN Group Oracle ACE Director Oracle Magazine Content Management Architect

More information

Oracle9i DBA Fundamentals I

Oracle9i DBA Fundamentals I Oracle9i DBA Fundamentals I Volume 2 Student Guide D11321GC10 Production 1.0 May 2001 D32644 Authors Sarath Chandran Marie St. Gelais S Matt Taylor Jr Technical Reviewers Howard Bradley Ruth Baylis Paul

More information

ITExamDownload. Provide the latest exam dumps for you. Download the free reference for study

ITExamDownload.  Provide the latest exam dumps for you. Download the free reference for study ITExamDownload Provide the latest exam dumps for you. Download the free reference for study Exam : 1Z0-020 Title : Oracle8l:new features for administrators Vendors : Oracle Version : DEMO Get Latest &

More information

COMPARE THE PERFORMANCE OF BASICFILE VS SECUREFILE LOBS In order to check the performance of two types of LOBs format, we will perform the following

COMPARE THE PERFORMANCE OF BASICFILE VS SECUREFILE LOBS In order to check the performance of two types of LOBs format, we will perform the following ORACLE 11G SECURE FILES PART 2 PERFORMANCE IMPROVEMENTS Inderpal S. Johal, Data Softech Inc. INTRODUCTION Oracle 11g has re-architectured the LOB Storage format so as to provide performance improvement,

More information

Automatically Generate Xml Schema From Sql Server Tables

Automatically Generate Xml Schema From Sql Server Tables Automatically Generate Xml Schema From Sql Server Tables Schema compare is one of the most important Visual Studio SQL Server You can even customize your report by providing your own XSD when generating

More information

An Oracle White Paper October Advanced Compression with Oracle Database 11g

An Oracle White Paper October Advanced Compression with Oracle Database 11g An Oracle White Paper October 2011 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression

More information

Oracle 1Z0-031 Exam Questions & Answers

Oracle 1Z0-031 Exam Questions & Answers Oracle 1Z0-031 Exam Questions & Answers Number: 1z0-031 Passing Score: 600 Time Limit: 105 min File Version: 10.2 http://www.gratisexam.com/ Oracle 1Z0-031 Exam Questions & Answers Exam Name: orcacle9i

More information

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ:

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ: Oracle 1z0-146 1z0-146 Oracle Database 11g: Advanced PL/SQL Practice Test Version 1.1 QUESTION NO: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

Oracle Database Database SecureFiles and Large Objects Developer's Guide. 18c

Oracle Database Database SecureFiles and Large Objects Developer's Guide. 18c Oracle Database Database SecureFiles and Large Objects Developer's Guide 18c E90894-03 March 2018 Oracle Database Database SecureFiles and Large Objects Developer's Guide, 18c E90894-03 Copyright 1996,

More information

ENHANCING DATABASE PERFORMANCE

ENHANCING DATABASE PERFORMANCE ENHANCING DATABASE PERFORMANCE Performance Topics Monitoring Load Balancing Defragmenting Free Space Striping Tables Using Clusters Using Efficient Table Structures Using Indexing Optimizing Queries Supplying

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-146 Title : Oracle database 11g:advanced pl/sql Version : Demo 1 / 9 1.The database instance was

More information

Correctexams.com. Exam :1Z0-031 Title:Oracle9i: DBA Fundamentals I Version Number:Version Last Verified and Updated on Jan 4, 2003

Correctexams.com. Exam :1Z0-031 Title:Oracle9i: DBA Fundamentals I Version Number:Version Last Verified and Updated on Jan 4, 2003 Correctexams.com Exam :1Z0-031 Title:Oracle9i: DBA Fundamentals I Version Number:Version 1-2003 Last Verified and Updated on Jan 4, 2003 Fast Way to get your Certification Real Level Practice Questions

More information

Pass IBM C Exam

Pass IBM C Exam Pass IBM C2090-612 Exam Number: C2090-612 Passing Score: 800 Time Limit: 120 min File Version: 37.4 http://www.gratisexam.com/ Exam Code: C2090-612 Exam Name: DB2 10 DBA for z/os Certkey QUESTION 1 Workload

More information

Oracle 11g Secure Files-Performance Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc.

Oracle 11g Secure Files-Performance  Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc. ORACLE 11G SECURE FILE LOBS PART 3 STORAGE IMPROVEMENTS Inderpal S. Johal, Data Softech Inc. INTRODUCTION Oracle 11g has re-architectured the LOB Storage format so as to provide performance improvement,

More information

Basics of SQL Transactions

Basics of SQL Transactions www.dbtechnet.org Basics of SQL Transactions Big Picture for understanding COMMIT and ROLLBACK of SQL transactions Files, Buffers,, Service Threads, and Transactions (Flat) SQL Transaction [BEGIN TRANSACTION]

More information

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.)

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) A. Java Pool B. Large Pool C. Shared Pool D. Redo Log Buffer E. Database Buffer

More information

Advance SQL: SQL Performance Tuning. SQL Views

Advance SQL: SQL Performance Tuning. SQL Views Advance SQL: SQL Performance Tuning SQL Views A view is nothing more than a SQL statement that is stored in the database with an associated name. A view is actually a composition of a table in the form

More information

JPexam. 最新の IT 認定試験資料のプロバイダ IT 認証であなたのキャリアを進めます

JPexam.   最新の IT 認定試験資料のプロバイダ IT 認証であなたのキャリアを進めます JPexam 最新の IT 認定試験資料のプロバイダ http://www.jpexam.com IT 認証であなたのキャリアを進めます Exam : 1Z0-146 Title : Oracle database 11g:advanced pl/sql Vendors : Oracle Version : DEMO 1 / 5 Get Latest & Valid 1Z0-146 Exam's Question

More information

Developer. 1 enterprise. Professional Guide. Oracle Advanced PL/SQL. example questions for 1Z0-146 examination

Developer. 1 enterprise. Professional Guide. Oracle Advanced PL/SQL. example questions for 1Z0-146 examination Oracle Advanced PL/SQL Developer Professional Guide Master advanced PL/SQL concepts along with plenty of example questions for 1Z0-146 examination Saurabh K. Gupta [ 1 enterprise I professional expertise

More information

Oracle DB-Tuning Essentials

Oracle DB-Tuning Essentials Infrastructure at your Service. Oracle DB-Tuning Essentials Agenda 1. The DB server and the tuning environment 2. Objective, Tuning versus Troubleshooting, Cost Based Optimizer 3. Object statistics 4.

More information

CHAPTER. Overview of Migration, Transformation, and Upgrade Methodologies

CHAPTER. Overview of Migration, Transformation, and Upgrade Methodologies CHAPTER 1 Overview of Migration, Transformation, and Upgrade Methodologies 4 Oracle Database Upgrade, Migration & Transformation Tips & Techniques We have written this book to fill a need that we ve noticed

More information

1Z Z0-146-Oracle Database 11g: Advanced PL/SQL Exam Summary Syllabus Questions

1Z Z0-146-Oracle Database 11g: Advanced PL/SQL Exam Summary Syllabus Questions 1Z0-146 1Z0-146-Oracle Database 11g: Advanced PLSQL Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-146 Exam on Oracle Database 11g: Advanced PLSQL... 2 Oracle 1Z0-146 Certification

More information

*** Example 2: Compression of just one column in a concatenated index (with a very selective column second)

*** Example 2: Compression of just one column in a concatenated index (with a very selective column second) *** Example 2: Compression of just one column in a concatenated index (with a very selective column second) *** Note the ID column is very selective (virtually unique in fact) and the OWNER column has

More information

CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay King, King Training Resources

CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay King, King Training Resources CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay, Training Resources Abstract: Oracle8i provides new features that reduce the costs of summary queries and provide easier summarization.

More information

System Copy on Oracle

System Copy on Oracle System Copy on Oracle Bettina Weissinger-Stelzel June, 2013 Customer Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission

More information

To Cache or not to Cache; and How?

To Cache or not to Cache; and How? To Cache or not to Cache; and How? Presented by: John Jay King Download this paper from: 1 Session Objectives Understand Oracle s SQL & PL/SQL caching features Choose caching that is appropriate to the

More information

Exam : 1Z : Oracle 9i Database Fundamentals I. Title. Ver :

Exam : 1Z : Oracle 9i Database Fundamentals I. Title. Ver : Exam : 1Z0-031 Title : Oracle 9i Database Fundamentals I Ver : 03.27.07 QUESTION 1 You executed the following command to change the default temporary tablespace in your database: ALTER DATABASE DEFAULT

More information

Prep4Cram. Latest IT Exam Prep Training and Certification cram

Prep4Cram.   Latest IT Exam Prep Training and Certification cram Prep4Cram http://www.prep4cram.com Latest IT Exam Prep Training and Certification cram Exam : 1Z1-053 Title : Oracle Database 11g: Administration II Vendors : Oracle Version : DEMO Get Latest & Valid 1Z1-053

More information

Oracle ActualTests v by BeCKS

Oracle ActualTests v by BeCKS Oracle ActualTests v1.0 12.11.06 by BeCKS Number: 1Z0-031 Passing Score: 750 Time Limit: 180 min File Version: 24.8 http://www.gratisexam.com/ Oracle 1z0-031 Exam Exam Name: Oracle9i:Database Fundamentals

More information

The "Parcels" Database Schema

The Parcels Database Schema The "Parcels" Database Schema These are the SQL statements needed to create the tables and indexes in the "Parcels" database (without the rows containing the data. DROP TABLE "PARCELS" CASCADE CONSTRAINTS;

More information

Rampant TechPress. Documenting Oracle Databases Complete Oracle database schema auditing. Mike Ault. TLFeBOOK

Rampant TechPress. Documenting Oracle Databases Complete Oracle database schema auditing. Mike Ault. TLFeBOOK Rampant TechPress Documenting Oracle Databases Complete Oracle database schema auditing Mike Ault Notice While the author makes every effort to ensure the information presented in this white paper is accurate

More information

ABSTRACT INTRODUCTION. Bhaskar Himatsingka, Oracle Corporation & Juan Loaiza, Oracle Corporation

ABSTRACT INTRODUCTION. Bhaskar Himatsingka, Oracle Corporation & Juan Loaiza, Oracle Corporation HOW TO STOP DEFRAGMENTING AND START LIVING: THE DEFINITIVE WORD ON FRAGMENTATION Bhaskar Himatsingka, Oracle Corporation & Juan Loaiza, Oracle Corporation ABSTRACT Fragmentation is an issue of great concern

More information

Seminar: Presenter: Oracle Database Objects Internals. Oren Nakdimon.

Seminar: Presenter: Oracle Database Objects Internals. Oren Nakdimon. Seminar: Oracle Database Objects Internals Presenter: Oren Nakdimon www.db-oriented.com oren@db-oriented.com 054-4393763 @DBoriented 1 Oren Nakdimon Who Am I? Chronology by Oracle years When What Where

More information

A Robust Blueprint to Performance Optimization in Multiblock Databases. Anthony D. Noriega.

A Robust Blueprint to Performance Optimization in Multiblock Databases. Anthony D. Noriega. A Robust Blueprint to Performance Optimization in Multiblock Databases Anthony D. Noriega anthony@anthonynoriega.com Objective Discuss, and present a research overview on multiblock databases. Emphasize

More information

New Features Bulletin Replication Server Options 15.6

New Features Bulletin Replication Server Options 15.6 Bulletin Replication Server Options 15.6 Linux, Microsoft Windows, and UNIX DOCUMENT ID: DC01004-01-1560-01 LAST REVISED: November 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication

More information

Oracle 1Z Oracle Database 11g: Advanced PL/SQL.

Oracle 1Z Oracle Database 11g: Advanced PL/SQL. Oracle 1Z0-146 Oracle Database 11g: Advanced PL/SQL http://killexams.com/exam-detail/1z0-146 Question: 153 Which two statements correctly describe the features of SecureFiles? (Choose two.) A. Compression

More information

einfach. gut. beraten. How to reorganize and why? DOAG Conference + Exhibition , Nuremberg Klaus Reimers

einfach. gut. beraten. How to reorganize and why? DOAG Conference + Exhibition , Nuremberg Klaus Reimers einfach. gut. beraten. How to reorganize and why? DOAG Conference + Exhibition 2015 17.11.2015, Nuremberg Klaus Reimers info@ordix.de www.ordix.de Agenda Reorganizing tables Reorganizing indexes Conclusions

More information

Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y

Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y 2 0 1 7 Table of Contents Disclaimer 1 Introduction 2 Storage Efficiency 3 Index (Key) Compression and Bitmap Indexes

More information

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo Vendor: IBM Exam Code: 000-611 Exam Name: DB2 10.1 DBA for Linux, UNIX, and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

Table USER_ALL_TABLES

Table USER_ALL_TABLES Table USER_ALL_TABLES Avg_Row_Len The average row length, including row overhead Avg_Space The average available free space in the table Avg_Space_Freelist_Blocks The average freespace of all blocks on

More information

Database Programming with PL/SQL

Database Programming with PL/SQL Database Programming with PL/SQL 2-3 Objectives This lesson covers the following objectives: Define data type and explain why it is needed List and describe categories of data types Give examples of scalar

More information

Bridging the Gap. Peter Ebell AMIS

Bridging the Gap. Peter Ebell AMIS Bridging the Gap between SOA and the Database Peter Ebell AMIS Agenda Two different worlds: Database and SOA? Bridging the Gap How the Database reaches out to SOA Middleware How SOA Middleware reaches

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

XML Data Into and Out of Oracle Using PL/SQL. Ken Atkins Creative Design Associates

XML Data Into and Out of Oracle Using PL/SQL. Ken Atkins Creative Design Associates 1 XML Data Into and Out of Oracle Using PL/SQL Ken Atkins Creative Design Associates 2 Introductions Who am I? Creative Design Associates Who are you? How many are Developers? DBAs? Experience in PL/SQL?

More information

How Viper2 Can Help You!

How Viper2 Can Help You! How Viper2 Can Help You! December 6, 2007 Matt Emmerton DB2 Performance and Solutions Development IBM Toronto Laboratory memmerto@ca.ibm.com How Can Viper2 Help DBAs? By putting intelligence and automation

More information

The dialog boxes Import Database Schema, Import Hibernate Mappings and Import Entity EJBs are used to create annotated Java classes and persistence.

The dialog boxes Import Database Schema, Import Hibernate Mappings and Import Entity EJBs are used to create annotated Java classes and persistence. Schema Management In Hibernate Mapping Different Automatic schema generation with SchemaExport Managing the cache Implementing MultiTenantConnectionProvider using different connection pools, 16.3. Hibernate

More information

Donald K. Burleson Dave Ensor Christopher Foot Lisa Hernandez Mike Hordila Jonathan Lewis Dave Moore Arup Nanda John Weeg

Donald K. Burleson Dave Ensor Christopher Foot Lisa Hernandez Mike Hordila Jonathan Lewis Dave Moore Arup Nanda John Weeg Oracle Space Management Handbook Donald K. Burleson Dave Ensor Christopher Foot Lisa Hernandez Mike Hordila Jonathan Lewis Dave Moore Arup Nanda John Weeg Oracle Space Management Handbook By: Donald K.

More information

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

More information

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo Vendor: IBM Exam Code: C2090-611 Exam Name: DB2 10.1 DBA for Linux UNIX and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

INTERSTATE PASSPORT PROCESS DOCUMENT

INTERSTATE PASSPORT PROCESS DOCUMENT INTERSTATE PASSPORT PROCESS DOCUMENT Name of Process: Awarding Interstate Passport Process Owner: ORAR Created By: Salt Lake Community College Last Updated By: O. Iopu Date Created: 10/26/2017 Last Revision

More information

New Oracle 11g SQL Features

New Oracle 11g SQL Features New Oracle 11g SQL Features Presented by: John Jay King King Training Resources - john@kingtraining.com Download this paper from: http://www.kingtraining.com 1 Session Objectives Learn new Oracle 11g features

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Data Warehousing & Big Data at OpenWorld for your smartphone

Data Warehousing & Big Data at OpenWorld for your smartphone Data Warehousing & Big Data at OpenWorld for your smartphone Smartphone and tablet apps, helping you get the most from this year s OpenWorld Access to all the most important information Presenter profiles

More information

CO Oracle Database 12c: Advanced PL/SQL

CO Oracle Database 12c: Advanced PL/SQL CO-80343 Oracle Database 12c: Advanced PL/SQL Summary Duration 3 Days Audience Application Developers and Database Administrators Level Professional Technology Oracle Database 12c Delivery Method Instructor-led

More information

C Examcollection.Premium.Exam.58q

C Examcollection.Premium.Exam.58q C2090-610.Examcollection.Premium.Exam.58q Number: C2090-610 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: C2090-610 Exam Name: DB2 10.1 Fundamentals Visualexams

More information

Lesson 4 Transcript: DB2 Architecture

Lesson 4 Transcript: DB2 Architecture Lesson 4 Transcript: DB2 Architecture Slide 1: Cover Welcome to Lesson 4 of the DB2 on campus series. Today we are going to talk about the DB2 architecture. My name is Raul Chong and I am the DB2 on Campus

More information

Why is my Oracle10g Database SLOWER than my Oracle9i Database? Dan Hotka Author/Speaker/Oracle Expert

Why is my Oracle10g Database SLOWER than my Oracle9i Database? Dan Hotka Author/Speaker/Oracle Expert Why is my Oracle10g Database SLOWER than my Oracle9i Database? Dan Hotka Author/Speaker/Oracle Expert www.danhotka.com, LLC (c) www.danhotka.com LLC. Any reproduction or copying of this manual without

More information

PDSA XML Builder Utility

PDSA XML Builder Utility PDSA XML Builder Utility This utility is handy for building XML files or XSD Schema files from tables, stored procedures that return result sets, or views in your database. We use this utility to generate

More information

Oracle 1Z0-235 Exam Questions & Answers

Oracle 1Z0-235 Exam Questions & Answers Oracle 1Z0-235 Exam Questions & Answers Number: 1z0-235 Passing Score: 800 Time Limit: 120 min File Version: 26.5 http://www.gratisexam.com/ Oracle 1Z0-235 Exam Questions & Answers Exam Name: Oracle 11i

More information

ROLLBACK SEGMENTS. In this chapter, you will learn about: Rollback Segment Management Page 272

ROLLBACK SEGMENTS. In this chapter, you will learn about: Rollback Segment Management Page 272 C H A P T E R 1 2 ROLLBACK SEGMENTS CHAPTER OBJECTIVES In this chapter, you will learn about: Rollback Segment Management Page 272 The information in a rollback segment is used for query read consistency,

More information

An Oracle Technical White Paper. Technical White Paper. January Page 1 of 94

An Oracle Technical White Paper. Technical White Paper. January Page 1 of 94 ORACLE XML DB An Oracle January 2004 Page 1 of 94 What is the Oracle XML Database?...4 Oracle XML DB Major Features...5 XMLType...6 XML Schema...9 Namespaces...9 XML Schema and Namespaces...9 Registering

More information

Oracle 11g Virtual Column Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc.

Oracle 11g Virtual Column   Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc. ORACLE 11G VIRTUAL COLUMN Inderpal S. Johal, Data Softech Inc. INTRODUCTION In Oracle 11g has allowed database Tables to have virtual columns. These virtual columns can be more specifically called as derived

More information

Exam Name: Oracle 11i Applications DBA: Fundamentals I Exam Type Oracle Exam Code: 1z0-235 Total Questions: 108

Exam Name: Oracle 11i Applications DBA: Fundamentals I Exam Type Oracle Exam Code: 1z0-235 Total Questions: 108 Question: 1 You receive the following error while connecting to an Oracle9i database instance: ORA-12523 TNS:listener could not find instance appropriate for the client connection Which action would be

More information

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8)

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8) Oracle Database Release Notes 12c Release 1 (12.1) for Fujitsu BS2000/OSD E74140-02 January 2017 This document describes the features of Oracle Database on Fujitsu BS2000/OSD. This release implements the

More information

Optimal Physical Database Design for Oracle8i

Optimal Physical Database Design for Oracle8i Optimal Physical Database Design for Oracle8i Dave Ensor BMC Software, Inc The opinions expressed in this paper are those of the author, and are not necessarily shared by BMC Software, Inc. Introduction

More information