Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Advanced Oracle PL/SQL Developer's Guide (Second Edition)
  • Table Of Contents Toc
Advanced Oracle PL/SQL Developer's Guide (Second Edition)

Advanced Oracle PL/SQL Developer's Guide (Second Edition) - Second Edition

By : Saurabh K. Gupta
4.9 (9)
close
close
Advanced Oracle PL/SQL Developer's Guide (Second Edition)

Advanced Oracle PL/SQL Developer's Guide (Second Edition)

4.9 (9)
By: Saurabh K. Gupta

Overview of this book

Oracle Database is one of the most popular databases and allows users to make efficient use of their resources and to enhance service levels while reducing the IT costs incurred. Oracle Database is sometimes compared with Microsoft SQL Server, however, Oracle Database clearly supersedes SQL server in terms of high availability and addressing planned and unplanned downtime. Oracle PL/SQL provides a rich platform for application developers to code and build scalable database applications and introduces multiple new features and enhancements to improve development experience. Advanced Oracle PL/SQL Developer's Guide, Second Edition is a handy technical reference for seasoned professionals in the database development space. This book starts with a refresher of fundamental concepts of PL/SQL, such as anonymous block, subprograms, and exceptions, and prepares you for the upcoming advanced concepts. The next chapter introduces you to the new features of Oracle Database 12c, not limited to PL/SQL. In this chapter, you will understand some of the most talked about features such as Multitenant and Database In-Memory. Moving forward, each chapter introduces advanced concepts with the help of demonstrations, and provides you with the latest update from Oracle Database 12c context. This helps you to visualize the pre- and post-applications of a feature over the database releases. By the end of this book, you will have become an expert in PL/SQL programming and will be able to implement advanced concepts of PL/SQL for efficient management of Oracle Database.
Table of Contents (14 chapters)
close
close
13
Index

Practice exercise

  • Which of the following features are not available in SQL Developer?
    1. Query builder.
    2. Database export and import.
    3. Database backup and recovery functions.
    4. Code Subversion repository.
  • For a function to be called from a SQL expression, which of the following conditions should it obey?
    1. A function in the SELECT statement should not contain DML statements.
    2. The function should return a value.
    3. A function in the UPDATE or DELETE statement should not query the same table.
    4. A function called from a SQL expression cannot contain TCL (COMMIT or ROLLBACK) commands or DDL (CREATE or ALTER) commands.
  • The following query is executed in the SCOTT schema:
      SELECT NAME, referenced_owner, referenced_name
      FROM all_dependencies
      WHERE owner = USER
      AND referenced_type IN ('TABLE', 'VIEW')
      AND referenced_owner IN ('SYS')
      ORDER BY owner, NAME, referenced_owner, referenced_name;

    Which statement is true about the output of this query?

    1. It displays the schema objects, created by the user ORADEV, that use a table or view owned by SYS.
    2. An exception occurs as user SCOTT has insufficient privileges to access ALL_DEPENDENCIES view.
    3. It displays all PL/SQL code objects that reference a table or view directly for all the users in the database.
    4. It displays only those PL/SQL code objects created by the user OE that reference a table or view created by the user SYS.
  • Which of the following is true about PL/SQL blocks?
    1. Exception is a mandatory section without which an anonymous PL/SQL block fails to compile.
    2. Bind variables cannot be referred inside a PL/SQL block.
    3. The scope and visibility of the variables declared in the declarative section of the block are within the current block only.
    4. The RAISE_APPLICATION_ERROR procedure maps a predefined error message to a customized error code.
  • From the following options, identify the ways of defining exceptions:
    1. Declare an EXCEPTION variable and raise it using the RAISE statement.
    2. Use PRAGMA EXCEPTION_INIT to associate a customized exception message to a pre-defined oracle error number.
    3. Declare an EXCEPTION variable and use it in RAISE_APPLICATION_ERROR.
    4. Use RAISE_APPLICATION_ERROR to create a dynamic exception at any stage within the executable or exception section of a PL/SQL block.
  • Choose the differences between procedures and functions:
    1. A function must mandatorily return a value, while a procedure may or may not.
    2. A function can be called from a SQL query, while a procedure can never be invoked from SQL.
    3. A function can accept parameters passed by a value, while a procedure can accept parameters passed by reference only.
    4. A standalone function can be overloaded but a procedure cannot.
  • Examine the values of the cursor attribute for the following query and pick the attribute with the wrong value:
      BEGIN
      …
      SELECT ENAME, SAL
      INTO L_ENAME, L_SAL
      FROM EMPLOYEES
      WHERE EMPID = 7900;
      …
      END;
    1. SQL%ROWCOUNT = 1
    2. SQL%ISOPEN = FALSE
    3. SQL%FOUND = FALSE
    4. SQL%NOTFOUND = FALSE
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Advanced Oracle PL/SQL Developer's Guide (Second Edition)
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon