Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The modified SELECT
query is then executed in the HR schema of the database."
A block of code is set as follows:
/*Create the stored procedure to set the context attribute*/ CREATE OR REPLACE PROCEDURE p_app_context (p_val VARCHAR2) IS BEGIN /*Create a namespace DEMO_CONTEXT*/ DBMS_SESSION.SET_CONTEXT( NAMESPACE => 'DEMO_CONTEXT', ATTRIBUTE => 'COUNTRY', VALUE => P_VAL); END; /
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "This is how interpreted compilation works. In the case of native compilation,, a sharable dynamic linked library (DLL) is generated instead of a machine code."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.