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

Size: px
Start display at page:

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

Transcription

1 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 distilled 88 PUBLISHING - BIRMINGHAM MUMBAI

2 Preface 1 Chapter 1: Overview of PL/SQL Programming Concepts 9 PL/SQL the procedural aspect 10 My first PL/SQL program 11 PL/SQL development environments 13 SQL Developer 13 SQL Developer the history 15 Creating a connection 15 SQL Worksheet 16 Executing a SQL statement 18 Calling a SQL script from SQL Developer 19 Creating and executing an anonymous PL/SQL block 21 Debugging the PL/SQL code 21 Editing and saving the scripts 23 SQL*Plus 24 Executing a SQL statement in SQL*Plus 26 Executing an anonymous PL/SQL block 26 Procedures 27 Executing a procedure 28 Functions 29 Function execution methods 31 Restrictions on calling functions from SQL expressions 32 PL/SQL packages 33 Cursors an overview 35 Cursor execution cycle 35 Cursor attributes 36 Cursor FOR loop 38 Exception handling in PL/SQL 39 System-defined exceptions 39 User-defined exceptions 41

3 The RAISE_APPLICATION_ERROR procedure 43 Exception propagation 46 Managing database dependencies 48 Displaying the direct and indirect dependencies 49 Dependency metadata 50 Dependency issues and enhancements 50 Reviewing Oracle-supplied packages 51 Summary 52 Practice exercise 52 Chapter 2: Designing PL/SQL Code 55 Understanding cursor structures 55 Cursor execution cycle 56 Cursor design considerations 57 Cursor design guidelines 58 Cursor attributes 59 Implicit cursors 60 Explicit cursors 62 Cursor variables 66 Ref cursor types strong and weak 69 SYS_REFCURSOR 69 Processing a cursor variable 70 Cursor variables as arguments 71 Cursor variables restrictions 73 Subtypes 74 Subtype classification 75 Oracle's predefined subtypes 75 User-defined subtypes 76 Type compatibility with subtypes 77 Summary 78 Practice exercise 78 Chapter 3: Using Collections 81 Collections an overview 82 Categorization 83 Selecting an appropriate collection type 84 Associative arrays 84 Nested tables 88 Nested table collection type as the database object 90 DML operations on nested table columns 91 A nested table collection type in PL/SQL 93 Additional features of a nested table 94 Varray 98

4 Varray in PL/SQL 99 Varray as a database collection type 100 DML operations on varray type columns 100 Collections a comparative study 103 Common characteristics of collection types 103 Nested table versus associative arrays 104 Nested table versus varrays 105 PL/SQL collection methods 105 EXISTS 105 COUNT 106 LIMIT 107 FIRST and LAST 108 PRIOR and NEXT 109 EXTEND 109 TRIM 111 DELETE 112 Manipulating collection elements 113 Collection initialization 115 Summary 117 Practice exercise 117 Chapter 4: Using Advanced Interface Methods 121 Understanding external routines 122 Architecture of external routines 122 Oracle Net Configuration 125 TNSNAMES.ora 125 LISTENER.ora 126 Oracle Net Configuration verification 129 Benefits of external procedures 130 Executing external C programs from PL/SQL 131 Executing C program through external procedure development steps 131 Executing Java programs from PL/SQL 136 Calling a Java class method from PL/SQL 137 Uploading a Java class into the database development steps 137 The loadjava utility an Creating packages for Java class methods 140 Summary 141 Practice exercise 141 illustration 137 Chapter 5: Implementing VPD with Fine Grained Access Control 145 Fine Grained Access Control 146 Overview 146 Virtual Private Database the alias 147

5 How FGAC or VPD works? 147 Salient features of VPD 148 VPD implementation outline and components 149 Application context 150 Policy function definition and implementation of row-level security 153 Associating a policy using the DBMS_RLS package 155 VPD implementation demonstrations 156 Assignment 1 implementing VPD using simple security policy 157 Assignment 2 implementing VPD using an application context 159 VPD policy metadata 163 Policy utilities refresh and drop 164 Summary 165 Practice exercise 165 Chapter 6: Working with Large Objects 169 Introduction to the LOB data types 170 Internal LOB 171 External LOB 171 Understanding the LOB data types 172 LOB value and LOB locators 172 BLOBorCLOB! 172 BFILE 173 Temporary LOBs 173 Creating LOB data types 173 Directories 173 Creating LOB data type columns in a table 175 Managing LOB data types 177 Managing internal LOBs 178 Securing and managing BFILEs 178 The DBMSJ.OB package overview 179 Security model 179 DBMSJ-OB constants 180 DBM S_LOB data types 180 DBMSJ-OB subprograms 181 Rules and regulations 182 Working with the CLOB, BLOB, and BFILE data types 183 Initializing LOB data type columns 184 Inserting data into a LOB column 185 Populating a LOB data type using an external file 185 Selecting LOB data 189 Modifying the LOB data 190 Delete LOB data 192 Miscellaneous LOB notes 192

6 LOB column states 193 Locking a row containing LOB 193 Opening and closing LOBs 193 Accessing LOBs 193 LOB restrictions 194 Migrating from LONG to LOB 194 Using temporary LOBs 196 Temporary LOB operations 196 Managing temporary LOBs 197 Validating, creating, and freeing a temporary LOB 198 Summary 200 Practice exercise 200 Chapter 7: Using SecureFile LOBs 205 Introduction to SecureFiles 206 SecureFile LOB an overview 207 Architectural enhancements in SecureFiles 208 SecureFile LOB features 210 Working with SecureFiles 211 SecureFile metadata 213 Enabling advanced features in SecureFiles 214 Deduplication 214 Compression 215 Encryption 216 Migration from BasicFiles to SecureFiles 220 Online Redefinition method 221 Summary 224 Practice exercise 225 Chapter 8: Compiling and Tuning to Improve Performance 227 Native and interpreted compilation techniques 228 Real native compilation 229 Selecting the appropriate compilation mode 230 When to choose interpreted compilation mode? 230 When to choose native compilation mode? 231 Setting the compilation mode 231 Querying the compilation settings 232 Compiling a program unit for a native or interpreted compilation 233 Compiling the database for PL/SQL native compilation (NCOMP) 235 Tuning PL/SQL code 238 Comparing SQL and PL/SQL 239 Avoiding implicit data type conversion 239 Understanding the NOT NULL constraint 241 Using the PLSJNTEGER data type for arithmetic operations 243

7 Using a SIMPLEJ NTEGER data type 245 Modularizing the PL/SQL code 246 Using bulk binding 248 Using SAVE_EXCEPTIONS 252 Rephrasing the conditional control statements 254 Conditions with an OR logical operator 254 Conditions with an AND logical operator 254 Enabling intra unit inlining 255 PLSQL_OPTIMIZE_LEVEL the Oracle initialization parameter 256 Case 1 PLSQL_OPTIMIZE_LEVEL = Case 2 PLSQL_OPTIMIZE_LEVEL = Case 3 PLSQL_OPTIMIZE_LEVEL = Case 4 PLSQL_OPTIMIZE_LEVEL = PRAGMA INLINE 262 Summary 265 Practice exercise 265 Chapter 9: Caching to Improve Performance 269 Introduction to result cache 270 Server-side result cache 271 SQL query result cache 272 PL/SQL function result cache 272 OCI client results cache 273 Configuring the database for the server result cache 273 The DBMS_RESULT_CACHE package 276 Implementing the result cache in SQL 277 Manual result cache 277 Automatic result cache 279 Result cache metadata 281 Query result cache dependencies 283 Cache memory statistics 283 Invalidation of SQL result cache 284 Displaying the result cache memory report 286 Read consistency of the SQL result cache 287 Limitation of SQL result cache 287 Implementing result cache in PL/SQL 288 The RESULT_CACHE clause 288 Cross-session availability of cached results 292 Invalidation of PL/SQL result cache 292 Limitations of PL/SQL function result cache 294 Argument and return type restrictions 294 Function structural restrictions 294 Summary 295 Practice exercise 295

8 Chapter 10: Analyzing PL/SQL Code 299 Track coding information 299 [DBA ALL USERLARGUMENTS 301 [DBA ALL USERLOBJECTS 304 [DBA ALL USER]_SOURCE 306 [DBA ALL USER]_PROCEDURES 307 [DBA ALL USERLDEPENDENCIES 308 Using SQL Developer to find coding information 310 The DBMS_DESCRIBE package 313 DBMS_UTILITY.FORMAT_CALL_STACK 316 Tracking propagating exceptions in PL/SQL code 318 Determining identifier types and usages 319 The PL/Scope tool 320 The PL/Scope identifier collection 320 The PUScope report 322 Illustration 322 Applications of the PL/Scope report 325 The DBMS_METADATA package 326 DBMS_METADATA data types and subprograms 327 Parameter requirements 330 The DBMS_METADATA transformation parameters and filters 330 Working with DBMS_METADATA illustrations 332 Case 1 retrieve the metadata of a single object 332 Case 2 retrieve the object dependencies on the F_GET LOC function 335 Case 3 retrieve system grants on the ORADEV schema 335 Case 4 retrieve objects of function type in the ORADEV schema 336 Summary 337 Practice exercise 337 Chapter 11: Profiling and Tracing PL/SQL Code 339 Tracing the PL/SQL programs 340 The DBMS TRACE package 341 Installing DBMS_TRACE 341 DBMS_TRACE subprograms 341 The PLSQL_DEBUG parameter and the DEBUG option 343 Viewing the PL/SQL trace information 344 Demonstrating the PL/SQL tracing 347 Profiling the PL/SQL programs 350 Oracle hierarchical profiler the DBMS_HPROF package 351 View profiler information 352 Demonstrating the profiling of a PL/SQL program 352 The plshprof utility 357 Sample reports 359

9 Table ofcontents Summary 361 Practice exercise 361 Chapter 12: Safeguarding PL/SQL Code against SQL Injection Attacks 365 SQL injection an introduction 366 SQL injection an Types of SQL injection overview 366 attacks 369 Preventing SQL injection attacks 369 Immunizing SQL injection attacks 370 Reducing the attack's surface 370 Controlling user privileges 371 Invoker's and definer's rights 371 Avoiding dynamic SQL 375 Bind arguments 378 Sanitizing inputs using DBMS_ASSERT 379 The DBMS_ASSERT package 380 Testing the code for SQL injection flaws 386 Test strategy 386 Reviewing the code 386 Static code analysis 387 Fuzz tools 387 Generating test cases 387 Summary 388 Practice exercise 388 Appendix: Answers to Practice Questions 391 Chapter 1, Overview of PL/SQL Programming Concepts 391 Chapter 2, Designing PL/SQL Code 392 Chapter 3, Using Collections 393 Chapter 4, Using Advanced Interface Methods 394 Chapter 5, Implementing VPD with Fine Grained Access Control 395 Chapter 6, Working with Large Objects 396 Chapter 7, Using SecureFile LOBs 397 Chapter 8, Compiling and Tuning to Improve Performance 398 Chapter 9, Caching to Improve Performance 400 Chapter 10, Analyzing PL/SQL Code 401 Chapter 11, Profiling and Tracing PL/SQL Code 401 Chapter 12, Safeguarding PL/SQL Code against SQL Injection Attacks 402 Index 405

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

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

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

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

Contents I Introduction 1 Introduction to PL/SQL iii

Contents I Introduction 1 Introduction to PL/SQL iii Contents I Introduction Lesson Objectives I-2 Course Objectives I-3 Human Resources (HR) Schema for This Course I-4 Course Agenda I-5 Class Account Information I-6 Appendixes Used in This Course I-7 PL/SQL

More information

Oracle SQL Course Content

Oracle SQL Course Content Oracle SQL Course Content Introduction Describe the features of Oracle Database 12c Describe the salient features of Oracle Cloud 12c Explain the theoretical and physical aspects of a relational database

More information

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Course Description This training starts with an introduction to PL/SQL and then explores the benefits of this powerful programming

More information

Oracle PLSQL Training Syllabus

Oracle PLSQL Training Syllabus Oracle PLSQL Training Syllabus Introduction Course Objectives Course Agenda Human Resources (HR) Schema Introduction to SQL Developer Introduction to PL/SQL PL/SQL Overview Benefits of PL/SQL Subprograms

More information

Oracle Database 11g: Program with PL/SQL Release 2

Oracle Database 11g: Program with PL/SQL Release 2 Oracle University Contact Us: +41- (0) 56 483 31 31 Oracle Database 11g: Program with PL/SQL Release 2 Duration: 5 Days What you will learn This course introduces students to PL/SQL and helps them understand

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle database 11g:advanced pl/sql. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle database 11g:advanced pl/sql. Version: Demo Vendor: Oracle Exam Code: 1Z0-146 Exam Name: Oracle database 11g:advanced pl/sql Version: Demo QUESTION 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: + 420 2 2143 8459 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction

More information

Oracle Database: Program with PL/SQL Ed 2

Oracle Database: Program with PL/SQL Ed 2 Oracle University Contact Us: +38 61 5888 820 Oracle Database: Program with PL/SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction

More information

Conditionally control code flow (loops, control structures). Create stored procedures and functions.

Conditionally control code flow (loops, control structures). Create stored procedures and functions. TEMARIO Oracle Database: Program with PL/SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores the benefits

More information

Oracle Database 11g: Program with PL/SQL

Oracle Database 11g: Program with PL/SQL Oracle University Contact: +31 (0)30 669 9244 Oracle Database 11g: Program with PL/SQL Duration: 5 Dagen What you will learn This course introduces students to PL/SQL and helps them understand the benefits

More information

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure.

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure. Oracle Exam Questions 1Z0-146 Oracle 11g: Advanced PL/SQL Version:Demo 1. Identify two strategies against SQL injection. (Choose two.) A. Using parameterized queries with bind arguments. B. Use subprograms

More information

Oracle Database 10g: Advanced PL/SQL

Oracle Database 10g: Advanced PL/SQL Oracle Database 10g: Advanced PL/SQL Student Guide D17220GC10 Edition 1.0 June 2004 D39598 Authors Nancy Greenberg Aniket Raut Technical Contributors and Reviewers Andrew Brannigan Christoph Burandt Dairy

More information

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days This Database Program with PL/SQL training shows you how to develop stored procedures, functions, packages and database triggers. You'll

More information

IZ0-144Oracle 11g PL/SQL Certification (OCA) training

IZ0-144Oracle 11g PL/SQL Certification (OCA) training IZ0-144Oracle 11g PL/SQL Certification (OCA) training Advanced topics covered in this course: Managing Dependencies of PL/SQL Objects Direct and Indirect Dependencies Using the PL/SQL Compiler Conditional

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: Local: 1800 425 8877 Intl: +91 80 4108 4700 Oracle Database: Program with PL/SQL Duration: 50 Hours What you will learn This course introduces students to PL/SQL and helps

More information

Oracle Database: Introduction to SQL/PLSQL Accelerated

Oracle Database: Introduction to SQL/PLSQL Accelerated Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle Database: Introduction to SQL/PLSQL Accelerated Duration: 5 Days What you will learn This Introduction to SQL/PLSQL

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

Oracle - Oracle Database: Program with PL/SQL Ed 2

Oracle - Oracle Database: Program with PL/SQL Ed 2 Oracle - Oracle Database: Program with PL/SQL Ed 2 Code: Lengt h: URL: DB-PLSQL 5 days View Online This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores

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

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus ORACLE TRAINING ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL Oracle SQL Training Syllabus Introduction to Oracle Database List the features of Oracle Database 11g Discuss the basic design, theoretical,

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

Oracle Database 11g: Advanced PL/SQL

Oracle Database 11g: Advanced PL/SQL D52601GC10 Edition 1.0 March 2008 D54300 Oracle Database 11g: Advanced PL/SQL Volume II Student Guide Authors Nancy Greenberg Rick Green Marcie Young Technical Contributors and Reviewers Claire Bennett

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

More information

Oracle PLSQL. Course Summary. Duration. Objectives

Oracle PLSQL. Course Summary. Duration. Objectives Oracle PLSQL Course Summary Use conditional compilation to customize the functionality in a PL/SQL application without removing any source code Design PL/SQL packages to group related constructs Create

More information

Introduction to SQL/PLSQL Accelerated Ed 2

Introduction to SQL/PLSQL Accelerated Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Introduction to SQL/PLSQL Accelerated Ed 2 Duration: 5 Days What you will learn This Introduction to SQL/PLSQL Accelerated course

More information

ORACLE: PL/SQL Programming

ORACLE: PL/SQL Programming %ROWTYPE Attribute... 4:23 %ROWTYPE... 2:6 %TYPE... 2:6 %TYPE Attribute... 4:22 A Actual Parameters... 9:7 Actual versus Formal Parameters... 9:7 Aliases... 8:10 Anonymous Blocks... 3:1 Assigning Collection

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business The Database Programming with PL/SQL course introduces students to the procedural language used to extend SQL in a programatic manner. This course outline

More information

1Z Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions

1Z Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions 1Z0-144 Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-144 Exam on Oracle Database 11g - Program with PL/SQL... 2 Oracle 1Z0-144 Certification

More information

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL]

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Chapter Overview of PL/SQL Programs Control Statements Using Loops within PLSQL Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Table of Contents Describe a PL/SQL program construct List the

More information

Passguide.1z questions

Passguide.1z questions Passguide.1z0-146.167 questions Number: 1z0-146 Passing Score: 800 Time Limit: 120 min File Version: 4.5 http://www.gratisexam.com/ Oracle 1z0-146 1z0-146 Oracle Database 11g: Advanced PL/SQL The best

More information

SQL+PL/SQL. Introduction to SQL

SQL+PL/SQL. Introduction to SQL SQL+PL/SQL CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database Categorize

More information

PLSQL 9i Index. Section Title Page

PLSQL 9i Index. Section Title Page One PLSQL Introduction 2 Procedural Language for SQL 3 Two PLSQL Structure 5 Basic Structure of PLSQL 6 The Declaration Section in PLSQL 7 Local Variables in PLSQL 8 Naming Local Variables in PLSQL 10

More information

Question: Which statement would you use to invoke a stored procedure in isql*plus?

Question: Which statement would you use to invoke a stored procedure in isql*plus? What are the two types of subprograms? procedure and function Which statement would you use to invoke a stored procedure in isql*plus? EXECUTE Which SQL statement allows a privileged user to assign privileges

More information

"Charting the Course... Oracle 18c PL/SQL (5 Day) Course Summary

Charting the Course... Oracle 18c PL/SQL (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on, comprehensive introduction to PL/SQL including the use of both SQL Developer and SQL*Plus. This coverage is appropriate for both Oracle11g

More information

Oracle Database 11g: Advanced PL/SQL

Oracle Database 11g: Advanced PL/SQL D52601GC10 Edition 1.0 March 2008 D54299 Oracle Database 11g: Advanced PL/SQL Volume I Student Guide Authors Nancy Greenberg Rick Green Marcie Young Technical Contributors and Reviewers Claire Bennett

More information

EDUVITZ TECHNOLOGIES

EDUVITZ TECHNOLOGIES EDUVITZ TECHNOLOGIES Oracle Course Overview Oracle Training Course Prerequisites Computer Fundamentals, Windows Operating System Basic knowledge of database can be much more useful Oracle Training Course

More information

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along with the

More information

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query Oracle SQL(Structured Query Language) Introduction of DBMS Approach to Data Management Introduction to prerequisites File and File system Disadvantages of file system Introduction to TOAD and oracle 11g/12c

More information

Question Bank PL/SQL Fundamentals-I

Question Bank PL/SQL Fundamentals-I Question Bank PL/SQL Fundamentals-I UNIT-I Fundamentals of PL SQL Introduction to SQL Developer, Introduction to PL/SQL, PL/SQL Overview, Benefits of PL/SQL, Subprograms, Overview of the Types of PL/SQL

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR Student Level: This course is open to students on the college level in either the freshman or sophomore year. Catalog Description:

More information

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress Pro ODP.NET for Oracle Database 11 g Edmund Zehoo Apress Contents Contents at a Glance iv Contents....v About the Author About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction

More information

Braindumps.1z QA

Braindumps.1z QA Braindumps.1z0-146.116.QA Number: 1z0-146 Passing Score: 800 Time Limit: 120 min File Version: 7.4 http://www.gratisexam.com/ Passed!!!!!! I did it! The credit of my success however actually goes to this

More information

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time SQL Basics & PL-SQL Complete Practical & Real-time Training Sessions A Unit of SequelGate Innovative Technologies Pvt. Ltd. ISO Certified Training Institute Microsoft Certified Partner Training Highlights

More information

Question: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL package? (Choose two.

Question: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL package? (Choose two. Question: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL package? (Choose two.) A. report of invalidated objects in a schema B. report of statistics

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

Table of Contents. Oracle SQL PL/SQL Training Courses

Table of Contents. Oracle SQL PL/SQL Training Courses Table of Contents Overview... 7 About DBA University, Inc.... 7 Eligibility... 8 Pricing... 8 Course Topics... 8 Relational database design... 8 1.1. Computer Database Concepts... 9 1.2. Relational Database

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

When a database trigger routine does not have to take place before the triggering event, which timing should you assign to the trigger?

When a database trigger routine does not have to take place before the triggering event, which timing should you assign to the trigger? Page 1 of 80 Item: 1 (Ref:1z0-147e.9.2.4) When a database trigger routine does not have to take place before the triggering event, which timing should you assign to the trigger? nmlkj ON nmlkj OFF nmlkj

More information

Oracle12c Release 1 PL/SQL (3 Days)

Oracle12c Release 1 PL/SQL (3 Days) Oracle12c Release 1 PL/SQL (3 Days) www.peaklearningllc.com Course Description This course provides a complete, hands-on, comprehensive introduction to PL/SQL including the use of both SQL Developer and

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache

Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache Preis: This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then

More information

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

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 Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume I Student Guide D17112GC30 Edition 3.0 April 2009 D59413 Authors Salome Clement Sunitha Patel Tulika Srivastava Technical Contributors and Reviewers Brian

More information

Oracle 1Z0-148 Exam Questions and Answers (PDF) Oracle 1Z0-148 Exam Questions 1Z0-148 BrainDumps

Oracle 1Z0-148 Exam Questions and Answers (PDF) Oracle 1Z0-148 Exam Questions 1Z0-148 BrainDumps Oracle 1Z0-148 Dumps with Valid 1Z0-148 Exam Questions PDF [2018] The Oracle 1Z0-148 Oracle Database 12c: Advanced PL/SQL Exam exam is an ultimate source for professionals to retain their credentials dynamic.

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

Performance and Tuning. 2010, Oracle and/or its affiliates. All rights reserved.

Performance and Tuning. 2010, Oracle and/or its affiliates. All rights reserved. Performance and Tuning Objectives After completing this lesson, you should be able to do the following: Understand and influence the compiler Tune PL/SQL code Enable intraunit inlining 7-2 Lesson Agenda

More information

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM On a Mission to Transform Talent SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM Table of Contents Module 1: Introduction to Linux & RDBMS (Duration: 1 Week)...2 Module 2: Oracle SQL (Duration: 3 Weeks)...3

More information

ORACLE DEV 11G CURRICULUM. Introduction to SQL

ORACLE DEV 11G CURRICULUM. Introduction to SQL ORACLE DEV 11G CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database

More information

PART I Core Ideas and Elements of PL/SQL Performance Tuning

PART I Core Ideas and Elements of PL/SQL Performance Tuning Contents at a Glance PART I Core Ideas and Elements of PL/SQL Performance Tuning 1 The Role of PL/SQL in Contemporary Development... 3 2 DBA/Developer Borderline: Tools and Features... 17 3 Code Instrumentation

More information

Oracle SQL & PL SQL Course

Oracle SQL & PL SQL Course Oracle SQL & PL SQL Course Complete Practical & Real-time Training Job Support Complete Practical Real-Time Scenarios Resume Preparation Lab Access Training Highlights Placement Support Support Certification

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Introduction to SQL

More information

Appendix A Practices and Solutions

Appendix A Practices and Solutions Appendix A Practices and Solutions Table of Contents Practices for Lesson 1... 3 Practice 1-1: Introduction... 4 Practice Solutions 1-1: Introduction... 7 Practices for Lesson 2... 19 Practice 2-1: PLSQL

More information

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems ORACLE TRAINING CURRICULUM Relational Database Fundamentals Overview of Relational Database Concepts Relational Databases and Relational Database Management Systems Normalization Oracle Introduction to

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g: Program with PL/ SQL. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g: Program with PL/ SQL. Version: Demo Vendor: Oracle Exam Code: 1Z0-144 Exam Name: Oracle Database 11g: Program with PL/ SQL Version: Demo QUESTION NO: 1 View the Exhibit to examine the PL/SQL code: SREVROUPUT is on for the session. Which

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Oracle Database: Introduction to SQL Ed 2

Oracle Database: Introduction to SQL Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database: Introduction to SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database 12c: Introduction to SQL training helps you write subqueries,

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Oracle PL/SQL. DUMmIES. by Michael Rosenblum and Dr. Paul Dorsey FOR

Oracle PL/SQL. DUMmIES. by Michael Rosenblum and Dr. Paul Dorsey FOR Oracle PL/SQL FOR DUMmIES by Michael Rosenblum and Dr. Paul Dorsey Oracle PL/SQL For Dummies Published by Wiley Publishing, Inc. 111 River Street Hoboken, NJ 07030-5774 www.wiley.com Copyright 2006 by

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia 1. Creating a Database Alias 2. Introduction to SQL Relational Database Concept Definition of Relational Database

More information

MySQL for Developers Ed 3

MySQL for Developers Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Developers Ed 3 Duration: 5 Days What you will learn This MySQL for Developers training teaches developers how to plan, design and implement applications

More information

JSPM s Bhivarabai Sawant Institute of Technology & Research, Wagholi, Pune Department of Information Technology

JSPM s Bhivarabai Sawant Institute of Technology & Research, Wagholi, Pune Department of Information Technology JSPM s Bhivarabai Sawant Institute of Technology & Research, Wagholi, Pune Department of Information Technology Introduction A database administrator (DBA) is a person responsible for the installation,

More information

Course 40045A: Microsoft SQL Server for Oracle DBAs

Course 40045A: Microsoft SQL Server for Oracle DBAs Skip to main content Course 40045A: Microsoft SQL Server for Oracle DBAs - Course details Course Outline Module 1: Database and Instance This module provides an understanding of the two major components

More information

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240 Ryan Stephens Ron Plew Arie D. Jones Sams Teach Yourself FIFTH EDITION 800 East 96th Street, Indianapolis, Indiana, 46240 Table of Contents Part I: An SQL Concepts Overview HOUR 1: Welcome to the World

More information

I, J, K. Lightweight directory access protocol (LDAP), 162

I, J, K. Lightweight directory access protocol (LDAP), 162 Index A Access Control, 183 Administration console, 17 home page, 17 managing instances, 19 managing requests, 18 managing workspaces, 19 monitoring activity, 19 Advanced security option (ASO), 58, 262

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume 1 Student Guide D17112GC21 Edition 2.1 December 2006 D48243 Authors Tulika Srivastava Sunitha Patel Technical Contributors and Reviewers Chaitanya Koratamaddi

More information

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Preface p. xv Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Clauses p. 7 Sample Database p. 9 A Quick

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

ADVANTAGES. Via PL/SQL, all sorts of calculations can be done quickly and efficiently without use of Oracle engine.

ADVANTAGES. Via PL/SQL, all sorts of calculations can be done quickly and efficiently without use of Oracle engine. 1 PL/SQL INTRODUCTION SQL does not have procedural capabilities. SQL does not provide the programming techniques of condition checking, looping and branching that is required for data before permanent

More information

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

to use this Student Guide

to use this Student Guide Oracle Database 10g: Advanced PL/SQL Student Guide D17220GC10 Edition 1.0 June 2004 D39598 Authors Nancy Greenberg Aniket Raut Technical Contributors and Reviewers Andrew Brannigan Christoph Burandt Dairy

More information

Using Java - for PL/SQL and Database Developers Student Guide

Using Java - for PL/SQL and Database Developers Student Guide Using Java - for PL/SQL and Database Developers Student Guide D71990GC10 Edition 1.0 June 2011 D73403 Authors Priya Shridhar Prathima Trivedi Technical Contributors and Reviewers Andrew Rothstein Ashok

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business This is the second portion of the Database Design and Programming with SQL course. In this portion, students implement their database design by creating a

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

More information