- IBM DB2 9.7 Advanced Application Developer Cookbook
- Sanjay Kumar Mohankumar Saraswatipura
- 206字
- 2021-08-20 15:42:18
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 are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
<?xml version="1.0" encoding="UTF-8"?> <OPTPROFILE VERSION="9.1.0.0"> <!-- Global optimization guidelines section. --> <OPTGUIDELINES>............</OPTGUIDELINES> <!-- Statement profile section. --> <STMTPROFILE ID="Guidelines for Q1"> <STMTKEY SCHEMA="TEST"> <![CDATA[SQL Query]]> </STMTKEY> <OPTGUIDELINES>...........</OPTGUIDELINES> </STMTPROFILE> </OPTPROFILE>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<OPTGUIDELINES>
<MQTENFORCE>
<NAME='MQT1'/> <TYPE='REPLICATED'/>
</MQTENFORCE>
<OPTGUIDELINES>
Any command-line input or output is written as follows:
CREATE TABLE REPLACE1 (c1 INT, c2 INT) CREATE TABLE REPLACE2 (c1 INT, c2 INT) CREATE VIEW v1 AS SELECT * FROM REPLACE1 CREATE VIEW v2 as SELECT * FROM v1 CREATE FUNCTION fun1() LANGUAGE SQL RETURNS INT RETURN SELECT c1 FROM v2 CREATE OR REPLACE VIEW v1 AS SELECT * FROM REPLACE2
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: "In the previous section, we can observe following information for Operator#2:".
推薦閱讀
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Java入門經(jīng)典(第6版)
- Moodle Administration Essentials
- Instant Apache Stanbol
- Visual Basic編程:從基礎(chǔ)到實(shí)踐(第2版)
- Learning Elixir
- Python Tools for Visual Studio
- Java程序設(shè)計(jì)與實(shí)踐教程(第2版)
- Getting Started with SQL Server 2012 Cube Development
- Linux操作系統(tǒng)基礎(chǔ)案例教程
- Getting Started with Eclipse Juno
- Java高并發(fā)核心編程(卷1):NIO、Netty、Redis、ZooKeeper
- Go語(yǔ)言精進(jìn)之路:從新手到高手的編程思想、方法和技巧(2)
- HoloLens與混合現(xiàn)實(shí)開發(fā)
- TypeScript圖形渲染實(shí)戰(zhàn):2D架構(gòu)設(shè)計(jì)與實(shí)現(xiàn)