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

Size: px
Start display at page:

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

Transcription

1 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 format when outputting the cached result of this function? A. Change the RETURN type to DATE. B. Change AUTHID to CURRENT_USER. C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE). D. Change the data type of 1_date to DATE. E. Set NLS_DATE_FORMAT to DD-MM-YY at the instance level. F. Set the RESULT_CACHE_MODE parameter to FORCE. Answer: D,F Question: 2 Which three statements are correct with reference to intra unit inlining? A. Inlining will always decrease the size of a unit. B. Setting PLSQL_OPTIMIZE_LEVEL to 2 means automatic inlining is attempted. C. You cannot inline an external subroutine. D. Programs that make use of smaller helper subroutines are good candidates for inlining. E. Pragmas apply only to calls in the next statement following the pragma. F. You cannot inline local subroutines.

2 Answer: C,D,E Question: 3 Which two statements are true regarding edition-based redefinition (EBR)? A. There is no default edition defined in the database. B. EBR does not let you upgrade the database components of an application while in use. C. You never use EBR to copy the database objects and redefine the copied objects in isolation. D. Editions are non-schema objects. E. When you change an editioned object, all of its dependents remain valid. F. Tables are not editionable objects. Answer: E,F Question: 4 Examine this function body: Which two headers will allow this function to compile successfully and take advantage of both invoker s rights and function result caching? A. CREATE FUNCTION get_hire_date (emp_id NUMBER) RETURN VARCHAR2RESULT_CACHE RELIES_ON (departments)authid CURRENT_USERISdate_hired DATE; B. CREATE FUNCTION get_hire_date (emp_id NUMBER) RETURN VARCHAR2RESULT_CACHEAUTHID CURRENT_USERISdate_hired DATE; C. CREATE FUNCTION get_hire_date (emp_id NUMBER) RETURN VARCHAR2RESULT_CACHEAUTHID DEFINERISdate_hired DATE; D.

3 CREATE FUNCTION get_hire_date (emp_id NUMBER) RETURN VARCHAR2RESULT_CACHE RELIES_ON (employees)authid CURRENT_USERISdate_hired DATE; E. CREATE FUNCTION get_hire_date (emp_id NUMBER) RETURN VARCHAR2AUTHID DEFINERISdate_hired DATE; Answer: D,E Question: 5 Examine the structure of the DEPT table which exists in both BRANCH1 and BRANCH2 schemas: Examine this code: Which three modifications must be done to endure the anonymous block displays the output form the BRANCH2.DEF DEPT table? A. Change the IF condition in the anonymous block to 1_dept IS EMPTY. B. Change the IF condition in the anonymous block to CARDINALITY (1_dept) IS NULL. C. Add BEQUEATH DEFINER to the EMP_COUNT_VW view. D. Add BEQUEATH CURRENT_USER to the EMP_COUNTS_VW view.

4 E. IN BRANCH2 execute GRANT INHERIT PRIVILEGES ON USER branch2 TO branch1; F. Add AUTHID CURRENT_USER to the EMP_COUNT function. Answer: B,D,E Question: 6 Examine this function: Execute the query: SELECT remap_schema FROM dual; Which is the correct output from the query? A. CREATE TABLE EMP ( EMPNO NUMBER (4,0), ENAME VARCHAR2 (10), JOB VARCHAR2 (9), MGR NUMBER (4,0), HIREDATE DATE, SAL NUMBER (7,2), COMM NUMBER (7,2), DEPTNO NUMBER (2,0),CONSTRAINT PK_EMP PRIMARYKEY ( EMPNO ) USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255STORAGE (INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1BUFFER_POOL DEFAULT FLASH_CHACHE DEFAULT CELL_FLASH_CACHE DEFAULT)TABLESPACE USERS ENABLE,CONSTRAINT FK_DEPTNO FOREIGN KEY ( DEPTNO ) REFERENCES DEPT ( DEPTNO ) ENABLE) SEGMENT CREATION IMMEDIATEPCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255NOCOMPRESS LOGGINGSTORAGE (INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE USERS B. CREATE TABLE EMP ( EMPNO NUMBER (4, 0), ENAME VARCHAR2 (10), JOB VARCHAR2 (9), MGR NUMBER (4, 0), HIREDATE DATE, SAL NUMBER (7, 2), COMM NUMBER (7, 2), DEPTNO NUMBER (2, 0),CONSTRAINT PK_EMP PRIMARYKEY ( EMPNO )

5 USING INDEX ENABLE,CONSTRAINT FK_DEPTNO FOREIGN KEY ( DEPTNO ) REFERENCES DEPT ( DEPTNO ) ENABLE) C. CREATE TABLE SCOTT. EMP ( EMPNO NUMBER (4, 0), ENAME VARCHAR2 (10), JOB VARCHAR2 (9), MGR NUMBER (4, 0), HIREDATE DATE, SAL NUMBER (7, 2), COMM NUMBER (7, 2), DEPTNO NUMBER (2, 0),CONSTRAINT PK_EMP PRIMARY KEY ( EMPNO ) USING INDEX ENABLE,CONSTRAINT FK_DEPTNO FOREIGN KEY ( DEPTNO ) REFERENCES DEPT ( DEPTNO ) ENABLE) D. CREATE TABLE EMP ( EMPNO NUMBER (4,0), ENAME VARCHAR2 (10), JOB VARCHAR2 (9), MGR NUMBER (4,0), HIREDATE DATE, SAL NUMBER (7, 2), COMM NUMBER (7, 2), DEPTNO NUMBER (2,0),CONSTRAINT PK_EMP PRIMARYKEY ( EMPNO ) USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255STORAGE (INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1BUFFER_POOL DEFAULT FLASH_CHACHE DEFAULT CELL_FLASH_CACHE DEFAULT)TABLESPACE SYSAUX ENABLE,CONSTRAINT FK_DEPTNO FOREIGN KEY ( DEPTNO ) REFERENCES DEPT ( DEPTNO ) ENABLE) SEGMENT CREATION IMMEDIATEPCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255NOCOMPRESS LOGGINGSTORAGE (INITIAL NEXT MINEXTENTS 1 MAXEXTENTS PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE SYSAUX Answer: B Question: 7 This result cache is enabled for the database instance. Examine this code for a PL/SQL function: Which two actions would ensure that the same result will be consistently returned for any session when the same input value is passed to the function? A. Add a parameter, fmt, and change the RETURN statement to:return TO_CHAR (date_hired, fmt);

6 B. Set the RESULT_CACHE_MODE parameter to FORCE. C. Increase the value for the RESULT_CACHE_MAX_SIZE parameter. D. Change the return type of GET_HIRE_DATE to DATE and have each session invoke the TO_CHAR function. E. Set the RESULT_CACHE_MAX_RESULT parameter to 0. Answer: B,D Question: 8 Examine this code: Which two corrections must be applied for this anonymous block to execute successfully? A. Change RETURN p_tab.last to RETURN p_tab.count. B. Declare the collection type inside the function. C. Declare the collection type at the schema level instead of the package. D. Define the function as stand-alone instead of in a package body. E. Change the INDEX BY clause from VARCHAR2 to PLS_INTEGER. F. Modify the function return type to return a scalar, VARCHAR2. Answer: D,E

7 Question: 9 Which statement is true about the DBMS_PARALLEL_EXECUTE package? A. DBMS_PARALLEL_EXECUTE is a SYS-owned package and can be accessed only by a user with DBA privileges. B. To execute chunks in parallel, users must have CREATE JOB system privilege. C. No specific system privileges are required to create or run parallel execution tasks. D. Only DBAs can create or run parallel execution tasks. E. Users with CREATE TASK privilege can create or run parallel execution tasks. Answer: B Question: 10 Which two statements describe actions developers can take to make their application less vulnerable to security attacks? A. Include the AUTHID DEFINER clause in stored program units. B. Do not concatenate unchecked user input into dynamically constructed SQL statements. C. Switch from using DBMS_SQL to EXECUTE IMMEDIATE. D. Include the AUTHID CURRENT_USER clause in stored program units. E. Increase the amount of code that is accessible to users by default. Answer: B,D Question: 11 Examine this declaration section: Which two executable sections will display the message Summary is null? A. BEGIN1_rec := NULL;1_emp := emp_typ (1_rec);IF 1_emp (1).expr_summary IS EMPTY

8 THENDBMS_OUTPUT.PUT_LINE ( Summary is null );END IF;END; B. BEGIN1_rec.emp_id :=1;1_rec.expr_summary := NULL;1_emp :=emp_typ (1_rec); IF1_emp(1).expr_summary IS NULL THENDBMS_OUTPUT.PUT_LINE ( Summary is null );END IF;END; C. BEGIN1_rec.emp_id :=1;1_rec.expr_summary := EMPTY_CLOB ();1_emp := emp_typ (1_rec);IF 1_emp(1).expr_summary IS NULL THENDBMS_OUTPUT.PUT_LINE ( Summary is null );END IFEND; D. BEGIN1_emp := emp_typ ();IF NOT 1_emp. EXISTS (1) THENDBMS_OUTPUT.PUT_LINE ( Summary is null );END IFEND; E. BEGIN1_emp. EXTEND;IF NOT 1_emp. EXISTS (1) THENDBMS_OUTPUT.PUT_LINE ( Summary is null );END IFEND; Answer: D,E Question: 12 Examine this PL/SQL function: What happens when the function is created with PLSQL_WARNINGS set to ENABLE: ALL? A. There are no compilation warnings or errors. B. It fails compilation. C. An information compilation warning is generated. D. A performance compilation warning is generated. E. A severe compilation warning is generated.

9 Answer: E Question: 13 Which statement is correct about DBMS_LOB.SETOPTIONS and DBMS_LOB.GETOPTIONS for SecureFiles? A. DBMS_LOB.GETOPTIONS can only be used for BLOB data types. B. DBMS_LOB.SETOPTIONS can perform operations on individual SecureFiles but not an entire column. C. DBMS_LOB. SETOPTIONS can set option types COMPRESS, DUPLICATE, and ENCRYPT. D. If a table was not created with compression specified in the store as securefile clause then DBMS_LOB.SETOPTIONS can be used to enable it later. Answer: D Question: 14 Which two statements about the PL/SQL hierarchical profiler are true? A. Access it using the DBMS_PROFILER package. B. Access it using the DBMS_HPROF package. C. Profiler data is recorded in tables and published in HTML reports. D. It is only accessible after a grant of the CREATE PROFILE privilege. E. It helps you identify subprograms that are causing bottlenecks in application performance. Answer: B,E Question: 15 Examine this code: The anonymous block fails with:

10 ERROR at line 1: ORA-01403: no data found ORA-06512: at line 5 Which two are valid options to prevent this error from occurring? A. Line 5 should be replaced with:dbms_lob.createtemporary (pdatabuf (1), TRUE, DBMS_LOB.CALL); B. Line 5 should be replaced with:dbms_lob.createtemporary (pdatabuf (1), FALSE, DBMS_LOB.SESSION); C. Rewrite the block as:declaretype databuf_arr IS TABLE OF CLOB INDEX BY BINATY_INTEGER;pdatabuf databuf_arr;procedure mytemplob (x OUT CLOB) ISBEGINDBMS_LOB.CREATETEMPORARY (x, TRUE, DBMS_LOB, SESSION);END;BEGINmytemplob (pdatabuf (1));END;/ D. pdatabuf (1) := NULL; should be added after line 4. E. Line 5 should be replaced with:dbms_lob.createtemporary (pdatabuf, TRUE, DBMS_LOB.SESSION); Answer: C,E Question: 16 Which must be true in order to add RESULT_CACHE to a function header and have it compile successfully? A. The IN parameters must not include BLOB, CLOB, collection or record data types. B. The function must be created with invoker s rights or in an anonymous block. C. The function must be declared as a pipelined table function. D. The function must have an OUT or an IN OUT parameter. Answer: C Question: 17 Which PRAGMA statement may enable associated PL/SQL functions to run more efficiently when called from SQL?

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

ITBraindumps. Latest IT Braindumps study guide

ITBraindumps.  Latest IT Braindumps study guide ITBraindumps http://www.itbraindumps.com Latest IT Braindumps study guide Exam : 1z0-148 Title : Oracle Database 12c: Advanced Pl/SQL Vendor : Oracle Version : DEMO Get Latest & Valid 1z0-148 Exam's Question

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

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

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

Oracle 1Z Oracle Database 12c: Advanced PL/SQL.

Oracle 1Z Oracle Database 12c: Advanced PL/SQL. Oracle 1Z0-148 Oracle Database 12c: Advanced PL/SQL https://killexams.com/pass4sure/exam-detail/1z0-148 QUESTION: 67 Examine this Java method in class Employee, loaded into the Oracle database: Public

More information

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

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

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

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

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

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 Structured Query Language Introduction

SQL Structured Query Language Introduction SQL Structured Query Language Introduction Rifat Shahriyar Dept of CSE, BUET Tables In relational database systems data are represented using tables (relations). A query issued against the database also

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

Definitions. Database Architecture. References Fundamentals of Database Systems, Elmasri/Navathe, Chapter 2. HNC Computing - Databases

Definitions. Database Architecture. References Fundamentals of Database Systems, Elmasri/Navathe, Chapter 2. HNC Computing - Databases HNC Computing - s HNC Computing - s Architecture References Fundamentals of Systems, Elmasri/Navathe, Chapter 2 Systems : A Practical Approach, Connolly/Begg/Strachan, Chapter 2 Definitions Schema Description

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

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

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

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

! #  $ %&' ($$$ )%&' *+),%&' -.*&*/ 1 ! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/ 2 010232 %&'24& 0506260 021 3 4 &*7+8 9!"#$%#&: 5 Probably You Do Not Need to Actually Design Anything 6 4*+/+.; "#&%$' 7 "#&%$' 4*+/+.; () OBJECT *object_id name

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

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 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 Exam 1z0-144 Oracle Database 11g: Program with PL/SQL Version: 8.5 [ Total Questions: 103 ]

Oracle Exam 1z0-144 Oracle Database 11g: Program with PL/SQL Version: 8.5 [ Total Questions: 103 ] s@lm@n Oracle Exam 1z0-144 Oracle Database 11g: Program with PL/SQL Version: 8.5 [ Total Questions: 103 ] Question No : 1 What is the correct definition of the persistent state of a packaged variable?

More information

King Fahd University of Petroleum and Minerals

King Fahd University of Petroleum and Minerals 1 King Fahd University of Petroleum and Minerals Information and Computer Science Department ICS 334: Database Systems Semester 041 Major Exam 1 18% ID: Name: Section: Grades Section Max Scored A 5 B 25

More information

Exam Name: Oracle Database 11g: Program with PL/SQL

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

More information

Oracle Database 18c. Gentle introduction to Polymorphic Tables Functions with Common patterns and sample use cases

Oracle Database 18c. Gentle introduction to Polymorphic Tables Functions with Common patterns and sample use cases Oracle Database 18c Gentle introduction to Polymorphic Tables Functions with Common patterns and sample use cases About me. Keith Laker Product Manager for Analytic SQL and Autonomous DW Oracle Blog: oracle-big-data.blogspot.com

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

Create Rank Transformation in Informatica with example

Create Rank Transformation in Informatica with example Create Rank Transformation in Informatica with example Rank Transformation in Informatica. Creating Rank Transformation in Inforamtica. Creating target definition using Target designer. Creating a Mapping

More information

Oracle Database 12c Release 1 PL/SQL New Features

Oracle Database 12c Release 1 PL/SQL New Features Oracle Database 12c Release 1 PL/SQL New Features Steven Feuerstein PL/SQL Evangelist, Dell steven@stevenfeuerstein.com How to benefit most from this presentation Watch, listen, ask questions, focus on

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

Oracle EXAM - 1Z Program with PL/SQL. Buy Full Product.

Oracle EXAM - 1Z Program with PL/SQL. Buy Full Product. Oracle EXAM - 1Z0-147 Program with PL/SQL Buy Full Product http://www.examskey.com/1z0-147.html Examskey Oracle 1Z0-147 exam demo product is here for you to test the quality of the product. This Oracle

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. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo Oracle Exam Questions 1Z0-055 Oracle Database 11g: New Features for 9i OCPs Version:Demo 1. Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework? A. SQL statements

More information

Oracle EXAM 1Z0-144 Oracle Database 11g: Program with PL/SQL

Oracle EXAM 1Z0-144 Oracle Database 11g: Program with PL/SQL Oracle EXAM 1Z0-144 Oracle Database 11g: Program with PL/SQL Total Questions: 80 Question: 1 View the Exhibit to examine the PL/SQL code: SREVROUPUT is on for the session. Which statement Is true about

More information

Programming Languages

Programming Languages Programming Languages Chapter 19 - Continuations Dr. Philip Cannata 1 Exceptions (define (f n) (let/cc esc (/ 1 (if (zero? n) (esc 1) n)))) > (f 0) 1 > (f 2) 1/2 > (f 1) 1 > Dr. Philip Cannata 2 Exceptions

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

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

ORACLE VIEWS ORACLE VIEWS. Techgoeasy.com

ORACLE VIEWS ORACLE VIEWS. Techgoeasy.com ORACLE VIEWS ORACLE VIEWS Techgoeasy.com 1 Oracle VIEWS WHAT IS ORACLE VIEWS? -A view is a representation of data from one or more tables or views. -A view is a named and validated SQL query which is stored

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 New PL/SQL Capabilities in Oracle Database 12c Bryn Llewellyn, Distinguished Product Manager, Database Server Technologies Division Oracle HQ 2 The following is intended to outline our general product

More information

1Z0-144 Q&As Oracle Database 11g: Program with PL/ SQL

1Z0-144 Q&As Oracle Database 11g: Program with PL/ SQL CertBus.com 1Z0-144 Q&As Oracle Database 11g: Program with PL/ SQL Pass Oracle 1Z0-144 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: 100% Passing Guarantee 100%

More information

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM ORACLE 12C NEW FEATURE A Resource Guide NOV 1, 2016 TECHGOEASY.COM 1 Oracle 12c New Feature MULTITENANT ARCHITECTURE AND PLUGGABLE DATABASE Why Multitenant Architecture introduced with 12c? Many Oracle

More information

RDBMS Topic 4 Adv. SQL, MSBTE Questions and Answers ( 12 Marks)

RDBMS Topic 4 Adv. SQL, MSBTE Questions and Answers ( 12 Marks) 2017 RDBMS Topic 4 Adv. SQL, MSBTE Questions and Answers ( 12 Marks) 2016 Q. What is view? Definition of view: 2 marks) Ans : View: A view is a logical extract of a physical relation i.e. it is derived

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

New York Oracle Users Group. September 26, 2002 New York, NY

New York Oracle Users Group. September 26, 2002 New York, NY New York Oracle Users Group September 26, 2002 New York, NY Fire and Forget : When to Use Autonomous Transactions Michael Rosenblum Dulcian, Inc. www.dulcian.com ! Definition: Autonomous Transactions "

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

5 Integrity Constraints and Triggers

5 Integrity Constraints and Triggers 5 Integrity Constraints and Triggers 5.1 Integrity Constraints In Section 1 we have discussed three types of integrity constraints: not null constraints, primary keys, and unique constraints. In this section

More information

20 Essential Oracle SQL and PL/SQL Tuning Tips. John Mullins

20 Essential Oracle SQL and PL/SQL Tuning Tips. John Mullins 20 Essential Oracle SQL and PL/SQL Tuning Tips John Mullins jmullins@themisinc.com www.themisinc.com www.themisinc.com/webinars Presenter John Mullins Themis Inc. (jmullins@themisinc.com) 30+ years of

More information

1Z0-144.v Number: 1Z0-144 Passing Score: 800 Time Limit: 120 min File Version:

1Z0-144.v Number: 1Z0-144 Passing Score: 800 Time Limit: 120 min File Version: 1Z0-144.v12.39 Number: 1Z0-144 Passing Score: 800 Time Limit: 120 min File Version: 12.39 http://www.gratisexam.com/ Vendor: Oracle Exam Code: 1Z0-144 Exam Name: Oracle Database 11g: Program with PL/SQL

More information

Database Foundations. 6-3 Data Definition Language (DDL) Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Database Foundations. 6-3 Data Definition Language (DDL) Copyright 2015, Oracle and/or its affiliates. All rights reserved. Database Foundations 6-3 Roadmap You are here Introduction to Oracle Application Express Structured Query Language (SQL) Data Definition Language (DDL) Data Manipulation Language (DML) Transaction Control

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

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

Question No : 1 Which statement is true about triggers on data definition language (DDL) statements?

Question No : 1 Which statement is true about triggers on data definition language (DDL) statements? Volume: 103 Questions Question No : 1 Which statement is true about triggers on data definition language (DDL) statements? A. They can be used to track changes only to a table or index. B. They can be

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 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

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

ITDUMPS QUESTION & ANSWER. Accurate study guides, High passing rate! IT dumps provides update free of charge in one year!

ITDUMPS QUESTION & ANSWER. Accurate study guides, High passing rate! IT dumps provides update free of charge in one year! ITDUMPS QUESTION & ANSWER Accurate study guides, High passing rate! IT dumps provides update free of charge in one year! HTTP://WWW.ITDUMPS.COM Exam : 1Z0-144 Title : Oracle Database 11g: Program with

More information

Oracle EXAM - 1Z Oracle Database 11g: Program with PL/SQL. Buy Full Product.

Oracle EXAM - 1Z Oracle Database 11g: Program with PL/SQL. Buy Full Product. Oracle EXAM - 1Z0-144 Oracle Database 11g: Program with PL/SQL Buy Full Product http://www.examskey.com/1z0-144.html Examskey Oracle 1Z0-144 exam demo product is here for you to test the quality of the

More information

ITCertMaster. Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way!

ITCertMaster.   Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way! ITCertMaster Safe, simple and fast. 100% Pass guarantee! http://www.itcertmaster.com Exam : 1z0-007 Title : Introduction to Oracle9i: SQL Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-007 Exam's

More information

Databases. Relational Model, Algebra and operations. How do we model and manipulate complex data structures inside a computer system? Until

Databases. Relational Model, Algebra and operations. How do we model and manipulate complex data structures inside a computer system? Until Databases Relational Model, Algebra and operations How do we model and manipulate complex data structures inside a computer system? Until 1970.. Many different views or ways of doing this Could use tree

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

Oracle Tables TECHGOEASY.COM

Oracle Tables TECHGOEASY.COM Oracle Tables TECHGOEASY.COM 1 Oracle Tables WHAT IS ORACLE DATABASE TABLE? -Tables are the basic unit of data storage in an Oracle Database. Data is stored in rows and columns. -A table holds all the

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

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement GIFT Department of Computing Science [Spring 2013] CS-217: Database Systems Lab-2 Manual Data Selection and Filtering using the SELECT Statement V1.0 4/12/2016 Introduction to Lab-2 This lab reinforces

More information

Introduction. Introduction to Oracle: SQL and PL/SQL

Introduction. Introduction to Oracle: SQL and PL/SQL Introduction Introduction to Oracle: SQL and PL/SQL 1 Objectives After completing this lesson, you should be able to do the following: Discuss the theoretical and physical aspects of a relational database

More information

Autonomous Transactions

Autonomous Transactions Autonomous Transactions Autonomous transactions allow you to create a new transaction within a transaction that may commit or roll back changes, independently of its parent transaction. They allow you

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

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

GET POST ORDS JSON: Web Services for APEX Decoded

GET POST ORDS JSON: Web Services for APEX Decoded GET POST ORDS JSON: Web Services for APEX Decoded Welcome 2 About Me About Sumner Technologies scott@sumnertech.com @sspendol Originally Established 2005 Relaunched in 2015 Focused exclusively on Oracle

More information

The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview.

The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview. Oracle Interview Procedure The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview. Written test paper consists of 30 questions. There is No Negative

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

c. Invoke your procedure again, passing a job ID of ST_MAN and a job title of Stock Manager. What happens and why?

c. Invoke your procedure again, passing a job ID of ST_MAN and a job title of Stock Manager. What happens and why? Practice 1 Note: You can find table descriptions and sample data in Appendix B, Table Descriptions and Data. Click the Save Script button to save your subprograms as.sql files in your local file system.

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

4 Application Programming

4 Application Programming 4 Application Programming 4.1 PL/SQL 4.1.1 Introduction The development of database applications typically requires language constructs similar to those that can be found in programming languages such

More information

4 Application Programming

4 Application Programming 4 Application Programming 4.1 PL/SQL 4.1.1 Introduction The development of database applications typically requires language constructs similar to those that can be found in programming languages such

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

Sample Question Paper

Sample Question Paper Sample Question Paper Marks : 70 Time:3 Hour Q.1) Attempt any FIVE of the following. a) List any four applications of DBMS. b) State the four database users. c) Define normalization. Enlist its type. d)

More information

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version :

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version : Oracle 1Z0-052 Oracle Database 11g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-052 D. Functionbased index Answer: A QUESTION: 191 The user HR owns the EMP

More information

The Encryption Wizard for Oracle. API Library Reference

The Encryption Wizard for Oracle. API Library Reference The Encryption Wizard for Oracle For Oracle 10g, 11g and 12c Databases Version 8 All Rights Reserved. The Encryption Wizard for Oracle RDC) 12021 Wilshire Blvd Suite 108 Los Angeles, CA. 90025 310-281-1915

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

11g Tech Briefing: Performance. Part 1 of 2

11g Tech Briefing: Performance. Part 1 of 2 11g Tech Briefing: Performance Part 1 of 2 Presenter JEREMY SCHNEIDER jeremy.schneider@ardentperf.com Senior Consultant, ITC Technology Services OCP, RAC since 2002, Systems Admin and Developer in previous

More information

SQL. Char (30) can store ram, ramji007 or 80- b

SQL. Char (30) can store ram, ramji007 or 80- b SQL In Relational database Model all the information is stored on Tables, these tables are divided into rows and columns. A collection on related tables are called DATABASE. A named table in a database

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 - Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

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

Additional Practice Solutions

Additional Practice Solutions Additional Practice Solutions Additional Practices Solutions The following exercises can be used for extra practice after you have discussed the data manipulation language (DML) and data definition language

More information

Oracle MySQL 1Z0-148 Exam Questions PDF

Oracle MySQL 1Z0-148 Exam Questions PDF Oracle MySQL 1Z0-148 Oracle Database 12c: Advanced PL/SQL Thank You for Downloading 1Z0-148 Updated Exam Questions oracle/1z0-148-pdf-exam-dumps Version: 8.0 Queston: 1 The STUDENTS table exists io yiur

More information

Exploring Edition-Based Redefinition

Exploring Edition-Based Redefinition Exploring Edition-Based Redefinition Presented by: John Jay King King Training Resources - john@kingtraining.com Download this paper from: http://www.kingtraining.com 1 Session Objectives Understand the

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner @markusdba doag2017 Our company. Trivadis is a market leader in IT consulting, system

More information

Part III. Data Modelling. Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1

Part III. Data Modelling. Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1 Part III Data Modelling Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1 Outline of this part (I) 1 Introduction to the Relational Model and SQL Relational Tables Simple Constraints

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

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

New Features in PL/SQL for Oracle 11g

New Features in PL/SQL for Oracle 11g 1 New Features in PL/SQL for Oracle 11g Presented by: John Jay King King Training Resources - john@kingtraining.com Download this paper from: http://www.kingtraining.com Copyright @ 2010, John Jay King

More information

SQL is an English like language consisting of commands to store, retrieve, maintain & regulate access to your database.

SQL is an English like language consisting of commands to store, retrieve, maintain & regulate access to your database. SQL SQL is an English like language consisting of commands to store, retrieve, maintain & regulate access to your database. SQL*Plus SQL*Plus is an application that recognizes & executes SQL commands &

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

PL/SQL. Exception. When the PL/SQL engine cannot execute the PLSQL block it raise an error. Every Oracle error has an error number

PL/SQL. Exception. When the PL/SQL engine cannot execute the PLSQL block it raise an error. Every Oracle error has an error number PL/SQL Exception When the PL/SQL engine cannot execute the PLSQL block it raise an error. Every Oracle error has an error number Exceptions must be handled by name. PL/SQL predefines some common Oracle

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

Informatics Practices (065) Sample Question Paper 1 Section A

Informatics Practices (065) Sample Question Paper 1 Section A Informatics Practices (065) Sample Question Paper 1 Note 1. This question paper is divided into sections. Section A consists 30 marks. 3. Section B and Section C are of 0 marks each. Answer the questions

More information

Q.1 Short Questions Marks 1. New fields can be added to the created table by using command. a) ALTER b) SELECT c) CREATE. D. UPDATE.

Q.1 Short Questions Marks 1. New fields can be added to the created table by using command. a) ALTER b) SELECT c) CREATE. D. UPDATE. ID No. Knowledge Institute of Technology & Engineering - 135 BE III SEMESTER MID EXAMINATION ( SEPT-27) PAPER SOLUTION Subject Code: 2130703 Date: 14/09/27 Subject Name: Database Management Systems Branches:

More information

Objectives. After completing this lesson, you should be able to do the following:

Objectives. After completing this lesson, you should be able to do the following: Objectives After completing this lesson, you should be able to do the following: Describe the types of problems that subqueries can solve Define subqueries List the types of subqueries Write single-row

More information

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries T E H U N I V E R S I T Y O H F R G E D I N B U CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries Chris Walton (cdw@dcs.ed.ac.uk) 11 February 2002 Multiple Tables 1 Redundancy requires excess

More information