Using DB2 QMF: DB2 Query Management Facility
Using DB2 QMF: DB2 Query Management Facility
SC18-7445-01
SC18-7445-01
Note! Before using this information and the product it supports, be sure to read the general information under Appendix E, Notices, on page 385.
Second Edition (August 2005) This edition applies to IBM DB2 Query Management Facility, a feature of Version 8 Release 1 of IBM DB2 Universal Database Server for z/OS (DB2 UDB for z/OS), 5625-DB2, and to all subsequent releases and modifications until otherwise indicated in new editions. Copyright International Business Machines Corporation 1982, 2005. All rights reserved. US Government Users Restricted Rights Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
Contents
About this book . . . . . . . . . . xi How to order DB2 QMF books . . . . . . xi How to send comments . . . . . . . . xii Chapter 1. Getting acquainted with QMF . . 1 Tables, columns, and rows . . . . . . . 1 QMF sample tables . . . . . . . . . . 3 Accessing your data . . . . . . . . . . 3 QMF objects . . . . . . . . . . . . 4 Starting QMF . . . . . . . . . . . . 5 Starting from the QMF home panel . . . 5 Ending a QMF session . . . . . . . . 6 Issuing QMF commands . . . . . . . . 7 Entering a command on the command line 7 Entering commands using a function key . 7 Entering commands on the command prompt panel . . . . . . . . . . . 7 Retrieving a command . . . . . . . . 7 Setting up and changing your QMF user profile . . . . . . . . . . . . . . 8 Saving and retrieving objects in the database . 9 Saving a QUERY, FORM, or PROC object 10 Saving a profile . . . . . . . . . . 11 Saving a DATA object as a table . . . . 11 Retrieving an object from the database . . 11 Using QMF help . . . . . . . . . . 12 Navigating in QMF help . . . . . . . 12 Getting help after making an error . . . 14 Chapter 2. QMF in three quick lessons . . Lesson One: Finding the data you need . . . Lesson Two: Choosing specific data you want Selecting the columns to display . . . . Selecting the rows to display . . . . . Lesson Three: Customizing a report . . . . Where do you go from here? . . . . . . Chapter 3. Displaying a list of database objects . . . . . . . . . . . . . Displaying a list of database objects using the List key . . . . . . . . . . . . . Displaying a list of database objects using the LIST command . . . . . . . . . . . Choosing specific objects using selection symbols . . . . . . . . . . . . .
Copyright IBM Corp. 1982, 2005
Entering commands on the list of database objects . . . . . . . . . . . . . . Commands you can use on the list of database objects . . . . . . . . . . Using a placeholder on the list of database objects . . . . . . . . . . . . . Correcting errors when you enter an incorrect command . . . . . . . . . Returning to the list from another QMF panel . . . . . . . . . . . . . Chapter 4. Viewing the data in the database using prompted query . . . . Prompted query panels . . . . . . . . Starting prompted query . . . . . . . . Selecting tables and columns . . . . . . Creating a column using expressions . . . . Selecting rows . . . . . . . . . . . Narrowing row selection using multiple row conditions . . . . . . . . . . Sorting the rows in a query . . . . . . Displaying data from more than one table . . Long table names . . . . . . . . . Eliminating duplicate rows from the report Joining multiple tables . . . . . . . Joining multiple columns . . . . . . . Making your query reusable with substitution variables . . . . . . . . . . . . . Running a query and displaying a report . . Saving a new query . . . . . . . . . Canceling a running query . . . . . . . Making changes to a saved query . . . . . Retrieving a query from the database . . Correcting a query that does not successfully run . . . . . . . . . . Adding information to a query . . . . . Changing information in a query . . . . Deleting information from a query . . . Erasing a saved query. . . . . . . . . Viewing the SQL equivalent of a prompted query . . . . . . . . . . . . . . Converting a prompted query to an SQL query . . . . . . . . . . . . . .
34 34 35 36 37
39 39 42 42 45 47 49 51 53 56 57 58 62 63 66 67 68 69 69 70 70 70 71 71 72 72
| | | |
17 17 20 20 21 26 28
29 29 32 33
iii
Chapter 5. Viewing the data in the database using SQL statements . . . . 75 Entering an object name on more than one line in the SQL query window . . . . . . 75 Format of SQL queries . . . . . . . . 76 Starting a SQL query . . . . . . . . . 77 Entering SQL statements and running the query . . . . . . . . . . . . . . 78 Selecting columns and tables . . . . . . 78 Creating a column using expressions . . . . 79 Selecting rows . . . . . . . . . . . 80 Selecting rows that have no data . . . . 80 Selecting rows using specific character values . . . . . . . . . . . . . 81 Selecting rows using conditions . . . . 81 Selecting rows using opposite conditions 81 Narrowing row selection using selection symbols . . . . . . . . . . . . 82 Narrowing row selection using multiple row conditions . . . . . . . . . . 83 Selecting rows If both conditions are true 83 Selecting rows If either condition is true . 83 Grouping row conditions . . . . . . 84 Selecting rows using the IN predicate . . 84 Eliminating duplicate rows . . . . . . 85 Sorting the rows in a query . . . . . . . 85 Adding or deleting lines in a SQL query . . 86 Displaying data from more than one table . . 86 Joining columns in two or more tables . . 86 Merging data from multiple tables into a single column . . . . . . . . . . 88 Creating a subquery to retrieve data from more than one table . . . . . . . . 91 Writing correlation names . . . . . . . 95 Example 1 . . . . . . . . . . . 95 Example 2 . . . . . . . . . . . 96 Example 3 . . . . . . . . . . . 96 Working with a set of values using SQL column functions . . . . . . . . . . 96 Working with single data values using SQL scalar functions . . . . . . . . . . . 98 Converting a value from one data type to another . . . . . . . . . . . . 98 Formatting dates and times . . . . . . 99 Allowing the database requestor to control date and time format . . . . . 101 Isolating the day, month, or year portion of a date . . . . . . . . . . . . 101 Isolating the hour, minute, second, or microsecond portion of a time . . . . 103
Finding the length of a value . . . . . Displaying parts of a value . . . . . Replacing null values in the report with other values. . . . . . . . . . . Nesting SQL functions . . . . . . . . Nesting scalar functions within scalar functions . . . . . . . . . . . . Nesting scalar functions within column functions . . . . . . . . . . . . Nesting column functions within scalar functions . . . . . . . . . . . . Adding and subtracting dates and times . . Rules for date/time addition . . . . . Rules for date/time subtraction . . . . Finding the number of days between two dates . . . . . . . . . . . . . Accounting for months with different numbers of days . . . . . . . . . Using durations to represent date/time intervals . . . . . . . . . . . . Incrementing and decrementing dates by durations . . . . . . . . . . . Subtracting dates . . . . . . . . . Making durations easier to read . . . . Incrementing and decrementing times by durations . . . . . . . . . . . Subtracting times . . . . . . . . . Incrementing and decrementing timestamps by durations . . . . . . Using the concatenation operator . . . . Rules for concatenation . . . . . . . Examples using concatenation. . . . . Making your query reusable with substitution variables . . . . . . . . Saving a new query . . . . . . . . . Chapter 6. Customizing your reports . . QMF form panels . . . . . . . . . . Using the QMF default report format . . . Changing the columns on your report . . . Adding a new column to a report . . . Changing the order in which columns are displayed . . . . . . . . . . . Changing column headings . . . . . Changing column widths and space between columns . . . . . . . . . Changing the alignment of the column heading and the data . . . . . . . Specifying punctuation for the values in a column . . . . . . . . . . . .
104 105 105 106 106 106 107 107 107 107 108 108 109 109 111 112 113 113 114 114 115 115 116 117 119 119 121 122 124 125 126 128 129 130
iv
Specifying the way QMF uses values in a column . . . . . . . . . . . . Adding subtotals to a report . . . . . . Breaking on a value to add subtotals . . Specifying text for the subtotal line on a report . . . . . . . . . . . . . Adding page headings and footings . . . Specifying fixed columns on a report . . . Displaying a representative report before you select data . . . . . . . . . . . Refining page headings and footings . . . Using a global variable in a heading or footing . . . . . . . . . . . . Adding the date, time, and page number to a heading or footing . . . . . . . Changing the alignment of page headings and footings . . . . . . . . . . Adding break segments and text to your report . . . . . . . . . . . . . . Adding break heading and footing text to a report . . . . . . . . . . . . . . Refining the format of your report with detail blocks . . . . . . . . . . . Specifying text to appear at the end of your report . . . . . . . . . . . . . . Calculating values to use in a report . . . Displaying a calculated value on a report Displaying special conditions on your report . . . . . . . . . . . . . Mixing tabular data with reformatted text Showing totals across rows in a report . . . Correcting errors on a form before displaying a report . . . . . . . . . Saving the report form . . . . . . . . Resetting the values on a form panel . . . Printing your report . . . . . . . . . Creating a report containing a limited number of ordered entries . . . . . . . Chapter 7. Displaying your report as a chart . . . . . . . . . . . . . QMF chart formats . . . . . . . . Where QMF report data appears on a chart How QMF spaces data along the X-axis Where data appears on pie charts . . Chart data size limits . . . . . . Displaying report data as a chart. . . . Changing a chart using QMF forms . . . Changing a chart in the ICU . . . . . Changing a chart format . . . . . .
134 135 135 137 139 141 144 145 146 147 147 148 149 154 156 158 159 161 168 169 171 172 173 173 175
Saving a chart format . . . . . . Specifying a new default chart format . Fixing problems with charts . . . . Printing your chart . . . . . . .
. . . .
. . . .
. 177 . 177 178 179 . 179 . 180 . 181 . 183 . 187 . 188
Chapter 8. Creating a procedure to run QMF commands . . . . . . . . . . 191 Creating a linear procedure . . . . . . 192 Guidelines for writing linear procedures . . 193 Creating a procedure with logic . . . . . 194 Guidelines for writing procedures with logic 196 Running a procedure . . . . . . . . 197 Sharing a procedure with other QMF users 198 Creating reusable procedures with substitution variables . . . . . . . . 198 Specifying values for variables on the RUN command . . . . . . . . . 199 Specifying values for variables using global variables . . . . . . . . . 199 Specifying values on the RUN command prompt panel . . . . . . . . . . 199 Using REXX variables in procedures with logic . . . . . . . . . . . . . . 201 Specifying REXX variables using SAY statements and PULL statements . . . . 201 Passing values to a procedure with logic 203 REXX variable and substitution variable differences . . . . . . . . . . . 204 Using REXX error-handling instructions in procedures with logic . . . . . . . . 205 Branching to error-handling subroutines 205 Using messages with the REXX EXIT instruction . . . . . . . . . . . 205 Calling REXX programs from a procedure with logic . . . . . . . . . . . . 207 Calling REXX programs without substitution variables . . . . . . . 207 Calling REXX programs that contain substitution variables . . . . . . . 207 Connecting to a remote location from a procedure . . . . . . . . . . . . 208 Writing a procedure that creates a query . . 209 Writing a template SQL statement . . . 210 Passing variables to the template query 210 Writing a procedure that sets global variables for the template query . . . . 211 Running procedures in batch . . . . . . 212 Writing batch-mode procedures . . . . . 213 Restrictions . . . . . . . . . . . 213 Example for z/OS . . . . . . . . 214
Contents
Using IMPORT/EXPORT commands . Using the EXIT command in QMF procedures . . . . . . . . . . Effect of errors . . . . . . . . . Chapter 9. Making QMF objects reusable Creating, changing, and deleting variables from the global variable list . . . . . Changing a variable value . . . . . . Adding a new variable . . . . . . . Removing a variable . . . . . . . . Using the global variable list and the CASE option . . . . . . . . . . . . Creating, changing, and deleting global variables using commands . . . . . .
. 220 . 220
| | |
Chapter 10. Creating tables . . . . . . 223 Planning for your table . . . . . . . . 223 Creating a table . . . . . . . . . . 223 Saving and appending to a table . . . . 224 Creating a copy of a table . . . . . . 225 Creating a view of a table . . . . . . 225 Creating a synonym for a table or view 226 Creating an alias for a table or view . . 226 Deleting tables, views, synonyms, and aliases . . . . . . . . . . . . . 227 Chapter 11. Maintaining the data in your tables . . . . . . . . . . . . . Using the Table Editor . . . . . . . . Deciding when to save your data . . . Adding rows . . . . . . . . . . Specifying column default and null indicator . . . . . . . . . . . . Redefining the column default and null indicators . . . . . . . . . . . Adding data to long fields . . . . . . Using the previous row as a model . . . Changing rows in a table using the Table Editor . . . . . . . . . . . . . . Selecting the rows to display . . . . . Making changes to the rows in a table Deleting rows from a table using the Table Editor . . . . . . . . . . . Ending a Table Editor session . . . . . . Adding rows to a table using SQL statements . . . . . . . . . . . . Using the QMF DRAW command to add rows . . . . . . . . . . . . . Writing your own query to add rows . .
Changing rows in a table using SQL statements . . . . . . . . . . . . Using the QMF DRAW command to change rows . . . . . . . . . . Writing your own query to change rows Deleting rows from a table using SQL statements . . . . . . . . . . . Copying rows from one table into another using SQL statements . . . . . . . . Adding a new column to a table using SQL statements . . . . . . . . . . . . Working with BLOB, CLOB, and DBCLOB data . . . . . . . . . . . . . . Authorizing access to your tables using SQL statements . . . . . . . . . . . . Giving users access to your tables . . . Allowing users to update specific columns in your tables . . . . . . . Revoking access to a table . . . . . . Entering date and time values by using QMF . . . . . . . . . . . . . .
239 239 240 240 240 241 241 242 242 243 243 243
229 229 230 230 232 233 234 234 235 235 236 237 238 238 238 239
Chapter 12. Exporting and importing objects . . . . . . . . . . . . . 245 Exporting QMF objects . . . . . . . . 245 Exporting QMF objects into TSO . . . . 246 Exporting QMF objects into CMS . . . 246 Exporting QMF objects into CICS . . . 247 Exporting QMF reports for use on the Internet . . . . . . . . . . . . 247 Importing QMF objects . . . . . . . . 247 Importing QMF objects from TSO . . . 248 Importing QMF objects from CMS . . . 248 Importing QMF objects from CICS . . . 249 Chapter 13. Accessing data at a remote database . . . . . . . . . . . . Accessing data at a remote database using Remote Unit of Work . . . . . . . . Connecting to a remote database using the QMF CONNECT command . . . . . . Connecting to a remote database using the DSQSDBNM program parameter. . . . . Viewing the current database location . . . Viewing the current database location on the QMF home panel . . . . . . . Viewing the current database location using a global variable . . . . . . . Viewing the current database location using QMFs governor exit . . . . . .
vi
Reconnecting to a location . . . . . . . Reconnecting if you are entering QMF commands interactively . . . . . . . Reconnecting if you are running QMF commands in a procedure . . . . . . Reconnecting if you are running QMF commands in a batch application . . . What you can expect when you reconnect Accessing data at a remote database using distributed unit of work . . . . . . . Using QMF when connected to a database through remote unit of work . . . . . . Data . . . . . . . . . . . . . QMF objects . . . . . . . . . . Tips and techniques . . . . . . . . . CURRENT SQLID . . . . . . . . Function keys and synonyms . . . . . Procedures, forms, and queries . . . . Commands . . . . . . . . . . . Using the QMF CONNECT command to connect to databases . . . . . . . . . Example 1: Connecting to like databases Example 2: Connecting to unlike databases . . . . . . . . . . . Chapter 14. National Language support in QMF . . . . . . . . . . . . . . Bilingual command support . . . . . . Exporting and importing bilingual forms Defining DBCS data . . . . . . . . . How DBCS data looks when displayed How DBCS data changes the length of names and fields . . . . . . . . . Data types you can use with DBCS data Using DBCS data in QMF . . . . . . . Using DBCS data in commands and procedures . . . . . . . . . . . Using DBCS data in Input fields . . . . Using DBCS data in queries . . . . . Using DBCS in form panels . . . . . Exporting DBCS data . . . . . . . Importing DBCS data . . . . . . . Printing DBCS reports . . . . . . . Chapter 15. Using QMF with other products . . . . . . . . . . Using DXT end user dialogs . . . . Editing objects from outside QMF using ISPF . . . . . . . . . . . . Using ISPF from QMF . . . . . .
255 255 255 255 256 256 256 257 257 257 257 257 258 258 258 258 259
Inserting a QMF report in a document . . Formatting the report . . . . . . Inserting a report . . . . . . . . Information about your editor . . . Restrictions on the document interface Using the QMF document interface . . . Accessing QMF from a VM editor . . Accessing a VM editor from QMF . . Accessing QMF from a z/OS editor . . Accessing a z/OS editor from QMF . .
. . . . . . . . .
280 280 281 283 283 284 284 286 286 287
261 261 262 262 262 263 264 267 267 267 267 268 272 272 272
Chapter 16. Using DB2 stored procedures with QMF . . . . . . . . . . . . Developing the stored procedures to run from QMF . . . . . . . . . . . . Running a CALL statement from the SQL QUERY panel . . . . . . . . . . . Examples of running a stored procedure . . Running a stored procedure that returns no output parameters . . . . . . . Running a stored procedure that contains input and output parameters . . . . . Running a stored procedure that returns a result set . . . . . . . . . . . . Running a stored procedure that returns multiple result sets . . . . . . . . Using QMF forms with result sets returned from stored procedures . . . . . . . . Chapter 17. QMF sample Q.APPLICANT . . . Q.INTERVIEW . . . . Q.ORG . . . . . . Q.PARTS . . . . . . Q.PRODUCTS . . . . Q.PROJECT . . . . . Q.STAFF . . . . . . Q.SUPPLIER . . . .
tables . . . . 297 . . . . . . . 297 . . . . . . . 298 . . . . . . . 299 . . . . . . . 300 . . . . . . . 300 . . . . . . . 301 . . . . . . . 302 . . . . . . . 304
Appendix A. Query-by-example . . . . 307 Displaying the QBE query panel . . . . . 307 Running and saving queries . . . . . . 308 Listing queries . . . . . . . . . . . 308 Drawing example tables . . . . . . . 308 Presenting all the columns of a table . . . 309 Presenting certain columns of a table . . . 310 Presenting certain rows of a table . . . . 311 Presenting rows that contain a certain value . . . . . . . . . . . . . 311 Defining example elements . . . . . 312
Contents
vii
Writing expressions . . . . . . . . Using unnamed columns in an example table . . . . . . . . . . . . . Adding conditions to the example table Adding a CONDITIONS box . . . . . Adding a target table . . . . . . . Eliminating duplicate rows. . . . . . Presenting data from more than one table Writing queries to be shared . . . . . . Model query . . . . . . . . . . Substitution variables . . . . . . . The USER variable . . . . . . . . QMF commands specific to QBE . . . . . CONVERT command . . . . . . . . DELETE command . . . . . . . . . DRAW command . . . . . . . . . . ENLARGE command . . . . . . . . REDUCE command . . . . . . . . . Keyword reference . . . . . . . . . ALL. Display duplicate rows . . . . AND Present on two conditions . . . Two conditions on one row . . . . . AO., AO(n). Sort rows in ascending order . . . . . . . . . . . . . Order by more than one column . . . . AVG. Calculate the average value . . BETWEEN x AND y Present values within a range . . . . . . . . . . COUNT.Count column function finds the number of unique values in a column . COUNT. Count the number of values in a column . . . . . . . . . . . D. Delete rows from a table . . . . DO., DO(n). Sort rows in descending order . . . . . . . . . . . . . Order by more than one column . . . . G. Grouping data . . . . . . . . I. Insert rows into a table . . . . . IN (x,y,z) Present certain values in a set . . . . . . . . . . . . . . LIKE Present on part of a value . . . Like any single character (underscore) Like any number of characters (percent sign) . . . . . . . . . . . . . Data-type dependencies . . . . . . . MAX. Calculate the maximum value MIN. Calculate the minimum value NOT Present on the opposite of the condition . . . . . . . . . . .
312 314 316 317 319 320 321 323 323 324 326 326 326 328 329 330 333 334 335 336 336 336 337 338 339 340 341 342 342 343 344 345 346 347 347 348 348 348 349 350
NULL Present rows with missing entries . . . . . . . . . . . . Unknown values . . . . . . . . . OR Present on either of two conditions P. Present data in a table . . . . . Present all the columns in a table . . . Present some of the columns in a table Present some of the rows in a table . . . Present data from multiple tables . . . Present data dependent on non-presented data . . . . . . . . . . . . . SUM. Calculate the total . . . . . U. Update a row in a table . . . . . UNQ. Eliminate duplicate rows . . . USER Present rows with a value equal to a user identification . . . . . . . +, , *, / Calculated values . . . . =, =, >, < Equality and inequality . . QBE exercises with solutions . . . . . . Exercises . . . . . . . . . . . . Solutions to exercises . . . . . . .
352 353 354 354 354 355 355 356 356 357 358 359 360 360 362 363 363 366
Appendix B. QMF functions that require specific support . . . . . . . . . . 379 Appendix C. QMF functions not available in CICS . . . . . . . . . . . . . 381 Appendix D. The DB2 Performance Option QMF HPO/Manager . QMF HPO/Compiler QMF . . . . . . High . . . . . . 383 . . . . . . 383 . . . . . . 383
Appendix E. Notices . . . . . . . . 385 Trademarks . . . . . . . . . . . . 387 Glossary of Terms and Acronyms . . . 389 399 399 399 399 400 400 400
Bibliography . . . . . . . . . . . CICS publications . . . . . . . . . . COBOL publications . . . . . . . . . DB2 Universal Database for z/OS publications . . . . . . . . . . . . Document Composition Facility (DCF) publications . . . . . . . . . . . . Distributed Relational Database Architecture (DRDA) publications . . . . . . . . . Graphical Data Display Manager (GDDM) publications . . . . . . . . . . . .
viii
HIgh Level Assembler (HLASM) publications . . . . . . . . . . Interactive System Productivity Facility (ISPF) publications . . . . . . . OS/390 publications . . . . . . . OS PL/I publications . . . . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
Contents
ix
xi
xii
NAME SANDERS PERNAL MARENGHI OBRIEN HANES QUIGLEY ROTHMAN JAMES KOONITZ PLOTZ NGAN NAUGHTON
DEPT 20 20 38 38 15 38 15 20 42 42 15 38
JOB MGR SALES MGR SALES MGR SALES SALES CLERK SALES MGR CLERK CLERK
YEARS SALARY 7 8 5 6 10 7 6 7 5 18357.50 18171.25 17506.75 18006.75 20659.80 16808.30 16502.83 13504.60 18001.75 18352.80 12508.20 12954.75
ROW
Columns: v Appear vertically on the screen v Contain data of the same kind v Have names, which appear at the top as headings Rows: v Appear horizontally on the screen v Contain different kinds of data about a single thing v Have no names In QMF, you normally refer to tables by using two-part namesa table identifier and an owner identifier, separated by a period. For example, the exercises in this book use a table named Q.STAFF, where STAFF identifies the table, and Q identifies the owner of that table. For a table named JOHN.ACCOUNTS, ACCOUNTS is the table identifier, and JOHN is the owner identifier. Normally, the person who creates a table is the owner of that table. QMF identifies the owner of the table by using the user ID of the individual who created it. The owner of a table can authorize others to access the information in the table. When referring to your own tables, you can leave out the owner identifier. QMF assumes that you are referring to a table that you own. If your installation supports three-part names, also known as distributed unit of work, you can use a table from a remote location by including a location identifier. See your QMF administrator to find out whether your installation supports three-part names. For example, NEW_YORK.JOHN.ACCOUNTS refers to an ACCOUNTS table owned by JOHN and is located at a remote
QMF objects
QMF stores information as QMF objects. Some objects, such as queries, are actually stored in the database. Other objects, such as reports and charts, exist only in temporary storage while you work on them. There are seven QMF objects, as shown in Table 2.
Table 2. QMF stores information as seven kinds of QMF objects. Object QUERY DATA FORM REPORT CHART PROCEDURE Contains Specifications for selecting the data you want to display Data you select using the query, or data you import from outside QMF Specifications for displaying the data you select Formatted data produced when you run a query to retrieve data Graphic display of formatted report data A series of QMF commands that you can issue with a single RUN command- PROC is the abbreviation for PROCEDURE in QMF Specifications for your QMF user session
PROFILE
Each QMF object in the database has an owner who is usually the person who saved the object in the database. You cannot use an object unless you either
Starting QMF
Each enterprise customer usually has one or more people who perform set-up and maintenance tasks for QMF. These people are called QMF administrators. Your QMF administrator can tell you how to start a QMF session and give you a user identification number or code wordyour QMF user ID. Check with your QMF administrator if you have any questions about getting started with QMF.
****** ** ** ********* ____ ** ** *** *** ** ____ ** ** **** **** ******* ____ ** ** ** ** ** ** ** ____ ** * ** ** **** ** ** ____ ****** ** ** ** ** _______ ** _______________________________________
Enter a command on the command line or press a function key. For help, press the Help function key or enter the command HELP. _________________________________________________________________________________ 1=Help 2=List 3=End 4=Show 5=Chart 6=Query 3 7=Retrieve 8=Edit Table 9=Form 10=Proc 11=Profile 12=Report OK, you may enter a command. 4 COMMAND ===> 5
On the Home panel you see: 1 Authorization ID The user ID you used to log on to QMF You can access only objects, such as queries, forms, or procedures created using this ID and objects to which this ID has been granted access. Any object you create during a session belongs to this user ID.
To enter a command using the minimum unique abbreviation: Enter the previous command as:
DI Q.STAFF
Retrieving a command
To retrieve a command entered on the command line: Enter RETRIEVE or ? to see the last command entered. You can use multiple questions marks. ? retrieves the last command you entered, ?? retrieves the command before that, and so on.
Chapter 1. Getting acquainted with QMF
Getting acquainted with QMF Setting up and changing your QMF user profile
Your QMF user profile tells QMF how you want to display information and process commands, and what printer to use when you print reports or charts. Your user profile is the same as the system default when you first begin to use QMF. You can change the information in your profile to match your specific needs at any time. To display your QMF user profile: v Press the Profile function key. Or you can type the following command: v Enter SHOW PROFILE (or SH PROF) on the command line. The Profile panel displays, as shown in Figure 3.
PROFILE General Operands: CASE ===> UPPER DECIMAL ===> PERIOD CONFIRM ===> YES LANGUAGE ===> PROMPTED MODEL ===> REL Defaults for printing: WIDTH ===> 132 LENGTH ===> 60 PRINTER ===>
UPPER, STRING, or MIXED. PERIOD, COMMA, or FRENCH. YES or NO. SQL, QBE, or PROMPTED. REL or ER.
Number of characters per line. Number of lines per page. Printer to be used for output.
QMF Administration Operands: (Not usually changed) SPACE ===> "DSQDBDEF"."DSQTSDEF" Enter the name of DB2 DATABASE or TABLESPACE in which tables will be saved by the SAVE DATA command. TRACE ===> NONE Enter ALL, NONE or a character string of function-id, trace-level pairs.
2=Save 8=
3=End 9=Form
4=Print 10=
5=Chart 11=
6=Query 12=Report
To change your QMF user profile: Position the cursor on any value in your QMF profile and type over it with the value you want. If you press the End function key, the changes you make to your profile remain in effect only until you end your QMF session.
For more information about changing your profile, see the online help or the DB2 QMF Reference for the SET PROFILE command.
If the object is an existing one that you loaded from the database, QMF saves it using its existing name. If the object is new, QMF prompts you for a name for the object. You can also enter the following command:
SAVE AS objectname
where objectname is the name you want to assign to the object. If the object is an existing one that you loaded from the database, QMF saves it under the new name. The object stored in the database with the old name remains unchanged. If you are on any QMF panel, and you want to save a currently loaded object even though it is not currently displayed, enter:
SAVE object
where object is the type of object you want to save. For example, if you are on the FORM panel, and you want to save the query that is currently loaded in temporary storage, enter SAVE QUERY. If the object is an existing one that you loaded, QMF saves it using its existing name. If the object is new, QMF prompts you for a name for the object.
10
where object is the type of object you want to save, and objectname is the name you want to assign to the object. You can use this command syntax for new or existing objects. If the object is an existing one, QMF saves the currently loaded object with the new name. The object stored in the database with the old name remains unchanged. If you want to save an object and share it with other users, add the SHARE=YES parameter to the SAVE command you are using:
SAVE SAVE SAVE SAVE (SHARE=YES AS objectname (SHARE=YES object (SHARE=YES object AS objectname (SHARE=YES
If you issue a SET GLOBAL command with the value DSQEC_SHARE=1 prior to issuing the SAVE command, you do not need to include the SHARE=YES parameter.
Saving a profile
You can have only one PROFILE object in the database. You can enter either of the following commands on the QMF command line of the PROFILE panel to save your profile:
SAVE SAVE PROFILE
You can also enter SAVE PROFILE on the command line of any QMF panel.
where tablename is the name you want to assign to the new table.
11
where objectname is the name of the specific object. For example, to retrieve an object that is named MYQUERY, enter DISPLAY MYQUERY. You can also enter the following command:
DISPLAY object objectname
where object is the type of object you want to retrieve, and objectname is the name of the specific object. For example, to retrieve and display a procedure that is named MYPROC from the database, enter DISPLAY PROC MYPROC.
12
QMF help varies slightly in how it allows you to access information, depending on what part of QMF you are using. When you press the Help function key: v In most parts of QMF, you see a menu related to the QMF panel you are using. Select the topic or area of information that you want to see. v In Prompted Query or the Table Editor (QMFs mode for adding or changing tables), you immediately see information specifically related to the part of the process you are working on. v While you are creating an SQL query, you see a table of contents from which you can select the information you want to see. v While you are working on form panels, you see information specifically related to the field on which you are working. v In most parts of QMF, additional information related to a QMF error message will be shown. The following functions are available on function keys to help you navigate through QMF help:
13
More Help Shows you a menu of panels that are related to the help panel currently displayed (available for selected topics) Menu Displays either the most recently displayed menu, or the menu for the underlying QMF panel You can return through higher-level menus until you reach the Help main menu by repeatedly pressing the Menu function key. Backward Scrolls backward through the panel Forward Scrolls forward through the panel Keys Cancel Removes one help panel at a time. You can return to the underlying QMF panel by repeatedly pressing the Cancel function key. Switch On help panels for some specific topics, activates the underlying QMF panel- you can enter commands on the command line of the QMF panel while the help panel is still displayed Lists the functions of the keys for the underlying QMF panel
14
+-----------------------------------------------------------------------------+ | Help: Message | | 1 to 8 of 22 You cannot show PRFILE. | | | | Explanation: | | You can show only the panels with these names: | | | | Home Globals Form.Options Form.Break3 | | Query CHARt Form.Final Form.Break4 | | FOrm Form.Main Form.Detail Form.Break5 | +-----------------------------------------------------------------------------+ | F1=Help F3=Exit F4=More Help F6=Switch F7=Backward F8=Forward F9=Keys | | F12=Cancel | +-----------------------------------------------------------------------------+
Figure 5. QMF displays an error message when it can not execute a command.
To scroll through the help panel, press the Forward function key. The help explains that the correct command is SHOW PROFILE. If you want additional information, press the More Help function key. What you see depends on what you were doing before you first called for help. For example, if you were editing a table (in the Table Editor), pressing the More Help function key from the error message help panel would display the help panels associated with different aspects of the Table Editor. This is the same help that displays if you press the Help function key directly from the Table Editor. This list displays directly on top of the previous panel, the error message help panel, or any panel that is displayed from the Table Editor list. You may also be presented with error messages as a result of a query being cancelled by the QMF Governor or the DB2 QMF High Performance Option Governor.
15
16
17
LINE 1 +-------------------------------------+ | Tables | | | | Type one or more table names. | | 1 to 6 of 15 | | ( ) | | ( ) | | ( ) | | ( ) | | ( ) | | ( ) | +-------------------------------------+ | F1=Help F4=List F7=Backward | | F8=Forward F12=Cancel | +-------------------------------------+
Normally, you would type the name of the table you want to use, Q.STAFF on the Tables panel and press Enter. However, for this lesson you will choose the table from a list. In addition, you will limit the list to only the tables that belong to user Q and that begin with the letter S. To do that, you use selection criteria. You will learn more about selection criteria in Chapter 3, Displaying a list of database objects, on page 29. In this case, you will use the characters q.s followed by a % sign. 2. Type q.s% on the first line of the Tables panel. 3. Press the List function key. The Table List panel displays with the names of all the tables that are owned by user Q and begin with S. 4. Move the cursor to STAFF and type x.
18
LINE 1 +-------------------------------------+ | Tables | +-----------------------------------------------+ | | Table List | | | | | | Name Owner | | | 1 to 5 of 5 | | | SALES Q | | | SALG Q | | | SAMTALE Q | | | x STAFF Q | | | SUPPLIER Q | + +-----------------------------------------------+ | | F1=Help F5=Describe F7=Backward F8=Forward | | | F10=Comments F11=Sort F12=Cancel | + +-----------------------------------------------+
5. Press Enter. The Tables panel displays again with Q.STAFF on the first line. 6. Press Enter to select the Q.STAFF table. Q.STAFF is displayed under the Tables heading on the left side of the Prompted Query panel. This is called the echo area. The echo area shows you each part of the query as you create it. The Specify panel is also displayed. Now that you have selected a table, you will use the Specify panel to create the rest of the query.
PROMPTED QUERY Tables: Q.STAFF Columns: ALL *** END *** MODIFIED LINE 1 +------------------------+ | Specify | | | | Select an item. | | | | 2 1. Tables... | | 2. Columns... | | 3. Row Conditions... | | 4. Sort... | | 5. Duplicate Rows... | +------------------------+ | F1=Help F12=Cancel | +------------------------+
19
QMF in three quick lessons Lesson Two: Choosing specific data you want
After you locate the data that you want, you can choose specific items from the table. To do this, you select the columns and rows you want to display.
20
PROMPTED QUERY Tables: Q.STAFF Columns: > ... *** END ***
MODIFIED LINE 1 +-------------------------------------------+ | Columns | | | | Select one or more columns. You can also | | select either an expression or function. | | 1 to 8 of 8 | | Q.STAFF -- all | | ID | | x NAME | | x DEPT | | x JOB | | YEARS | | x SALARY | | x COMM | | | | 1. Expression (A+B, etc.)... | | 2. Summary Functions (SUM, etc.)... | +-------------------------------------------+ | F1=Help F5=Describe F7=Backward | | F8=Forward F12=Cancel | +-------------------------------------------+
3. Press Enter. The columns you selected are displayed in the echo area, and the Specify panel displays again.
21
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Conditions: > If... *** END ***
MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | | | | Begin a condition by selecting one column, | | or by entering an expression or function. | | 1 to 8 of 8 | | * Q.STAFF | | 2. ID | | 3. NAME | | 4. DEPT | | 5. JOB | | 6. YEARS | | 7. SALARY | | 8. COMM | | | | Expression (A+B, etc.)... | +--------------------------------------------+ | F1=Help F5=Describe F7=Backward | | F8=Forward F12=Cancel | +--------------------------------------------+
To create a row condition, select a column on which to base your row condition. You can use any column in the table, even if you are not displaying it on the report. In this example, you want to display only rows where the job is clerk; select the JOB column. 2. Type 5 to select JOB. 3. Press Enter. The Comparison Operators panel displays:
22
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Conditions: > If JOB... *** END ***
MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | +------------------------------------------+ | | Comparison Operators | | | | | | Select a verb and a comparison. | | | | | | Verb. . . . 1 1. Is | | | 2. Is not | | | 1 to 7 of 10 | | | Comparison 1 1. Equal to... | | | 2. Less than... | | | 3. Less or equal to... | | | 4. Greater than... | | | 5. Greater or equal to... | | | 6. Between... | | | 7. Starting with... | + +------------------------------------------+ | | F1=Help F7=Backward F8=Forward | | | F12=Cancel | + +------------------------------------------+
On the Comparison Operators panel, create a row condition in which you only see rows where JOB is equal to clerk. To do this, select 1, Is, and select 1, Equal to. These choices are already selected for you. 4. Press Enter. The Equal To panel displays. 5. Type clerk on the first line of the Equal To panel.
23
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Condit > If JOB I *** END **
MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | +------------------------------------------+ | | Comparison Operators | | +----------------------------------------------------------+ | | | Equal To | | | | | | | | Type one or more values, column names, or expressions. | | | | | | | | . . ( clerk ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | +----------------------------------------------------------+ | | | F1=Help F4=List F5=Show Field F12=Cancel | | + +----------------------------------------------------------+ + | | F1=Help F7=Backward F8=Forward | | | F12=Cancel | + +------------------------------------------+
6. Press Enter. The row condition you created is displayed in the echo area, and the Specify panel displays again. 7. Press the Cancel function key to close the Specify panel. The Prompted Query panel displays. Your query is displayed in the echo area, as shown in Figure 13 on page 25.
24
PROMPTED QUERY Tables: _ Q.STAFF Columns: NAME DEPT JOB SALARY COMM
MODIFIED
LINE
_ _ _ _ _
1=Help 2=Run 3=End 4=Show SQL 5=Change 6=Specify 7=Backward 8=Forward 9=Form 10=Insert 11=Delete 12=Report OK, CANCEL command executed successfully. COMMAND ===> SCROLL ===> PAGE
Figure 13. QMF displays your query on the Prompted Query panel.
8. To run the query and display your data, press the Run function key. The following report displays:
REPORT LINE 1 POS 1 79
NAME DEPT JOB SALARY COMM --------- ------ ----- ---------- ---------JAMES 20 CLERK 13504.60 128.20 NGAN 15 CLERK 12508.20 206.60 NAUGHTON 38 CLERK 12954.75 180.00 YAMAGUCHI 42 CLERK 10505.90 75.60 KERMISCH 15 CLERK 12258.50 110.10 ABRAHAMS 38 CLERK 12009.75 236.50 SNEIDER 20 CLERK 14252.75 126.50 SCOUTTEN 42 CLERK 11508.60 84.20 LUNDQUIST 51 CLERK 13369.80 189.65 WHEELER 51 CLERK 14460.00 513.30 BURKE 66 CLERK 10988.00 55.50 GAFNEY 84 CLERK 13030.50 188.00
1=Help 7=Backward
2= 8=Forward
3=End 9=Form
4=Print 10=Left
5=Chart 11=Right
6=Query 12=
25
WIDTH ----9 6 5 10 10
EDIT ----C L C L2 L2
SEQ --1 2 3 4 5
DEFAULT BREAK TEXT? ===> YES 5=Chart 11=Delete 6=Query 12=Report SCROLL ===> PAGE
1=Help 2=Check 3=End 7=Backward 8=Forward 9= OK, FORM is displayed. COMMAND ===>
4=Show 10=Insert
When you use the default report form, QMF assigns a name, usually the column name from the table, to each column on the report. 2. Move the cursor to the column name NAME and type EMPLOYEE_NAME. Be sure to type an underscore between each word in the column heading. 3. Type DEPT_NUMBER for DEPT. 4. Type COMMISSIONS for COMM.
26
You have finished making your changes to the report format. The FORM.MAIN panel should look like this:
FORM.MAIN MODIFIED 51 INDENT -----2 2 2 2 2
COLUMNS: Total Width of Report Columns: NUM COLUMN HEADING USAGE --- ---------------------------------------- ------1 EMPLOYEE_NAME 2 DEPT_NUMBER 3 JOB 4 SALARY 5 COMMISSIONS PAGE: HEADING FOOTING FINAL: TEXT BREAK1: NEW PAGE FOOTING BREAK2: NEW PAGE FOOTING OPTIONS: OUTLINE?
WIDTH ----9 6 5 10 11
EDIT ----C L C L2 L2
SEQ --1 2 3 4 5
===> TOTAL COMMISSIONS - CLERKS ===> ===> FOR BREAK? ===> NO ===> FOR BREAK? ===> NO ===> ===> YES DEFAULT BREAK TEXT? ===> YES 4=Show 10=Insert 5=Chart 11=Delete 6=Query 12=Report SCROLL ===> PAGE
1=Help 2=Check 3=End 7=Backward 8=Forward 9= OK, cursor positioned. COMMAND ===>
Figure 16. The FORM.MAIN panel shows the changes you want.
27
REPORT
POS 1
79
EMPLOYEE DEPT NAME NUMBER JOB SALARY COMMISSION --------- ------ ----- ---------- ----------JAMES 20 CLERK 13504.60 128.20 NGAN 15 CLERK 12508.20 206.60 NAUGHTON 38 CLERK 12954.75 180.00 YAMAGUCHI 42 CLERK 10505.90 75.60 KERMISCH 15 CLERK 12258.50 110.10 ABRAHAMS 38 CLERK 12009.75 236.50 SNEIDER 20 CLERK 14252.75 126.50 SCOUTTEN 42 CLERK 11508.60 84.20 LUNDQUIST 51 CLERK 13369.80 189.65 WHEELER 51 CLERK 14460.00 513.30 BURKE 66 CLERK 10988.00 55.50 GAFNEY 84 CLERK 13030.50 188.00 1=Help 2= 3=End 4=Print 7=Backward 8=Forward 9=Form 10=Left OK, REPORT is displayed.
5=Chart 11=Right
6=Query 12=
8. Press the End function key to return to the QMF Home panel.
28
on the QMF command line and press the List function key. You will see a list that is similar to the one shown in Figure 18 on page 30.
29
+----------------------------------------------------------------------------+ | Query List | | | | --------Dates-------| | Action Name Owner Modified Last Used | | 1 to 2 of 2 | | MYQUERY USERID 1997-04-24 1997-04-24 | | MYQUERY2 USERID 1997-05-01 1997-05-01 | +----------------------------------------------------------------------------+ | F1=Help F4=Command F5=Describe F6=Refresh F7=Backward F8=Forward | | F9=Clear F10=Comments F11=Sort F12=Cancel | +----------------------------------------------------------------------------+
The name of the list depends on the type of objects displayed. This list is called a Query List because it contains only queries. A list containing more than one type of object is called an Object List. You can type QMF commands in the Action area. Press the Comments function key to see a descriptive comment line for each object on the list. Press the Describe function key if the comment for that object is too long to display on the screen, or if you need more detailed information about an object. Press the Cancel function key to remove the list. You cannot list REPORT or CHART objects, because they are not saved in the database; only the queries, or data and forms to produce them, are saved. You can display a list of database objects from a command prompt panel for any field with a + sign next to it. To display a list of database objects from a command prompt panel: 1. Move the cursor to the field with the + sign after it. For example, the Name field on the RUN Command Prompt panel has a + sign next to it; you can display a list of object names for this command. To see the RUN Command Prompt panel, on the QMF command line, enter:
RUN ?
30
+-----------------------------------------------------------------------------+ | RUN Command Prompt | | 1 to 8 of 8 | | Type ( ) | | | | Name ( ) + | | To run an object from temporary storage, enter its type: | | QUERY or PROC. | | | | To run an object from the database, enter its name (and | | optionally its type). Type can be QUERY or PROC. | +-----------------------------------------------------------------------------+ | F1=Help F3=End F4=List F7=Backward F8=Forward | +-----------------------------------------------------------------------------+ Connected to * STLVM27_SQLDS_Q1 _______ Type command on command line or use PF keys. For help, press PF1 or type HELP. ______________________________________________________________________________
Figure 19. You can list objects from the RUN Command Prompt panel.
You can also type information in the entry fields to choose the type of objects listed or to limit the objects that are shown by owner. For example, you can type QUERY in the Type field to see only query objects. 2. Press the List function key. The list displayed shows only the objects that are valid for the command
+-----------------------------------------------------------------------------+ | RUN Command Prompt | | +-----------------------------------------------+ | | Type ( query | Query List | | | | | | | Name ( all | Name Owner | | | To run an object fro | 1 to 10 of 826 | | | QUERY or PROC. | 1. QUERY1 USERID1 | | | | 2. QUERY2 USERID1 | | | To run an object fro | 3. MYQUERY USERID2 | | | optionally its type) | 4. MYQUERY2 USERID2 | | +-------------------------- | 5. MYQUERY3 USERID2 | + | F1=Help F3=End F4=List | 6. MYQUERY4 USERID2 | | +-------------------------- | 7. SALESQY USERID2 | + Connected to | 8. SALESQY2 USERID2 | STLVM27_SQLDS_Q1 | 9. REPORTQY USERID3 | | 10. REPORT2 USERID3 | Type command on command lin +-----------------------------------------------+ ___________________________ | F1=Help F5=Describe F7=Backward F8=Forward | | F10=Comments F11=Sort F12=Cancel | +-----------------------------------------------+
you are issuing. For example, the valid objects for the RUN command are QUERY and PROC, so only those objects are displayed on the list. To select an object from the list, enter its number.
31
32
LIST objecttype (LOCATION=location If you are connected to a DB2 database that supports three-part names, you can display a list of tables and views at a remote location. For example, type LIST TABLES (LOCATION=NEWYORK to display a list of all tables in a database at the New York location. If your database does not support distributed unit of work, but does support remote unit of work, you can use the CONNECT command to connect to a remote database. Then, you can issue the LIST command to see tables and other QMF objects stored in the remote database. For information on connecting to a database in another location, see Chapter 13, Accessing data at a remote database, on page 251.
33
Displaying a list of database objects Entering commands on the list of database objects
You can enter QMF commands and parameters in the Action area of the List panel for any object in the list, as shown in Figure 21. The command performs an action for that specific object. Be careful to keep the entries in the list aligned. For example, if you press the Backspace key to correct a typing error, the entire line may shift to the left. Enter another space to keep the entries aligned in columns, or you will get an error message when you issue the command. If the command you are entering is longer than the Action area, you can continue typing the command across the entire width of the list panel.
+----------------------------------------------------------------------------+ | Object List | | | | --------Dates-------| | Action Name Owner Type Modified Last Used | | 1 to 5 of 5 | | ________ PN12345 CLERK1 QUERY 1994-04-14 1994-04-14 | | ________ INVENTRY CLERK1 QUERY 1994-04-14 1994-04-14 | | EXPORT / TO MONTHLY SALESFIGMGR1234 QUERY 1994-03-21 1994-07-07 | | ________ MGRS SMITH QUERY 1994-03-21 1994-07-07 | | ________ PANID SYSADMIN PROC 1994-03-14 1994-07-11 | +----------------------------------------------------------------------------+ | F1=Help F4=Command F5=Describe F6=Refresh F7=Backward F8=Forward | | F9=Clear F10=Comments F11=Sort F12=Cancel | +----------------------------------------------------------------------------+
Figure 21. You can enter commands directly on the Object list.
You can enter more than one command on the list. QMF runs commands by starting at the top of the list and moving to the bottom. Type an equal sign (=) to repeat a command for more than one object. Press the Clear function key to erase all the commands you typed on the list.
34
EXPORT Export QMF objects that are stored in the database directly from the database into a file (CMS), data set (TSO and CICS- z/OS), or queue name (CICS) IMPORT Import QMF objects directly into the database from a file (CMS), data set (TSO and CICS- OS/390), or data queue name (CICS) LAYOUT Display the format of a report that is produced from a given form without using any data You can use LAYOUT only with form objects, and only in an environment in which both REXX and ISPF are available. PRINT Print a database object RUN Run a query or procedure that is stored in the database
SAVE Replace the object in the database with the object currently in temporary storage- for example, if you enter:
SAVE QUERY AS
next to a query on the database object list, QMF replaces that query in the database with the query currently in temporary storage
35
where owner.tablename is the owner and name of the table listed. You can also use /T if you just want to specify the object type, or /N if you just want to specify the owner and name. The /T and /N placeholders are especially useful if you are issuing a command to run a user-written application that requires just the object type or just the object owner and name. If you are displaying a list from a remote location, the placeholder symbols (/ and /N) include the location with the owner and name. When using a list placeholder, there must be a blank space before and after the placeholder token (( / , /N , /T ) in order to be recognized as a list placeholder. Otherwise it will be considered a pathname. You can also display the prompt panel for a command with the object type and the object owner and name filled in. To do this, type the command followed by the / placeholder and a question mark. For example, to display the RUN Command Prompt panel for the DEPTQUERY object, enter RUN / ? in the Action area next to the object. The RUN QUERY Command Prompt panels display. The first panel already has the object name and owner filled in. The next panel requests a form name to use in formatting the data from the query.
36
Displaying a list of database objects Returning to the list from another QMF panel
When you issue commands from the list, another panel displays. For example, if you issue the RUN command for a query, QMF displays a report panel. If you issue the EDIT command for a table, QMF displays a Table Editor panel. To return to the database object list from any panel, press the End function key on that panel.
37
38
39
MODIFIED LINE 1 +-------------------------+ | 4 Specify | | | | Select an item. | | | | 3 1. Tables... | | 2. Columns... | | 3. Row Conditions... | | 4. Sort... | | 5. Duplicate Rows... | +-------------------------+ | F1=Help F12=Cancel | +-------------------------+
1 2 3
The name of the main panel. When you are using Prompted Query, this always says PROMPTED QUERY. The echo area. All of the information that you specify in dialog panels is shown in there. This area shows whether the screen you are looking at was changed in some way. If you have not made any changes, the word MODIFIED does not appear. The panel shows a line number that indicates the first line of the query that appears on the panel. When you scroll forward, the line number changes. The Specify panel is a dialog panel. Use dialog panels to specify different kinds of information. This field shows instructions that tell you what kind of information you can specify on this dialog panel, and how you can specify it. This is the area where you specify your choice. Different types of dialog panels have different ways to specify items. This dialog panel shows that your next item is 3. Row Conditions. This field shows the list of items you can choose from. You sometimes have to scroll forward to see all of the items on a list. This field shows the active function keys. Use the function keys to issue certain commands, such as scrolling or getting help.
4 5 6
7 8
40
Figure 23 shows the main Prompted Query panel after the query is built.
PROMPTED QUERY 1 Tables: Q.STAFF Columns: NAME DEPT SALARY+COMM Row Conditions: If JOB Is Equal To CLERK Sort: Ascending by DEPT *** END *** 5 QMFUSER.MYQUERY 2 3 MODIFIED LINE 1
1=Help 2=Run 3=End 4=Show SQL 5= 7=Backward 8=Forward 9=Form 10=Insert 11=Delete OK, CANCEL command executed successfully. COMMAND ===> 7 SCROLL ===> PAGE
6=Specify 12=Report 8
1 2
The name of the panel The name of a saved query If you saved a prompted query in the database, it has a two-part name: the user identification of the person who saved the query, and the name you gave the query when you saved it, separated by a period.
3 4 5
This shows that the panel was changed This is the echo area- it currently shows the completed query that was built using the dialog panels The word END means that there is no more information to look at- if END does not appear, you can scroll forward to look at the rest of your query This field shows the active function keys QMF assigns commonly-used commands to function keys. Instead of typing a command, you can just press the numbered function key
41
Rules for using Prompted Query: Here are some general rules for using Prompted Query: v Your QMF profile must have the language operand set to PROMPTED; otherwise, each time you start a query, you must enter RESET QUERY (LANGUAGE=PROMPTED. v You must type all entered data in uppercase, unless you set the CASE operand in your QMF profile to UPPER. v When entering data, if a character string contains a special character, you must enclose the character string in quotation marks. For a list of special characters, see DB2 QMF Reference. v You must put quotes around all graphic data that you enter. v The name you give your query cannot be longer than 18 characters.
each time you use the RESET command. The Prompted Query panel with the Tables panel displays.
42
LINE 1 +-------------------------------------+ | Tables | +-----------------------------------------------+ | | Table List | | | | | | Name Owner | | | 1 to 5 of 5 | | | SALES Q | | | SALG Q | | | SAMTALE Q | | | STAFF Q | | | SUPPLIER Q | + +-----------------------------------------------+ | | F1=Help F5=Describe F7=Backward F8=Forward | | | F10=Comments F11=Sort F12=Cancel | + +-----------------------------------------------+
You can press the Comments function key to see a descriptive comment for each object in the list. Press the Describe function key to see more detailed information about an object. Press the Sort function key to sort by name, type, or date. Press the Cancel function key to remove the list. Choice 2, Columns, is already selected for you on the Specify panel if you have selected only one table. That is because selecting columns is usually the next step in creating a query. If you remove the 2, Prompted Query selects all columns. If you look in the echo area, you can see that the word ALL appears directly under the Columns heading. 2. Press Enter. The Columns panel displays.
43
PROMPTED QUERY Tables: Q.STAFF Columns: > ... *** END ***
MODIFIED LINE 1 +-------------------------------------------+ | Columns | | | | Select one or more columns. You can also | | select either an expression or function. | | 1 to 8 of 8 | | Q.STAFF -- all | | ID | | NAME | | DEPT | | JOB | | "YEARS" | | SALARY | | COMM | | | | 1. Expression (A+B, etc.)... | | 2. Summary Functions (SUM, etc.)... | +-------------------------------------------+ | F1=Help F5=Describe F7=Backward | | F8=Forward F12=Cancel | +-------------------------------------------+
3. Choose the columns you want displayed in your report by typing any character in the space before the column name. Use the Tab key to move past columns you do not want. Press the Forward or Backward function keys to display additional columns. If you want to see information about the columns before you select them, tab to the column name and press the Describe function key. The Column Description panel displays. 4. Press Enter. The columns you select are shown in the echo area, and the Specify dialog panel displays, with choice 3, Row Conditions.
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM *** END ***
MODIFIED LINE 1 +------------------------+ | Specify | | | | Select an item. | | | | 3 1. Tables... | | 2. Columns... | | 3. Row Conditions... | | 4. Sort... | | 5. Duplicate Rows... | +------------------------+ | F1=Help F12=Cancel | +------------------------+
44
Viewing the data using prompted query Creating a column using expressions
You can create a column in your report by defining an expression. An expression adds, subtracts, multiplies, or divides the values in two or more columns and places the results in a new column. For example, you can create a total earnings column that is the sum of each employees salary and commission. To create a column: 1. Select the table, either by typing the name on the Tables panel or by selecting the table from the Table List. 2. Select the columns from the Columns panel by typing any character beside each one. 3. At the bottom of the Columns panel, select choice 1, Expression (A+B, etc.). 4. Press Enter. The Expression panel displays.
PROMPTED QUERY Tables: Q.STAF Columns: NAME DEPT SALARY COMM *** END MODIFIED LINE 1 +-------------------------------------------+ | Columns | +--------------------------------------------------------------+ | | Expression | | | | | | Type an expression. You can use the following arithmetic | | | operators: add(+), subtract(-), multiply(*) and divide(/). | | | | | | ( salary + comm ) | | | ( ) | | | ( ) | | | ( ) | | | ( ) | | +--------------------------------------------------------------+ | | F1=Help F4=List F12=Cancel | | +--------------------------------------------------------------+ | | 2. Summary Functions (SUM, etc.)... | +-------------------------------------------+ | F1=Help F5=Describe F7=Backward | | F8=Forward F12=Cancel | +-------------------------------------------+
You can create more complex expressions. For more information, press the Help function key on the Expressions panel. You can also press the List function key to see columns that you can use in your expression.
Chapter 4. Viewing the data in the database using prompted query
45
Figure 28. The new column SALARY+COMM appears in the echo area.
You can also create columns that summarize a group of rows. With QMFs summary functions, you can calculate: v Sum v Average v Minimum v Maximum v Count rows To 1. 2. 3. specify a summary function: On the Columns panel, select choice 2, Summary Functions (SUM, etc.). Press Enter. The Summary Functions panel displays. Select the functions you want to perform by typing a character in the space before the items. The Summary Function Items panel displays for any item you select except COUNT. The COUNT function does not need a column on which to act. In the echo area, COUNT is automatically assigned an asterisk, which indicates that it returns a count of the number of rows for each group. 4. Select the column on which you want the summary function to act. 5. Press Enter. QMF displays an error message if your expression is over 255 characters after the database processes it. If you see this message, return to the panel and specify your summary function so that the expression is less than or equal to 255 characters.
46
Selecting rows
You can select specific rows to display on your report. Selecting rows limits, or creates a subset of, the data in a table. You select rows by creating a row condition. To select rows: 1. On the Specify panel, select choice 3, Row Conditions. The Row Conditions panel displays.
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Conditions: > If... *** END *** MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | | | | Begin a condition by selecting one column, | | or by entering an expression or function. | | 1 to 8 of 8 | | * Q.STAFF | | 2. ID | | 3. NAME | | 4. DEPT | | 5. JOB | | 6. YEARS | | 7. SALARY | | 8. COMM | | | | Expression (A+B, etc.)... | +--------------------------------------------+ | F1=Help F5=Describe F7=Backward | | F8=Forward F12=Cancel | +--------------------------------------------+
To create a row condition, select a column that contains data from which you want to choose a limited selection. For example, you might want to see only the employees who are clerks. To do this, you select the rows where the value in the JOB column is CLERK. You can use any column in the table, even if you do not display it in the final report. 2. Enter the number of the column you want. The Comparison Operators panel displays.
47
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Conditions: > If JOB... *** END ***
MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | +------------------------------------------+ | | Comparison Operators | | | | | | Select a verb and a comparison. | | | | | | Verb. . . . 1 1. Is | | | 2. Is not | | | 1 to 7 of 10 | | | Comparison 1 1. Equal to... | | | 2. Less than... | | | 3. Less or equal to... | | | 4. Greater than... | | | 5. Greater or equal to... | | | 6. Between... | | | 7. Starting with... | + +------------------------------------------+ | | F1=Help F7=Backward F8=Forward | | | F12=Cancel | + +------------------------------------------+
On the Comparison Operators panel, you complete the row condition by selecting the specific values you want to see from the column you previously selected. In this example, you want to select only rows where JOB is equal to clerk. Select the verb and comparison operator that define the relationship between the column and the values you want to see on your report. For this example, you need the verb, Is, and comparison operator, Equal to, which are already selected. 3. Enter the number of the verb or comparison operator you want. You can scroll forward through the list of comparisons to find the one you want. 4. If the comparison operator you choose requires more information, a panel displays for you to enter a value with which to select the rows. In this example, the Equal To panel displays. You can specify more than one value on this panel. Enter the values on separate lines. If a character string contains a special character, such as a hyphen (-), enclose the character string in quotation marks. For example, if you are looking for an employee with a hyphenated name, such as Smith-Wiggins, type the name on the Equal To panel with single quotation marks around it:
Smith-Wiggins
Entering it this way ensures that the database will not interpret the hyphen as a minus sign, subtracting Wiggins from Smith. For a list of special characters, see DB2 QMF Reference.
48
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Condit > If JOB I *** END **
MODIFIED LINE 1 +--------------------------------------------+ | Row Conditions | +------------------------------------------+ | | Comparison Operators | | +----------------------------------------------------------+ | | | Equal To | | | | | | | | Type one or more values, column names, or expressions. | | | | | | | | . . ( clerk ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | | Or. . ( ) | | | +----------------------------------------------------------+ | | | F1=Help F4=List F5=Show Field F12=Cancel | | + +----------------------------------------------------------+ + | | F1=Help F7=Backward F8=Forward | | | F12=Cancel | + +------------------------------------------+
The row condition you created is displayed in the echo area, and the Specify panel displays. Notice that in the echo area, Prompted Query has put single quotations around CLERK because it consists of character data.
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM Row Conditions: If JOB Is Equal To CLERK *** END *** MODIFIED LINE 1 +------------------------+ | Specify | | | | Select an item. | | | | 1. Tables... | | 2. Columns... | | 3. Row Conditions... | | 4. Sort... | | 5. Duplicate Rows... | +------------------------+ | F1=Help F12=Cancel | +------------------------+
49
7. On the Row Conditions panel, enter the column on which you want to base your second row condition. For this example, select the choice Expression (A+B, etc.) at the bottom of the Row Conditions panel to
50
Figure 34. The query shows both row conditions you created.
Repeat these steps to create more row conditions. You can create as many row conditions as you need to select the data you want.
51
PROMPTED QUERY
MODIFIED LINE +--------------------------------------+ Tables: | Sort | Q.STAFF | | | Select the order for sorting and the | Columns: | column you want to sort. | NAME | | DEPT | Order... | SALARY | 1 1. Ascending (A-Z, 0-9) | COMM | 2. Descending (9-0, Z-A) | SALARY+COMM | 1 to 5 of 5 | | Columns... | Row Conditions: | 1. SALARY+COMM | If COMM Is Not NULL | 2. NAME | And SALARY+COMM Is Greater Than | 3. DEPT | | 4. SALARY | Sort: | 5. COMM | > ... +--------------------------------------+ | F1=Help F7=Backward F8=Forward | +--------------------------------------+
USERID.MYQUERY
2. Leave 1 selected if you want to sort the rows in ascending order, or type 2 to sort the rows in descending order. 3. Type the number of the column that contains the data you want to sort. 4. Press Enter. The sort order you specified is displayed in the echo area, and the Specify panel displays. Repeat these steps if you want to sort on other columns. For example, in this query, in addition to sorting by department number, you might also want to sort by name within department. QMF displays the sort order you selected, as shown in Figure 36 on page 53.
52
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT SALARY COMM SALARY+COMM
MODIFIED
LINE
_ _ _ _ _
_ _
Row Conditions: If COMM Is Not NULL And SALARY+COMM Is Greater Than 17000 Sort: Ascending by DEPT Ascending by NAME
_ _
1=Help 2=Run 3=End 4=Show SQL 5=Change 6=Specify 7=Backward 8=Forward 9=Form 10=Insert 11=Delete 12=Report OK, CANCEL command executed successfully. COMMAND ===> SCROLL ===> PAGE
Figure 36. QMF displays the order in which rows will be sorted.
QMF displays the report in Figure 37 when you run this query. The rows are first sorted by department number, and then by employee name within each department.
NAME DEPT SALARY COMM EXPRESSION 1 --------- ------ ---------- ---------- -----------ROTHMAN 15 16502.83 1152.00 17654.83 PERNAL 20 18171.25 612.45 18783.70 OBRIEN 38 18006.00 846.55 18852.55 QUIGLEY 38 16808.30 650.25 17458.55 KOONITZ 42 18001.75 1386.70 19388.45 SMITH 51 17654.50 992.80 18647.30 WILLIAMS 51 19456.50 637.65 20094.15 GONZALES 66 16858.20 844.00 17702.20 GRAHAM 66 21000.00 200.30 21200.30 WILSON 66 18674.50 811.50 19486.00 EDWARDS 84 17844.00 1285.00 19129.00
Figure 37. The report is sorted by department number and employee name.
53
2. Select the column you want from the first table. For this example, type 3 to select the DEPT column from the Q.STAFF table. 3. Select the column you want from the second table. For this example, type 1 to select the DEPTNUMB column from the Q.ORG table.
54
Figure 39. QMF displays the names of the tables you selected to join.
5. Press Enter to select choice 2, Columns. The Columns panel displays with the names of the columns from all the tables you selected. 6. Enter x beside each column you want to display on the report. For this example, select the DEPTNAME column and the DIVISION column. The columns you select to display on the report appear in the echo area. The Specify panel displays, with choice 3, Row Conditions. 7. To get the total salary for each department, use QMFs summary functions. On the Specify panel, select choice 2, Columns. The Columns panel displays. 8. Select choice 2, Summary Functions (SUM, etc.) at the bottom of the panel. The Summary Functions panel displays. 9. Select the summary function. For this example, select Sum of. The Summary Function Items panel displays. 10. Select the column you want the summary function to act on. For this example, select the SALARY column. 11. To finish the query, sort the rows by department name and division. On the Specify panel, select choice 4, Sort. The Sort panel displays. 12. For this example, select Ascending and the DIVISION column. Repeat these steps to sort the DEPTNAME column in ascending order.
55
PROMPTED QUERY Tables: Q.STAFF(A) Q.ORG(B) Join Tables: A.DEPT And B.DEPTNUMB Columns: DEPTNAME DIVISION SUM (SALARY) Sort: Ascending by DIVISION Ascending by DEPTNAME *** END ***
MODIFIED LINE
| | | | | | | | | | | | | || | | |
13. Press the Run function key to see the final report, showing the total salary data for each department within each division.
DEPTNAME -------------HEAD OFFICE MID ATLANTIC NEW ENGLAND SOUTH ATLANTIC GREAT LAKES PLAINS MOUNTAIN PACIFIC DIVISION SUM(SALARY) ---------- ---------------------------------CORPORATE 83463.45 EASTERN 64286.10 EASTERN 61929.33 EASTERN 77285.55 MIDWEST 58369.05 MIDWEST 86090.80 WESTERN 66147.00 WESTERN 86076.20
Figure 41. The report shows salary data for departments within divisions.
56
DXYEQPJOTA
Join Tables
Select two tables that you want to join; one from each group. Joined Tables ------------1 1. DB2L.LONGAUTHID6789012345678>. LONGTABLENAME45678901234567> Tables -----1 to 3 of 3 * DB2L.LONGAUTHID6789012345678>. LONGTABLENAME45678901234567> 2. LOCATTIONNAME.ANYAUTHORID. ANYTABLENAME 3. LONGTABLENAME4567890123456789> F8=Forward F12=Cancel
F1=Help
F5=Describe
F7=Backward
Figure 43. The report shows duplicate rows for several departments.
To eliminate duplicate rows: 1. On the Specify panel, select Duplicate Rows. The Duplicate Rows panel displays.
57
PROMPTED QUERY Tables: Q.STAFF(A) Q.ORG(B) Join Tables: A.DEPT And B.DEPTNUMB Columns: DEPT DIVISION Row Conditions: If JOB Is Equal To SALES Duplicate Rows: > ... *** END ***
MODIFIED LINE 1 +---------------------------------------+ | Duplicate Rows | | | | Select one of the following. | | | | Keep. . 2 1. Duplicate rows. | | 2. Single copy of each row. | +---------------------------------------+ | F1=Help F12=Cancel | +---------------------------------------+
2. Select Single copy of each row. The Prompted Query panel displays with your query in the echo area. The Specify panel does not display, because eliminating duplicate rows is the last step in creating a prompted query. Press the Specify key to display the Specify panel if you want to work on your query again. When you run the query, QMF displays a report that shows one row for each department, as shown in Figure 45.
DEPT -----15 20 38 42 51 66 84 DIVISION ---------EASTERN EASTERN EASTERN MIDWEST MIDWEST WESTERN WESTERN
Figure 45. The report shows only one row for each department.
58
2. From the Joined Tables heading, select the first table you want to join. For this example, select the Q.SUPPLIER table. 3. From the Tables heading, select the second table you want to join. For this example, select the Q.PARTS table. 4. Press Enter. The Join Columns panel displays.
59
PROMPTED QUERY
MODIFIED LINE 1 +-------------------------------------+ Tables: | Tables | +-----------------------------------------------------------------------------+ | Join Tables | | +----------------------------------------------------------------+ | | Select t | Join Columns | | | | | | | Joined | Select a column from each table. Rows that have equal | | | ------ | values in those columns will be joined. | | | | | | | 1 1. Q.S | Q.SUPPLIER Q.PARTS | | | | 1 to 6 of 7 | | | | 1. ACCTNO 1. SUPPNO | | +--------- | 2. COMPANY 2. PARTNAME | + | F1=Help | 3. STREET 3. PRODUCT | | +--------- | 4. CITY 4. PRODNO | + | 5. STATE 5. PROJNO | | 6. ZIP | +----------------------------------------------------------------+ | F1=Help F5=Describe F7=Backward F8=Forward F12=Cancel | +----------------------------------------------------------------+
| | | | |
5. From the columns that are listed for the first table, select the column on which you want to join the tables. For this example, select ACCTNO. 6. From the columns that are listed for the second table, select the column that contains the same kind of data. For this example, select SUPPNO. 7. Press Enter. You have joined the first two tables. The Join Tables panel displays again. This time, both tables you have joined appear under the heading Joined Tables. You select the last table to join with the other two from the list under the heading Tables. For this example, select Q.PARTS from the list under Joined Tables. Select Q.PROJECT from the list under Tables.
60
PROMPTED QUERY
MODIFIED LINE 1 +-------------------------------------+ Tables: | Tables | +-----------------------------------------------------------------------------+ | Join Tables | | | | Select two tables that you want to join; one from each group. | | | | Joined Tables Tables | | -----------------| | 1 to 3 of 3 | | 2 1. Q.SUPPLIER 3 1. Q.SUPPLIER | | 2. Q.PARTS 2. Q.PARTS | | 3. Q.PROJECT | +-----------------------------------------------------------------------------+ | F1=Help F5=Describe F7=Backward F8=Forward F12=Cancel | +-----------------------------------------------------------------------------+
Figure 48. The Join Tables panel displays the tables you already joined.
The Join Columns panel displays again. 8. Select the columns you want from each table. For this example, select PRODNO from the Q.PARTS table. Select PRODNUM from the Q.PROJECT table. 9. Press Enter.
PROMPTED QUERY MODIFIED LINE 1 +-------------------------------------+ Tables: | Tables | +-----------------------------------------------------------------------------+ | Join Tables | | +----------------------------------------------------------------+ | | Select t | Join Columns | | | | | | | Joined | Select a column from each table. Rows that have equal | | | ------ | values in those columns will be joined. | | | | | | | 1 1. Q.S | Q.PARTS Q.PROJECT | | | 2. Q.P | 1 to 6 of 7 | | | | 4 1. SUPPNO 2 1. PROJNO | | +--------- | 2. PARTNAME 2. PRODNUM | + | F1=Help | 3. PRODUCT 3. DEPT | | +--------- | 4. PRODNO 4. STARTD | + | 5. PROJNO 5. ENDD | | 6. TIMESTAMP | +----------------------------------------------------------------+ | F1=Help F5=Describe F7=Backward F8=Forward F12=Cancel | +----------------------------------------------------------------+
Figure 49. QMF displays columns from the second set of tables.
61
62
PROMPTED QUERY Tables: Q.PARTS(B) Q.PROJECT(C) Join Tables: A.ACCTNO And B.SUPPNO And B.PRODNO And C.PRODNUM And B.PROJNO And C.PROJNO Columns: PARTNAME C.PROJNO STARTD *** END ***
MODIFIED
LINE
_ _
_ _ _
_ _ _
1=Help 2=Run 3=End 4=Show SQL 5=Change 6=Specify 7=Backward 8=Forward 9=Form 10=Insert 11=Delete 12=Report OK, ENTER performed. Please proceed. COMMAND ===> SCROLL ===> PAGE
Figure 50. QMF shows that the two tables are joined at a second column.
63
PROMPTED QUERY Tables: Q.STAFF Columns: ID NAME JOB SALARY Row Conditions: If DEPT Is Equal To &DEPARTMENT;
MODIFIED LINE
Figure 51. This query uses a substitution variable for the DEPT name.
You can enter substitution variables on any Prompted Query panel where you can enter expressions. You can specify values for substitution variables in any of the following ways: v As a part of the RUN command v From the RUN command prompt panel v By setting a global variable To specify a value as part of the RUN command: For example, to specify a value for the &DEPARTMENT variable, on the QMF command line enter:
RUN QUERY (&DEPARTMENT = 38
Enclose the value in parentheses if it contains one of the following special characters: v Blank v v v v Comma Left or right parenthesis Single or double quotation mark Equal sign
For example:
RUN QUERY (&X=(DEPT,NAME,SALARY)
Type the text to specify a variable. You might have to enclose the text with quotes. For example, the following query has two variables. For the first variable, you specify a column name as the value; for the second, you specify text that contains a quotation mark.
SELECT &X FROM Q.STAFF WHERE NAME=&Y
64
To specify a value on the RUN Command Prompt panel: If your query contains a variable, and you do not specify a value for the variable when you type the RUN command, the RUN Command Prompt panel displays. The variables that need values appear on the panel. Type the values for the variables.
RUN Command Prompt -- Values of Variables Your RUN command runs a query or procedure with variables that need values. Fill in a value after the arrow for each variable named below: 1 to 10 of 10 &DEPARTMENT 38__________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________
In DB2 QMF Version 8.1, the RUN command supports long owner and table names. The RUN command prompt panel now allows for the entry of long names for tables and views. The Name entry field is increased from 50 to 280 bytes which will accommodate an object name of the form: location(16).authid(128).object name(128). Below are examples of the new RUN command prompt screen and the RUN QUERY prompt screen:
DXYEPRUN Type Name .... .... .... .... .... RUN Command Prompt 1 to 8 of 8 ( (<---------------- 50 (<-----------------50 (<---------------- 50 (<---------------- 50 (<---------------- 50 (<---------------- 50 To run an object from QUERY or PROC. ) bytes -------------------->)+ bytes -------------------->)+ bytes -------------------->)+ bytes -------------------->)+ bytes -------------------->)+ bytes -------------------->)+ temporary storage, enter ist type:
To run an object from the database, enter its name (and optionally its type). Type can be QUERY or PROC. F1=Help F3=End F4=List F7=Backward F8=Forward
65
DXYEPRU3
1 to 20 of 20 Form (<---------------- 50 bytes -------------------->)+ (<-----------------50 bytes -------------------->)+ (<---------------- 50 bytes -------------------->)+ (<---------------- 50 bytes -------------------->)+ (<---------------- 50 bytes -------------------->)+ (<---------------- 50 bytes -------------------->)+ Enter the name of a specific form to be used in displaying a report. It can be FORM to use the contents of the temporary storage area, or it can be the name of a form in the database. If you omit it, a default form will be created and used. Confirm ( YES ) Display the conirmation panel before completing a query that inserts, updates, deletes rows, or drops objects in the database? YES or NO. Rowlimit ( ) Enter a number for the most rows to return from your query. If you leave this value blank, then all rows are returned. F1=Help F3=End F4=List F7=Backward F8=Forward
To specify values for substitution variables using global variables: You can define global variables with the SET GLOBAL command. A global variable keeps its value until you reset it, or until you end the QMF session. For example, to set a global variable value for the &DEPARTMENT variable, on the QMF command line enter:
SET GLOBAL (DEPARTMENT=38
You can specify up to 10 variable values. Separate the values with either commas or blanks. For more information on defining global variables, see DB2 QMF Reference.
66
3. If you want to make changes to the query, press the Query function key to return to the Prompted Query panel. | Saving a new query You can save your query in the database after you create it. You can run a saved query and display the report again. You can add, delete, or change the information in a saved query. | | | | | | | | | | | | | To save a query: On the QMF command line on the Prompted Query panel, enter:
SAVE
QMF prompts you for the name to assign to the query. You can also enter:
SAVE AS queryname
For example, to save your query in the database and name it MYQUERY, enter:
SAVE AS MYQUERY
To save a query and share it with other users, add the SHARE=YES parameter to the SAVE command you are using as follows:
SAVE (SHARE=YES SAVE AS queryname (SHARE=YES
Chapter 4. Viewing the data in the database using prompted query
67
Canceling a query using the QMF command interrupt To cancel a query using the QMF Command Interrupt: 1. While the Database Status panel displays, press the PA1 key. See your QMF administrator if you need help finding this key on your terminal. The following message displays:
DSQ50465 QMF command interrupted! Clear screen and press ENTER.
2. Press the Clear function key. 3. Press Enter. The QMF Command Interrupt panel displays, as shown in Figure 56 on page 69.
68
DSQ50547 QMF command interrupted! Do one of the following: ==> To continue QMF command, type CONT ==> To cancel QMF command, type CANCEL ==> To enter QMF debug, type DEBUG
4. On the QMF command line, enter CANCEL. QMF cancels the query. Canceling a query by using the QMF governor prompt panel Your installation might have a governor interrupt routine that automatically attempts to cancel a query that takes a long time to run or tries to retrieve too many rows. If a QMF Governor Prompt panel similar to the one in Figure 57 displays while you are trying to run a query, follow the instructions on the panel to cancel the query or continue. If you continue, the QMF governor can still cancel your command.
DSQnnnnn QMF governor prompt: Command has executed for xxxxxxxxx minutes and fetched yyyyyyyy rows of data. ==> To continue QMF command press the ENTER key. ==> To cancel QMF command type CANCEL and then press the ENTER key. ==> To turn off prompting type NONPROMPT then press the ENTER key.
The Prompted Query panel displays with the query you requested from the database.
69
Viewing the data using prompted query Correcting a query that does not successfully run
If you cannot successfully run a query, one or more of the database objects that are specified in the query probably has been updated. For example, a table name has changed, or a column has been deleted from a table since the last time you ran the prompted query. You cannot make the changes to the query from within QMF. You must convert or export the query to change it. To correct the information in the query: Convert the prompted query to a SQL query, display the query, and make the changes. See Converting a prompted query to an SQL query on page 72 for information on converting a prompted query to an SQL query.
70
PROMPTED QUERY USERID.MYQUERY MODIFIED LINE 1 +--------------------------------------------------------------+ Tables: | Change Column | Q.STAFF | | | Type a column name, expression (A+B, etc.), or a summary | Columns: | function (SUM, etc.). You can use the following arithmetic | NAME | operators: add(+), subtract(-), multiply(*), and divide(/). | > ... | | JOB | ( ) | | ( ) | Row Condit | ( ) | If JOB I | ( ) | | ( ) | *** END ** +--------------------------------------------------------------+ | F1=Help F4=List F12=Cancel | +--------------------------------------------------------------+
Figure 58. QMF displays a panel where you specify changes to a query.
2. Enter the changes to the information. The Prompted Query panel displays with the changed information in the echo area.
Only a QMF administrator can erase queries that are saved by others.
71
Viewing the data using prompted query Viewing the SQL equivalent of a prompted query
You might want to see the SQL statements that make up a query you create with Prompted Query. For example, you might want to know if your prompted query is equivalent to another SQL query. When you display the SQL equivalent of a prompted query, you cannot edit, run, or save the query you display. To display the SQL equivalent of a prompted query: 1. Display the prompted query on the Prompted Query panel. 2. Press the Show SQL function key. Or you can: Enter SHOW SQL on the command line. The SQL equivalent of the prompted query displays.
PROMPTED QUERY USERID.MYQUERY LINE 1 +----------------------------------------------------------+ Tables: | SQL | Q.STAFF(A) | | Q.ORG(B) | The following SQL statement is equivalent to your query. | | 1 to 5 of 5 | Join Tables: | SELECT A.DEPT, A.SALARY, B.LOCATION | A.DEPT And B | FROM Q.STAFF A, Q.ORG B | | WHERE ((B.DIVISION = EASTERN) | Columns: | OR (A.DEPT = 84)) | DEPT | AND (A.DEPT = B.DEPTNUMB) | SALARY +----------------------------------------------------------+ LOCATION | F1=Help F7=Backward F8=Forward F12=Cancel | +----------------------------------------------------------+ Row Conditions: If DIVISION Is Equal To EASTERN Or DEPT Is Equal To 84 *** END ***
Figure 59. QMF can display the SQL equivalent of a prompted query.
You will learn more about SQL in Chapter 5, Viewing the data in the database using SQL statements, on page 75.
72
The Convert Confirmation panel displays, if you specified YES for the Confirm option in your QMF user profile.
SQL QUERY USERID.QUERY1 LINE 1 +-------------------------------------------------------------------------+ S | CONVERT Confirmation | | | | WARNING: | | Your CONVERT command will convert your current query and place | | the SQL translation on the SQL query panel. The original query | | cannot be redisplayed unless it has been saved or exported. | | | | Do you want to convert this query? | | 1 1. YES - Convert the query to an SQL query. | | 2. NO - Do not convert the query to an SQL query; do not execute the | | CONVERT command. | +-------------------------------------------------------------------------+ | F1=Help F12=Cancel | +-------------------------------------------------------------------------+
73
74
Entering an object name on more than one line in the SQL query window
The SQL query currently supports the entry of long names within an SQL statement. When an object name extends beyond a single line, delimited identifiers must be used to enclose the object name. A single SQL query line is limited to 79 bytes. The following example shows how to code an SQL statement that contains an object name across multiple lines:
75
You can also write and run SQL queries in a Windows environment by using the DB2 QMF for Windows feature. See Appendix D, The DB2 QMF High Performance Option, on page 383 for more information. When you enter SQL statements on the SQL Query panel, you need to know: v The name of the table from which you want data v The column names in the table v The row conditions you want to specify v The sequence in which you want the data to appear For more information about writing SQL queries, see the SQL reference manuals that come with your database management system.
Figure 62 on page 77 shows a basic SQL query. This query displays the employee names, years of service, and salaries from the Q.STAFF table.
76
SQL QUERY SELECT NAME, YEARS, SALARY FROM Q.STAFF ORDER BY NAME_
MODIFIED
LINE 1
3=End 9=Form
4=Print 10=Insert
6=Draw 12=Report
If you do not want to change your QMF profile, you can enter the following command each time you use the RESET command:
RESET QUERY (LANG=SQL
77
SQL QUERY
MODIFIED
LINE 1
3=End 9=Form
4=Print 10=Insert
6=Draw 12=Report
78
To find column names: If you know the table from which you want to select data, but do not know all the column names, you can use the Draw function key on the SQL Query panel. 1. On the QMF command line, type the name of the table whose columns you want to see. For example, to find the names of the columns in the Q.ORG table, type Q.ORG. 2. Press the Draw function key. QMF displays a query that selects all the columns for the table you specified:
SELECT DEPTNUMB, DEPTNAME, MANAGER, DIVISION , LOCATION FROM Q.ORG
3. Leave the query as is, or change it to select specific rows. To select tables: Type FROM, followed by the name of the table from which you want to select data. For example, to select the Q.ORG table, type:
FROM Q.ORG
If you need to see a list of tables, use the LIST TABLES command. For more information on the LIST TABLES command, see Displaying a list of database objects using the LIST command on page 32.
79
QMF names the calculated column as follows: v EXPRESSION 1 if you are using DB2 for VM or VSE v COL1 if you are using DB2 for z/OS v 1 if you are using DB2 for AIX v 0002 if you are using DB2 for iSeries It names additional defined columns EXPRESSION 2, EXPRESSION 3 (or COL2, COL3, or 2, 3) and so on. If you want to change the column headings, see Changing column headings on page 126. After you define the new column, you can use it just as you would a column you select from a table. For more information on using arithmetic expressions, see DB2 QMF Reference.
Selecting rows
There are times you will not want to view every row in a table. To select specific rows to view, use the WHERE keyword, followed by a condition. If you do not use the WHERE keyword, all the rows in the table are displayed. For example, to select only the rows for employees who work in Department 20, type:
SELECT DEPT, NAME, JOB, COMM FROM Q.STAFF WHERE DEPT = 20
80
The following query selects employees who earn a commission greater than or equal to $1,000.00.
SELECT ID, COMM FROM Q.STAFF WHERE COMM >= 1000
The following query selects employees who earn a commission of at least $170.00, but not more than $220.00.
SELECT ID, COMM FROM Q.STAFF WHERE COMM BETWEEN 170 AND 220
For more information about the BETWEEN keyword, see the SQL reference manual for your database management system.
81
If you specify a NULL, LIKE, IN, or BETWEEN condition, type NOT right before the condition keyword. For example, type:
WHERE YEARS IS NOT NULL
The following query selects employees whose salary is under $16,000.00 and over $22,000.00:
SELECT ID, NAME, SALARY FROM Q.STAFF WHERE SALARY NOT BETWEEN 16000 AND 22000
The following query selects employees whose salary is under $16,000.00 and who earn less than $500.00 in commissions:
SELECT ID, NAME, SALARY, COMM FROM Q.STAFF WHERE NOT SALARY > 16000 AND NOT COMM > 500
This query selects the rows for employees whose names are five characters long and end in ES.
SELECT NAME FROM Q.STAFF WHERE NAME LIKE ___ES
82
You can use the % and _ selection symbols in the same WHERE clause. For example, the following query selects the rows for employees whose names have R as the second letter. From the Q.STAFF sample table, this query selects FRAYE and GRAHAM.
WHERE NAME LIKE _R%
You can use the NOT keyword with selection symbols to specify rows you do not want to select. For example, the following query selects the rows for employees whose names do not begin with G.
WHERE NAME NOT LIKE G%
83
When you run the same query with the parentheses moved:
SELECT NAME, ID, DEPT FROM Q.STAFF WHERE JOB=SALES AND (COMM > 1200 OR YEARS > 10)
84
And Use NOT with the IN statement to specify rows you do not want to select, as in the following example:
WHERE DEPT NOT IN (15, 20, 38)
If you sort rows by more than one column, the first column is ordered first, the second column is ordered within the order of the first column, and so on. This query displays the rows in ascending order by job, and orders the years within job in descending order.
SELECT NAME, JOB, YEARS FROM Q.STAFF WHERE DEPT=84 ORDER BY JOB, YEARS DESC
85
To delete a line: Move the cursor to the line you want to delete, and press the Delete function key.
86
SELECT DIVISION, ID, LOCATION, NAME FROM Q.STAFF, Q.ORG WHERE DIVISION = EASTERN AND JOB=CLERK AND DEPTNUMB = DEPT ORDER BY ID
Figure 64. This SQL query joins the Q.STAFF and Q.ORG tables.
The report in Figure 65 displays when you run the query: If you do not specify a common column when you join two tables, each row
DIVISION ID LOCATION ---------- ------ ------------EASTERN 80 WASHINGTON EASTERN 110 BOSTON EASTERN 120 ATLANTA EASTERN 170 BOSTON EASTERN 180 ATLANTA EASTERN 190 WASHINGTON NAME --------JAMES NGAN NAUGHTON KERMISCH ABRAHAMS SNEIDER
Figure 65. The report shows the data from both tables.
in the first table is joined to each row in the second table. The resulting report might contain duplicate data and might be very large. The columns in the tables you are joining might have the same name. Use one of the following methods to distinguish between columns with the same name: v Add a qualifier to the column name v Specify a correlation name to identify a column with a particular table Distinguishing between column names with qualifiers You can add a qualifier to identical column names to identify the table from which you selected the column.
87
SELECT PROJNO, Q.PRODUCTS.PRODNUM, DEPT, PRODPRICE FROM Q.PROJECT, Q.PRODUCTS WHERE Q.PRODUCTS.PRODNUM < 100 AND Q.PRODUCTS.PRODNUM = Q.PROJECT.PRODNUM
Figure 66. This SQL query selects data from two columns with the same name.
Distinguishing between column names with correlation names Correlation names are used to identify the tables or views from which you selected columns when more than one column has the same name. For example, to distinguish between the PRODNUM column in the Q.PRODUCTS table and the PRODNUM column in the Q.PROJECTS table, specify a correlation name of P for Q.PROJECT and a correlation name of S for Q.PRODUCTS. Use the correlation name as a prefix to the column name wherever you refer to that column. The following query shows examples of using correlation names:
SELECT PROJNO, S.PRODNUM, DEPT, PRODPRICE FROM Q.PROJECT P, Q.PRODUCTS S WHERE S.PRODNUM < 100 AND S.PRODNUM = P.PRODNUM
88
SELECT DEPTNUMB, DEPTNAME, WAITING FOR WORK FROM Q.ORG WHERE DEPTNUMB NOT IN (SELECT DEPT FROM Q.PROJECT) UNION SELECT O.DEPTNUMB, O.DEPTNAME, HAS WORK FROM Q.PROJECT P, Q.ORG O WHERE P.DEPT = O.DEPTNUMB ORDER BY 1
Figure 67. This SQL query merges data from two columns into one.
QMF displays the following report when you run the query, showing the department names and numbers and their status information on the same report.
DEPTNUMB -------10 15 20 38 42 51 66 84 DEPTNAME -------------HEAD OFFICE NEW ENGLAND MID ATLANTIC SOUTH ATLANTIC GREAT LAKES PLAINS PACIFIC MOUNTAIN EXPRESSION 1 ---------------HAS WORK HAS WORK HAS WORK HAS WORK HAS WORK HAS WORK HAS WORK WAITING FOR WORK
Figure 68. The report shows the two new columns merged into one.
You can specify the order in which you want to merge the columns from multiple tables. Specifying order is important when you use UNION and UNION ALL. Use parentheses to indicate which tables columns you want merged first. The conditions inside the parentheses are checked first before the conditions outside the parentheses.
Chapter 5. Viewing the data in the database using SQL statements
89
If you move the parentheses, the same query produces Report B in Figure 69 on page 91:
SELECT ID, NAME, SALARY FROM Q.STAFF WHERE SALARY>12000 UNION ALL (SELECT ID, NAME, SALARY FROM Q.STAFF WHERE DEPT=38 UNION SELECT ID, NAME, SALARY FROM Q.STAFF WHERE JOB=SALES)
90
ID -----10 20 30 40 50 60 70 80 90 100 110 120 140 150 160 170 180 190 210 220 230 240 250 260 270 280 290 300 310 320 340 350
REPORT A NAME SALARY --------- ---------SANDERS 18357.50 PERNAL 18171.25 MARENGHI 17506.75 OBRIEN 18006.00 HANES 20659.80 QUIGLEY 16808.30 ROTHMAN 16502.83 JAMES 13504.60 KOONITZ 18001.75 PLOTZ 18352.80 NGAN 12508.20 NAUGHTON 12954.75 FRAYE 21150.00 WILLIAMS 19456.50 MOLINARE 22959.20 KERMISCH 12258.50 ABRAHAMS 12009.75 SNEIDER 14252.75 LU 20010.00 SMITH 17654.50 LUNDQUIST 13369.80 DANIELS 19260.25 WHEELER 14460.00 JONES 21234.00 LEA 18555.50 WILSON 18674.50 QUILL 19818.00 DAVIS 15454.50 GRAHAM 21000.00 GONZALES 16858.20 EDWARDS 17844.00 GAFNEY 13030.50
ID -----20 30 40 60 70 90 120 150 180 220 280 300 310 320 340 10 20 30 40 50 60 70 80 90 100 110 120 140 150 160 170 180
REPORT B NAME SALARY --------- ---------PERNAL 18171.25 MARENGHI 17506.75 OBRIEN 18006.00 QUIGLEY 16808.30 ROTHMAN 16502.83 KOONITZ 18001.75 NAUGHTON 12954.75 WILLIAMS 19456.50 ABRAHAMS 12009.75 SMITH 17654.50 WILSON 18674.50 DAVIS 15454.50 GRAHAM 21000.00 GONZALES 16858.20 EDWARDS 17844.00 SANDERS 18357.50 PERNAL 18171.25 MARENGHI 17506.75 OBRIEN 18006.00 HANES 20659.80 QUIGLEY 16808.30 ROTHMAN 16502.83 JAMES 13504.60 KOONITZ 18001.75 PLOTZ 18352.80 NGAN 12508.20 NAUGHTON 12954.75 FRAYE 21150.00 WILLIAMS 19456.50 MOLINARE 22959.20 KERMISCH 12258.50 ABRAHAMS 12009.75
Figure 69. The two reports show the differences in merging order.
The first query selects employees whose salaries are greater than $12,000.00 and all employees from Department 38. Then, it eliminates any duplicate entries by selecting only employees who work in sales and are not in Department 38 or making more than $12,000.00 a year. The second query creates duplicate entries because it first selects employees from Department 38 and employees from outside Department 38 who work in sales. Then, it adds employees whose salaries are more than $12,000.00.
91
In the next example, the subquery and main query retrieve data from the same table. The subquery calculates the average salary for all the employees in the Q.STAFF table. Then, the main query selects the salespeople whose salaries are equal to or greater than the average salary.
SELECT ID, NAME, SALARY FROM Q.STAFF WHERE JOB = SALES AND SALARY >= (SELECT AVG(SALARY) FROM Q.STAFF)
Retrieving more than one value with a subquery Usually a subquery selects only one column and returns only one value to the query. However, you can create a subquery that returns a set of values using the ANY or ALL keywords used with the comparison operators =, =, >, >=, <, or <=. In addition, just as you use the IN keyword in place of multiple OR statements in a query, you can also use IN in place of the ANY keyword in a subquery. The query in Figure 70 on page 93 selects any employee who works in the Eastern division. The subquery finds the department numbers in the Eastern division, and then the main query selects the employees who work in any of these departments.
92
SELECT NAME, ID FROM Q.STAFF WHERE DEPT = ANY (SELECT DEPTNUMB FROM Q.ORG WHERE DIVISION=EASTERN)
Figure 70. This SQL query contains a subquery using the ANY keyword.
The query in Figure 71 selects the department with the highest average salary. The subquery finds the average salary for each department, and then the main query selects the department with the highest average salary. Use the ALL keyword for this subquery. The department selected by the query must have an average salary greater than or equal to all the average salaries of the other departments.
SELECT DEPT, AVG(SALARY) FROM Q.STAFF GROUP BY DEPT HAVING AVG(SALARY) >= ALL (SELECT AVG(SALARY) FROM Q.STAFF GROUP BY DEPT)
Figure 71. This SQL query contains a subquery using the ALL keyword.
The query in Figure 72 on page 94 selects all salespeople (and their salaries) who work for managers earning more than $20,000 a year. The subquery finds the managers who earn more than $20,000 a year, and the main query selects the salespeople who work for those managers. Use the IN keyword for this subquery because you need to find values from more than one department.
93
SELECT ID, NAME, SALARY FROM Q.STAFF WHERE JOB = SALES AND DEPT IN (SELECT DISTINCT DEPT FROM Q.STAFF WHERE JOB = MGR AND SALARY > 20000)
Figure 72. This SQL query contains a subquery using the IN keyword.
Checking for rows that satisfy a condition In the previous examples, you learned how to use a subquery to return a value to the query. You can also use a subquery to check for rows that satisfy a certain row condition using a WHERE EXISTS clause. | | | | | The query in Figure 73 selects employees from the Q.STAFF table who have a salary of less than $14,000, and who work in a department where at least one other employee with the same job earns a salary greater than $14,000. The subquery checks for other employees in the department with the same job, but who earn a salary greater than $14,000.
SELECT NAME, DEPT, JOB, SALARY FROM Q.STAFF S WHERE S.SALARY < 14000 AND EXISTS (SELECT * FROM Q.STAFF WHERE S.DEPT=DEPT AND SALARY >14000 AND S.JOB=JOB) ORDER BY S.DEPT
Figure 73. This subquery checks for rows that satisfy a condition.
You can specify NOT IN in a subquery to select information from one table when corresponding information does not exist in the other table. Specifying a correlation name in a subquery You can specify a correlation name in a subquery to evaluate every row that is selected by the query for the condition that is specified in the subquery. The query in Figure 74 on page 95 selects the department, name, and salary of the employees who have the highest salary in their departments. The subquery calculates the maximum salary for each department that is selected by the main query. The correlation name, Y, compares each row that is
94
SELECT DEPT, NAME, SALARY FROM Q.STAFF Y WHERE SALARY = (SELECT MAX (SALARY) FROM Q.STAFF WHERE DEPT = Y.DEPT)
You might need correlation names even without a subquery, as in the following example.
Example 1
This query lists employees whose salaries are greater than their managers salaries, and selects twice from Q.STAFF.
SELECT X.ID, X.NAME, X.SALARY, Y.SALARY FROM Q.STAFF X, Q.STAFF Y WHERE X.DEPT = Y.DEPT AND Y.JOB = MGR AND X.SALARY > Y.SALARY
Selecting twice from Q.STAFF is necessary so that the DEPT of each person can be matched with every other DEPT in the table to discover which employees work for which managers. The WHERE condition selects employees from both tables who are in the same department, and selects employees in the Y version of the table who are managers. Then, it selects employees whose salaries are greater than their managers salaries.
Chapter 5. Viewing the data in the database using SQL statements
95
In this query, the subquery first finds the largest commission within a given location. The main part of the query finds who within that location earned that commission. Because the query names two tables, it includes a correlation name that indicates which table contains the LOCATION column.
Example 3
This query lists employees whose salaries are greater than their managers salaries. Another version of this query that is shown in Example 1 selects twice from Q.STAFF without using a subquery. A query that joins two or more tables will probably run faster than a similar query that uses a subquery.
SELECT ID, NAME, SALARY FROM Q.STAFF EMP WHERE SALARY > (SELECT SALARY FROM Q.STAFF WHERE ID = (SELECT MANAGER FROM Q.ORG WHERE DEPTNUMB = EMP.DEPT))
The report examples in this chapter and the next chapter appear if your current location is DB2. If your current location is DB2 Server for VSE or VM, your reports might look different.
96
MAX
MIN
SUM
COUNT Finds the number of rows that satisfy the search condition, or finds the number of distinct values in a particular column The SELECT clause of the SQL statement in Figure 75 uses the five column functions. The SQL statement produces the report that is shown in Figure 76.
SELECT SUM(SALARY), MIN(SALARY), MAX(SALARY), AVG(SALARY), COUNT(*) FROM Q.STAFF WHERE DEPT = 38
Figure 75. This SQL query uses the QMF column functions.
NUMBER OF TOTAL SMALLEST LARGEST AVERAGE SALARIED SALARY SALARY SALARY SALARY EMPLOYEES ------------ ----------- ----------- ------------------ ----------77285.55 12009.75 18006.00 15457.1100000000 5
Figure 76. The report demonstrates the results of QMF column functions.
In this case, we changed the column headings on the form panel to make them more descriptive. If you use column functions in an SQL statement where there is no GROUP BY clause, every occurrence of a column name must have a column function so the query can return a single row.
97
Viewing data using SQL statements Working with single data values using SQL scalar functions
You can use scalar functions to: v Convert a value from one data type to another v Process date/time values v Manipulate parts of character or graphic strings v Avoid null values For more information on scalar functions, see the SQL reference manual for your database management system. Scalar functions produce a single scalar value for each row that satisfies the search condition in your query. For example, if you replace SUM in the SELECT clause of the SQL statement in Figure 75 on page 97 with the scalar function HEX, five rows are returnedone hexadecimal value for each row satisfying the search condition:
SELECT HEX(SALARY) FROM Q.STAFF WHERE DEPT = 38
SALARY -------1750675C 1800600C 1680830C 1295475C 1200975C
Conversion functions, date/time functions, and string functions are subsets within the set of scalar functions.
98
99
QMF produces this report, where TIME shows the time portions of three timestamps in the Q.PROJECT table: | | | | |
PRODNUM ------10 50 150 TIME -------10.14.44 10.15.01 10.22.23
The TIMESTAMP function returns a timestamp from a value or a pair of values. If only one argument is specified, it must be a timestamp, a string representation of a timestamp, a character string of length 8, or a character string of length 14. If the value is a character string of length 14, it must be in the form yyyymmddhhmmss, where yyyy is the year, mm is the month, dd is the day, hh is the hour, mm is the minute, and ss is the second. If a second optional argument is specified, it must be a time or a string representation of a time, and the first argument must be a date or a string representation of a date. For example, for this statement:
TIMESTAMP (CURRENT DATE, 10.00.00)
QMF produces a timestamp that represents 10 a.m. today. The CHAR function returns a string representation of a date/time value. CHAR changes the value of its argument (a date or time value) to the CHAR data type. The result of CHAR is a fixed-length character string representation of a date/time value in the format that is specified by its optional second argument. If the first argument is a date or a time, the second argument must be USA, ISO, JIS, EUR, or LOCAL. LOCAL refers to an installation default format. If you omit the second argument, the date or time format is ISO. When you run the following SQL statement, with a second argument of USA for CHAR:
SELECT TEMPID, CHAR(INTDATE, USA) FROM Q.INTERVIEW WHERE MANAGER = 140
100
Table 6 and Table 7 show examples of DATE and TIME formats in USA, ISO, JIS, and EUR. In these tables, USA refers to United States of America format, ISO refers to International Standards Organization format, JIS refers to Japanese Industrial Standard format, and EUR refers to European format.
Table 6. DATE formats Date format USA ISO, JIS EUR Table 7. TIME formats Time format USA ISO, EUR JIS Edit code TDMx TDYx TDDx Example 12/15/1998 1998-12-15 15.12.1998
This report shows that the interviews take place on the fifth day of the month:
101
The MONTH function returns the month part of a value. The argument must be a date, timestamp, or a decimal number that is interpreted as a duration of years, months, or days. The following SQL statement produces a report showing on which month of the year an interview occurred:
SELECT MANAGER, DISP, MONTH(INTDATE) FROM Q.INTERVIEW
This report shows the months in which certain managers interviewed prospective employees and the disposition of each interview.
MANAGER ------270 10 140 290 160 50 100 270 160 140 DISP MONTH ------ ----------NOHIRE 2 HIRE 2 HIRE 4 NOHIRE 4 HIRE 3 HIRE 9 HIRE 10 HIRE 2 NOHIRE 3 NOHIRE 9
The YEAR function returns the year part of a value. YEAR works like DAY and MONTH. The argument must be a date, timestamp, or a decimal number that is interpreted as a duration of years, months, or days. When you run the following SQL statement:
SELECT PROJNO, YEAR(ENDD) FROM Q.PROJECT WHERE PRODNUM = 190
This report shows the year of project end dates for a given product. It disregards the day and month.
102
Viewing data using SQL statements Isolating the hour, minute, second, or microsecond portion of a time
The HOUR function returns the hour part of a value. The argument must be a time, timestamp, or a decimal number that is interpreted as a time. When you run the following SQL statement:
SELECT TEMPID, ENDTIME FROM Q.INTERVIEW WHERE TEMPID = 400
ENDTIME shows hours, minutes, and seconds. For example, when you run this SQL statement:
SELECT TEMPID, HOUR(ENDTIME) FROM Q.INTERVIEW WHERE TEMPID = 400
QMF produces this report, which shows only the hour portion of ENDTIME:
ENDING TEMPID HOUR ------ ----------400 15
The MINUTE function returns the minute part of a value. The argument must be a time, timestamp, or a decimal number that is interpreted as a duration of hours, minutes, or seconds. When you run the following SQL statement:
SELECT TEMPID, MINUTE(ENDTIME) FROM Q.INTERVIEW WHERE TEMPID = 400
The SECOND function returns the seconds part of a value. The argument must be a time, timestamp, or a decimal number that is interpreted as a duration of hours, minutes, or seconds. For example, when you run the following SQL statement:
103
The MICROSECOND function returns the microsecond part of a value. The argument can be only a timestamp. For example, when you run the following SQL statement:
SELECT PROJNO, MICROSECOND(TIMESTAMP) FROM Q.PROJECT WHERE PROJNO = 1409
104
Where: v M represents a character string or a graphics string to manipulate v N represents the position of the first character of the desired substring v L represents the length of the substring to select | | | | | | | | | | | || | The following SQL statement selects a column that contains a last name and a column that contains the first initial of the first name. When you run this statement:
SELECT LASTNAME, SUBSTR(FIRSTNAME,1,1) FROM Q.INTERVIEW WHERE MANAGER = 140
When you use VALUE with a second argument of 0 in the SELECT clause of an SQL statement, the null values are replaced with 0.00 because the data type is DECIMAL. For example, when you run this statement:
105
106
107
Because character strings cannot be subtracted, a string representation of a date or time value cannot be subtracted from another string representation of a date or time value. For example, the following expression is not valid:
1998-01-01 - 1997-01-01
However, if you convert one of the strings to a date or time, the expression is valid. For example, the following expression is valid:
DATE(1998-01-01) - 1997-01-01
&DATE supplies the current date. The DAYS function returns an integer representation of a date. The result of DAYS is the number of days since December 31, 0000. (There is no year 0000. This convention ensures that all days in the range of years 0001 to 9999 are included.) The argument can be a date, a timestamp, or a string representation of a date. For example, if you run this statement:
DAYS(0002-01-03)
The result is 368 days. The DAYS function allows you to be more precise in date/time arithmetic. See DB2 QMF Reference for a more detailed explanation.
108
109
The month of the result is the same as the month of the date you are incrementing. The day of the result is the same as that of the date incremented, unless the result is February 29 of a year that is not a leap year. In that case, the day is February 28. If you want to know what the end date of project 1404 (currently slated for 1993-06-30) would be if you finish the project two months ahead of schedule, run this SQL statement using the duration of 2 months:
SELECT ENDD - 2 MONTHS FROM Q.PROJECT WHERE PROJNO = 1404
QMF counts only months (calendar pages) and years (if necessary). The day of the result is the same as the day of the date you are decrementing, unless the result would be an date that is not valid. In that case, the day part of the result is the last day of the month. To find out what the start date of project 1407 would be if the project is started 30 days early, run the following SQL statement using the duration of 30 days:
SELECT STARTD - 30 DAYS FROM Q.PROJECT WHERE PROJNO = 1407
Suppose that you want to know what the end date for project 1407 would be if you delay the project by 2 years and 11 months. For example, if you run this SQL statement:
110
Suppose, rather than increment by the two years and eleven months duration used in the preceding example, you want to decrement by the same duration. You want to know the project end date if the project is finished 2 years and 11 months ahead of schedule. For example, if you run this SQL statement:
SELECT ENDD - 2 YEARS - 11 MONTHS FROM Q.PROJECT WHERE PROJNO = 1407
Subtracting dates
The result of date subtraction is a duration that is expressed in years, months, and days between the two dates. A negative result is possible with date subtraction. Suppose that you want to know how many years, months, and days project 1407 will take to complete. If you run the following SQL statement:
SELECT ENDD - STARTD FROM Q.PROJECT WHERE PROJNO = 1407
The result is a numeric representation of the duration: 2 years, 6 months, and 3 days. You can treat this result like any other numeric value. The duration format for dates is yyyymmdd, where yyyy represents years, mm represents months, and dd represents days. Leading zeros are always truncated in the results.
111
The result is a duration of 130 weeks. Suppose that you would like to know, in terms of years, how many years it takes to complete project 1403. If you run this SQL statement:
SELECT (DAYS(ENDD)-DAYS(STARTD))/365.24 FROM Q.PROJECT WHERE PROJNO=1403
The result of this date subtraction is a duration of 3 years, 3 months, and 27 days. To get results that are easier to read in a report, run the following SQL statement:
SELECT YEAR(ENDD - STARTD), MONTH(ENDD - STARTD), DAY(ENDD - STARTD) FROM Q.PROJECT WHERE PROJNO=1403
112
QMF changes the column headings on the QMF form to make the report more meaningful.
Adding 24 hours to the time 00.00.00 results in 24.00.00. However, adding 24 hours to any other time results in the same time as the time you are incrementing. The next example decrements a time by a duration. To find out what time an interview would end if it ended 1 hour, 20 minutes, and 20 seconds early, use the following SQL statement:
SELECT ENDTIME - 1 HOUR - 20 MINUTES - 20 SECONDS FROM Q.INTERVIEW WHERE TEMPID = 410
Subtracting times
If you subtract two times, the result is a duration that represents the number of hours, minutes, and seconds between the two times. A negative result is possible when subtracting two times. If you want to know how much time an interview for a person with temporary ID 410 took, use this SQL statement:
Chapter 5. Viewing the data in the database using SQL statements
113
The result is a numeric representation of the duration: 1 hour, 18 minutes, and 0 seconds. You can treat this result like any other numeric value. The duration format for time is hhmmss, where hh represents hours, mm represents minutes, and ss represents seconds. QMF always removes leading zeros from the result.
Suppose that you want to know what the timestamp will be for project 1409 if you add a duration of 2 years, 1 month, and 2 hours to the projects existing timestamp. Use the following SQL statement:
SELECT TIMESTAMP + 2 YEARS + 1 MONTH + 2 HOURS FROM Q.PROJECT WHERE PROJNO = 1409
114
There is no space between the last name and the initial, because none was provided for when concatenation was done. This is true because the data types for the columns FIRSTNAME and LASTNAME are VARCHAR. The next example concatenates a substring of the first name with a period and a space, and then with the last name. When you run this SQL statement:
SELECT SUBSTR(FIRSTNAME,1,1)||. ||LASTNAME FROM Q.INTERVIEW WHERE TEMPID = 400
115
Viewing data using SQL statements Making your query reusable with substitution variables
When you specify substitution variables in an SQL query, you can use the same query to retrieve different information by supplying a new value for the variable each time you run the query. The following query selects department data. By using a substitution variable (&DEPARTMENT) for the department number in the row condition, you can specify a different department number each time you run the query.
SELECT ID, NAME, JOB, SALARY FROM Q.STAFF WHERE DEPT=&DEPARTMENT
You can specify values for substitution variables in any of the following ways: v As a part of the RUN command v From the RUN command prompt panel v By setting a global variable To specify a value as part of the RUN command For example, to specify a value for the &DEPARTMENT variable, on the QMF command line, enter:
RUN QUERY (&DEPARTMENT = 38
Enclose the value in parentheses if it contains one of the following special characters: v Blank v Comma v Left or right parenthesis v Single or double quotation mark v Equal sign For example:
RUN QUERY (&X=(DEPT,NAME,SALARY)
To specify text for a variable, just type the text. You might have to enclose the text with quotes, depending on whether it would require quotes if you entered it directly into the query. For example, the following query has two variables. For the first you specify a column name as the value; for the second, you specify text that contains a quotation mark.
SELECT &X FROM Q.STAFF WHERE NAME=&Y
116
To specify a value on the RUN Command Prompt panel: If your query contains a variable, and you do not specify a value for the variable when you type the RUN command, the RUN Command Prompt panel displays. The prompt panel displays the variables that need values. Type the values for the variables.
RUN Command Prompt -- Values of Variables Your RUN command runs a query or procedure with variables that need values. Fill in a value after the arrow for each variable named below: 1 to 10 of 10 &DEPARTMENT 38__________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________
To specify values for substitution variables using global variables: You can define global variables with the SET GLOBAL command. A global variable keeps its value until you reset it, or until you end the QMF session. For example, to set a global variable value for the &DEPARTMENT variable, on the QMF command line, enter:
SET GLOBAL (DEPARTMENT=38
You can specify up to 10 variable values. Separate the values with commas or with blanks. For more information on defining global variables, seeDB2 QMF Reference.
QMF prompts you for the name you want to assign to the query. | | You can also enter the following:
SAVE AS queryname
Chapter 5. Viewing the data in the database using SQL statements
117
| | | | | | | |
To save a query and share it with other users, add the SHARE=YES parameter to the SAVE command you are using as follows:
SAVE (SHARE=YES SAVE AS queryname (SHARE=YES
QMF saves your query in the database. The SQL Query panel displays with the name you gave the query. If you issue a SET GLOBAL command with the value DSQEC_SHARE=1 prior to issuing the SAVE command, the SHARE=YES parameter is not needed. To retrieve a query from the database, enter:
DISPLAY QUERY queryname
118
119
Specify the columnar organization of your report and designate different types of usages Define columns and designate different types of usages for them
FORM.MAIN
FORM.CONDITIONS
FORM.COLUMNS
Specify final text lines and define where they appear in the final text portion of your report
FORM.FINAL
Add a report heading, include a report footing, and align the heading above the report
FORM.PAGE
FORM.CALC
FORM.OPTIONS
FORM.DETAIL
FORM.BREAKn
Set fixed columns in the report and change the reordering option
Figure 77. QMF creates reports from forms you fill in.
Display form panels by using either the SHOW command or the DISPLAY command. For example, to display FORM.MAIN, enter one of the following commands:
SHOW FORM.MAIN DISPLAY FORM.MAIN or or SH F.M DI FORM.MAIN
Then, press the Show function key. You can use the abbreviated form panel name when using the SHOW command. For a complete list of the shortened form panel names, enter:
SHOW ?
120
Figure 78. QMF uses a default report format like this one.
By tailoring the report format, you can use the same data to produce the report in Figure 79.
DIVISION EARNINGS REPORT
DEPT. EMPLOYEE TOTAL NUMBER NAME SALARY COMMISSIONS EARNINGS ------ --------- ------------ ----------- -----------15 KERMISCH $12,258.50 $110.10 $12,368.60 NGAN $12,508.20 $206.60 $12,714.80 ROTHMAN $16,502.83 $1,152.00 $17,654.83 ------------ ----------- -----------DEPT. 15 TOTALS $41,269.53 $1,468.70 $42,738.23 20 $13,504.60 $128.20 $13,632.80 $18,171.25 $612.45 $18,783.70 $14,252.75 $126.50 $14,379.25 ------------ ----------- -----------DEPT. 20 TOTALS $45,928.60 $867.15 $46,795.75 38 $12,009.75 $236.50 $12,246.25 $12,954.75 $180.00 $13,134.75 $18,006.00 $846.55 $18,852.55 $16,808.30 $650.25 $17,458.55 ------------ ----------- -----------DEPT. 38 TOTALS $59,778.80 $1,913.30 $61,692.10 ============ =========== ============ $146,976.93 $4,249.15 $151,226.08 ABRAHAMS NAUGHTON OBRIEN QUIGLEY JAMES PERNAL SNEIDER
COMPANY NAME
Figure 79. A customized report can show the same data in different ways.
121
PROMPTED QUERY Tables: Q.STAFF Columns: NAME DEPT JOB SALARY COMM 2 1
MODIFIED LINE
Row Conditions: 3 If DEPT Is Equal To 15, 20 or 38 And JOB Is Not Equal To MGR Sort: 4 Ascending by DEPT Ascending by NAME
Figure 80. This query produces the data for the report.
1 2 3
QMF retrieves the data from the Q.STAFF table QMF displays these columns on the report The employees are nonmanagers from departments 15, 20, and 38
4 QMF orders the rows by department number, and then by name 2. Run the query to display the report. 3. On the QMF command line, enter SHOW FORM.MAIN. The FORM.MAIN panel displays with the default report format for this report:
122
FORM.MAIN COLUMNS: Total Width of Report Columns: NUM COLUMN HEADING USAGE --- ---------------------------------------- ------1 NAME 2 DEPT 3 JOB 4 SALARY 5 COMM PAGE: HEADING FOOTING FINAL: TEXT BREAK1: NEW PAGE FOOTING BREAK2: NEW PAGE FOOTING OPTIONS: OUTLINE? ===> ===> ===> FOR BREAK? ===> NO ===> FOR BREAK? ===> NO ===> ===> YES 50 INDENT -----2 2 2 2 2
WIDTH ----9 6 5 10 10
EDIT ----C L C L2 L2
SEQ --1 2 3 4 5
DEFAULT BREAK TEXT? ===> YES 5=Chart 11=Delete 6=Query 12=Report SCROLL ===> PAGE
1=Help 2=Check 3=End 7=Backward 8=Forward 9= OK, FORM.MAIN is shown. COMMAND ===>
4=Show 10=Insert
Figure 81. You can change column appearance on the QMF FORM.MAIN panel.
You can make changes to the columns on the FORM.MAIN panel. However, in this example, you will see how to use the FORM.COLUMNS panel to make all the changes to the columns on your report. 4. Enter SHOW FORM.COLUMNS. The default FORM.COLUMNS panel for Q.STAFF looks like:
123
FORM.COLUMNS NUM --1 2 3 4 5 Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------NAME DEPT JOB SALARY COMM *** END *** 50 INDENT -----2 2 2 2 2 WIDTH ----9 6 5 10 10 EDIT ----C L C L2 L2 SEQ --1 2 3 4 5
1=Help 2=Check 3=End 4=Show 7=Backward 8=Forward 9=Specify 10=Insert OK, CANCEL command executed successfully. COMMAND ===>
5=Chart 11=Delete
124
FORM.COLUMNS MODIFIED +--------------------------------------------------------------------+ | Definition | | | | Column Number : 6 | | Column Heading: TOTAL_EARNINGS | | | | Type an expression to define this column. | | Expression (_&4_+_&5____________________________________________) | | Pass Nulls? (_NO_____) | +--------------------------------------------------------------------+ | F1=Help F5=Previous Column F6=Next Column | | F10=Previous Definition F11=Next Definition F12=Cancel | +--------------------------------------------------------------------+
7. Type the expression you want to use to define this column. For this example, type &4+&5, which stands for: the value in this column is equal to the value in column 4 plus the value in column 5 (SALARY+COMM). 8. Leave NO in the Pass Nulls field to process null values for the expression in this example. You can process null values if you are defining a column by using REXX execs. For more information on passing nulls and writing REXX execs, see DB2 QMF Reference. 9. Press Enter; you have finished defining the new column. 10. Press the Cancel function key to close the Specify panel. 11. Press the Report function key to display the changed report.
TOTAL NAME DEPT JOB SALARY COMM EARNINGS --------- ------ ----- ---------- ---------- ---------KERMISCH 15 CLERK 12258.50 110.10 12368.60 NGAN 15 CLERK 12508.20 206.60 12714.80 ROTHMAN 15 SALES 16502.83 1152.00 17654.83 JAMES 20 CLERK 13504.60 128.20 13632.80 PERNAL 20 SALES 18171.25 612.45 18783.70 SNEIDER 20 CLERK 14252.75 126.50 14379.25 ABRAHAMS 38 CLERK 12009.75 236.50 12246.25 NAUGHTON 38 CLERK 12954.75 180.00 13134.75 OBRIEN 38 SALES 18006.00 846.55 18852.55 QUIGLEY 38 SALES 16808.30 650.25 17458.55
125
FORM.COLUMNS
NUM --1 2 3 4 5 6
Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------NAME DEPT JOB SALARY COMM TOTAL_EARNINGS *** END ***
WIDTH ----9 6 5 10 10 10
EDIT ----C L C L2 L2 C
SEQ --3 1 2 4 5 6
Figure 85. Change the order of columns by changing the SEQ field.
DEPT -----15 15 15 20 20 20 38 38 38 38
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
Figure 86. The changed report shows the columns in a new order.
126
FORM.COLUMNS
NUM --1 2 3 4 5 6
Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------EMPLOYEE_NAME DEPT._NUMBER JOB SALARY COMMISSIONS TOTAL_EARNINGS *** END ***
WIDTH ----9 6 5 10 10 10
EDIT ----C L C L2 L2 C
SEQ --3 1 2 4 5 6
127
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
EMPLOYEE TOTAL NAME SALARY COMMISSION EARNINGS --------- ---------- ---------- ---------KERMISCH 12258.50 110.10 12368.60 NGAN 12508.20 206.60 12714.80 ROTHMAN 16502.83 1152.00 17654.83 JAMES 13504.60 128.20 13632.80 PERNAL 18171.25 612.45 18783.70 SNEIDER 14252.75 126.50 14379.25 ABRAHAMS 12009.75 236.50 12246.25 NAUGHTON 12954.75 180.00 13134.75 OBRIEN 18006.00 846.55 18852.55 QUIGLEY 16808.30 650.25 17458.55
Figure 88. The changed report shows the new column headings.
128
FORM.COLUMNS Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------EMPLOYEE_NAME DEPT._NUMBER JOB SALARY COMMISSIONS TOTAL_EARNINGS *** END ***
NUM --1 2 3 4 5 6
WIDTH ----9 6 5 12 11 12
EDIT ----C L C L2 L2 C
SEQ --3 1 2 4 5 6
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
Figure 90. The changed report shows the new widths and spacing of columns.
129
5. Press Enter. You have finished changing the alignment of the column. 6. Press the Cancel function key to close the Specify panel. 7. Press the Report function key to display the changed report.
REPORT LINE 1 POS 1 79
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH 12258.50 110.10 NGAN 12508.20 206.60 ROTHMAN 16502.83 1152.00 JAMES 13504.60 128.20 PERNAL 18171.25 612.45 SNEIDER 14252.75 126.50 ABRAHAMS 12009.75 236.50 NAUGHTON 12954.75 180.00 OBRIEN 18006.00 846.55 QUIGLEY 16808.30 650.25
TOTAL EARNINGS -----------12368.60 12714.80 17654.83 13632.80 18783.70 14379.25 12246.25 13134.75 18852.55 17458.55
130
P K M
Note: If the column length of specified form width is less than the amount needed to display the complete Descriptor Area, the Descriptor Area will be truncated to fit into the column space. Edit code M will not alter the width of the column. If the user changes to or from edit code M within the form, the unaltered normal result set will be displayed. Edit code M does not modify the data row. If a user wants to view the actual LOB data, he can modify FORM.MAIN or FORM.COLUMNS, and change the column edit code to C or CW to display character data. The maximum horizontal width of a report is 32 KB. If the user wants to display LOB data greater than 32 KB, he must specify a column wrapping edit code. If a wrapping edit code is not specified, the LOB data that does not fit within the report will not be displayed; no message will be issued. if a column with the M edit code is null, no metadata will be displayed, and a null indicator will be displayed. Suppressing zero values With numeric data edit codes, you can also choose to use a Z edit code in the second position to suppress zero values in a report. For example, DZ indicates numeric data, zero suppression, with a currency symbol, a separator for groups of three digits, and a decimal point and negative sign, if they occur.
Chapter 6. Customizing your reports
131
NUM --1 2 3 4 5 6
WIDTH ----9 6 5 12 11 12
EDIT ----C L C D2 D2 D2
SEQ --3 1 2 4 5 6
132
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH $12,258.50 $110.10 NGAN $12,508.20 $206.60 ROTHMAN $16,502.83 $1,152.00 JAMES $13,504.60 $128.20 PERNAL $18,171.25 $612.45 SNEIDER $14,252.75 $126.50 ABRAHAMS $12,009.75 $236.50 NAUGHTON $12,954.75 $180.00 OBRIEN $18,006.00 $846.55 QUIGLEY $16,808.30 $650.25
TOTAL EARNINGS -----------$12,368.60 $12,714.80 $17,654.83 $13,632.80 $18,783.70 $14,379.25 $12,246.25 $13,134.75 $18,852.55 $17,458.55
Figure 94. The changed report shows the dollar sign punctuation.
The default currency symbol displays. You can specify a different currency symbol to use in the report by using the currency symbol edit code. To change the currency symbol: 1. On the command line, enter the following to define a new currency symbol:
SET GLOBAL (DSQDC_CURRENCY = DM
where DM is the currency symbol you want to use. The currency symbol can be a string with a length from 1 to 18 bytes. 2. On the FORM.COLUMNS panel, change the column width for the TOTAL _EARNINGS column to 13. 3. Change the edit code for TOTAL_EARNINGS to DC2. The edit code C causes QMF to display the currency symbol you defined with the SET GLOBAL (DSQDC_CURRENCY = DM command. 4. Press the Report function key to see the changed report.
DEPT. NUMBER -----15 15 15 20 20 20 38 38 38 38 EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH $12,258.50 $110.10 NGAN $12,508.20 $206.60 ROTHMAN $16,502.83 $1,152.00 JAMES $13,504.60 $128.20 PERNAL $18,171.25 $612.45 SNEIDER $14,252.75 $126.50 ABRAHAMS $12,009.75 $236.50 NAUGHTON $12,954.75 $180.00 OBRIEN $18,006.00 $846.55 QUIGLEY $16,808.30 $650.25 TOTAL EARNINGS ------------DM12,368.60 DM12,714.80 DM17,654.83 DM13,632.80 DM18,783.70 DM14,379.25 DM12,246.25 DM13,134.75 DM18,852.55 DM17,458.55
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
Figure 95. The changed report shows the Deutch mark punctuation.
133
JOB ----CLERK CLERK SALES CLERK SALES CLERK CLERK CLERK SALES SALES
Figure 96. The changed report shows the Deutch mark punctuation.
134
FORM.COLUMNS Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------EMPLOYEE_NAME DEPT._NUMBER JOB OMIT SALARY SUM COMMISSIONS SUM TOTAL_EARNINGS SUM *** END ***
NUM --1 2 3 4 5 6
WIDTH ----9 6 5 12 11 12
EDIT ----C L C D2 D2 D2
SEQ --3 1 2 4 5 6
Figure 97. Change the way QMF displays columns with usage codes.
Figure 98. The changed report sums the columns and omits the JOB column.
135
NUM --1 2 3 4 5 6
WIDTH ----9 6 5 12 11 12
EDIT ----C L C D2 D2 D2
SEQ --3 1 2 4 5 6
136
EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH $12,258.50 $110.10 NGAN $12,508.20 $206.60 ROTHMAN $16,502.83 $1,152.00 ------------ ----------* $41,269.53 $1,468.70 JAMES PERNAL SNEIDER $13,504.60 $128.20 $18,171.25 $612.45 $14,252.75 $126.50 ------------ ----------* $45,928.60 $867.15 $12,009.75 $236.50 $12,954.75 $180.00 $18,006.00 $846.55 $16,808.30 $650.25 ------------ ----------* $59,778.80 $1,913.30 ============ =========== $146,976.93 $4,249.15
TOTAL EARNINGS -----------$12,368.60 $12,714.80 $17,654.83 -----------$42,738.23 $13,632.80 $18,783.70 $14,379.25 -----------$46,795.75 $12,246.25 $13,134.75 $18,852.55 $17,458.55 -----------$61,692.10 ============ $151,226.08
20
38
Figure 100. The changed report shows a subtotal after each department.
137
FORM.BREAK1 New Page for Break? ===> NO Repeat Detail Heading? ===> NO Blank Lines Before Heading ===> 0 Blank Lines After Heading ===> 0 LINE ALIGN BREAK 1 HEADING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT 2 LEFT 3 LEFT *** END *** New Page for Footing? ===> NO Put Break Summary at Line ===> 1 Blank Lines Before Footing ===> 0 Blank Lines After Footing ===> 1 LINE ALIGN BREAK 1 FOOTING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 RIGHT DEPT. &2 TOTALS 2 RIGHT 3 RIGHT *** END ***
Figure 101. Enter the subtotal text in the BREAK 1 FOOTING TEXT field.
2. Type the text you want to display at each subtotal line in the BREAK 1 FOOTING TEXT field. For this example, type DEPT. &2 TOTALS. The &2 is a form variable that tells QMF to display the current value in column 2 for each subtotal line. Column 2 is the DEPT_NUMBER column, so the current department number displays as part of the text for each subtotal line. 3. Press the Report function key to see the changed report.
138
EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH $12,258.50 $110.10 NGAN $12,508.20 $206.60 ROTHMAN $16,502.83 $1,152.00 ------------ ----------DEPT. 15 TOTALS $41,269.53 $1,468.70 $13,504.60 $128.20 $18,171.25 $612.45 $14,252.75 $126.50 ------------ ----------DEPT. 20 TOTALS $45,928.60 $867.15 $12,009.75 $236.50 $12,954.75 $180.00 $18,006.00 $846.55 $16,808.30 $650.25 ------------ ----------DEPT. 38 TOTALS $59,778.80 $1,913.30 ============ =========== $146,976.93 $4,249.15 ABRAHAMS NAUGHTON OBRIEN QUIGLEY JAMES PERNAL SNEIDER
TOTAL EARNINGS -----------$12,368.60 $12,714.80 $17,654.83 -----------$42,738.23 $13,632.80 $18,783.70 $14,379.25 -----------$46,795.75 $12,246.25 $13,134.75 $18,852.55 $17,458.55 -----------$61,692.10 ============ $151,226.08
20
38
Figure 102. The changed report shows subtotal text after each department.
For information on specifying text for additional form breaks, see DB2 QMF Reference.
The FORM.PAGE panel displays. Figure 103 on page 140 shows a sample FORM.PAGE panel.
139
FORM.PAGE Blank LINE ---1 2 3 4 Lines Before Heading ===> 0 Blank Lines After Heading ===> 2 ALIGN PAGE HEADING TEXT ------ ----+----1----+----2----+----3----+----4----+----5----+ CENTER DIVISION EARNINGS REPORT CENTER CENTER CENTER *** END *** Lines Before Footing ===> 2 Blank Lines After Footing ===> 0 ALIGN PAGE FOOTING TEXT ------ ----+----1----+----2----+----3----+----4----+----5----+ CENTER COMPANY NAME CENTER CENTER CENTER *** END ***
Figure 103. Add page headings and footings on the FORM.PAGE panel.
2. Move the cursor to the PAGE HEADING TEXT field. 3. Type the text you want to display at the top of each page in the report. For this example, type DIVISION EARNINGS REPORT. You can specify either left or right justification of the text, or align the text at a specific column. If all the heading text for one line does not fit in the space allowed for that line, type APPEND in the ALIGN column of the next line. Then, change its line number to the same number as the preceding line, and continue typing the text. Be sure to indent the appended text at least one space. If you need another line, move the cursor to the line above the place you want the new line and press the Insert function key. You can specify up to 999 lines of text. 4. Type the text you want to display at the bottom of each page for the report in the PAGE FOOTING TEXT field. For this example, type COMPANY NAME 5. Press the Report function key to see the changed report.
140
EMPLOYEE NAME SALARY COMMISSIONS --------- ------------ ----------KERMISCH $12,258.50 $110.10 NGAN $12,508.20 $206.60 ROTHMAN $16,502.83 $1,152.00 ------------ ----------DEPT. 15 TOTALS $41,269.53 $1,468.70 $13,504.60 $128.20 $18,171.25 $612.45 $14,252.75 $126.50 ------------ ----------DEPT. 20 TOTALS $45,928.60 $867.15 $12,009.75 $236.50 $12,954.75 $180.00 $18,006.00 $846.55 $16,808.30 $650.25 ------------ ----------DEPT. 38 TOTALS $59,778.80 $1,913.30 ============ =========== $146,976.93 $4,249.15 ABRAHAMS NAUGHTON OBRIEN QUIGLEY JAMES PERNAL SNEIDER
TOTAL EARNINGS -----------$12,368.60 $12,714.80 $17,654.83 -----------$42,738.23 $13,632.80 $18,783.70 $14,379.25 -----------$46,795.75 $12,246.25 $13,134.75 $18,852.55 $17,458.55 -----------$61,692.10 ============ $151,226.08
20
38
COMPANY NAME
Figure 104. The changed report displays the page heading and footing.
141
MODIFIED LINE 1
Join Tables: A.DEPT And B.DEPTNUMB Columns: ID NAME JOB YEARS SALARY COMM DEPTNUMB DEPTNAME MANAGER DIVISION LOCATION Sort: Ascending by ID
Figure 105. Use this query to see how fixed columns affect a report.
When you press the Right function key to see the rest of the information, you can no longer see the ID and NAME fields. You cannot tell which information belongs to which employee. To specify fixed columns on a report: 1. On the QMF command line, enter:
SHOW FORM.OPTIONS
142
===> ===> ===> ===> ===> ===> ===> ===> ===> ===> ===>
Figure 107. Specify the number of columns you want to remain fixed.
2. Move the cursor to the Number of fixed columns in report? field. 3. Type the number of columns you want to remain fixed. For this example, you want the ID and NAME columns to display at all times. Type 2 in the Number of fixed columns in report? field. Press the Report function key to see the changed report. Press the Right function key to display the rest of the information. The columns you specified as fixed remain displayed on the screen.
ID -----10 20 30 40 50 60 70 80 90 100 110 120 130 140 NAME |EPTNUMB ---------|------SANDERS | 20 PERNAL | 20 MARENGHI | 38 OBRIEN | 38 HANES | 15 QUIGLEY | 38 ROTHMAN | 15 JAMES | 20 KOONITZ | 42 PLOTZ | 42 NGAN | 15 NAUGHTON | 38 YAMAGUCHI| 42 FRAYE | 51 DEPTNAME MANAGER DIVISION LOCATION -------------- ------- ---------- ------------MID ATLANTIC 10 EASTERN WASHINGTON MID ATLANTIC 10 EASTERN WASHINGTON SOUTH ATLANTIC 30 EASTERN ATLANTA SOUTH ATLANTIC 30 EASTERN ATLANTA NEW ENGLAND 50 EASTERN BOSTON SOUTH ATLANTIC 30 EASTERN ATLANTA NEW ENGLAND 50 EASTERN BOSTON MID ATLANTIC 10 EASTERN WASHINGTON GREAT LAKES 100 MIDWEST CHICAGO GREAT LAKES 100 MIDWEST CHICAGO NEW ENGLAND 50 EASTERN BOSTON SOUTH ATLANTIC 30 EASTERN ATLANTA GREAT LAKES 100 MIDWEST CHICAGO PLAINS 140 MIDWEST DALLAS
Figure 108. The first two columns remain fixed when you press the Right function key.
143
Customizing your reports Displaying a representative report before you select data
Before you select any data, you can use the LAYOUT command to display a representation of the report a form will produce. Displaying a representation is helpful if you want to test or change a form without running a query. Also, you can display a representation to help you remember the report produced by a particular form. Your installation might not support use of the LAYOUT command for the following reasons: v ISPF is not available when you run QMF. v Your QMF administrator has not made the default command synonyms available. Check with your QMF administrator before you try to use this command. On a report representation, data displays as either a string of letters (character data) or a string of numbers (numeric data). To display a representative report for a form saved in the database: On the QMF command line, enter:
LAYOUT FORM formname
144
Employee Data for the XXXXXXXXXX Division Date: 11/27/1991 Department number 1, Department name XXXXXXXXXXXXXX Manager: 0 ***************************** ** Personnel Status Report ** ***************************** Position: AAAAA Employee: XXXXXXXXX ID: 0 Years of Service: 0 Salary: 0.00 Commission: 0.00 Total Earnings: 0.00 ===> Number in AAAAA position in Department 1: 1 Position: BBBBB Employee: XXXXXXXXX ID: 0 Years of Service: 0 Salary: 0.00 Commission: 0.00 Total Earnings: 0.00 ===> Number in BBBBB position in Department 1: 1 Department number 2, Department name XXXXXXXXXXXXXX Manager: 0 . . .
The first control break, on the DEPT column (a numeric column), is represented by a 1 for the first department and a 2 for the second department. The second control break, on the JOB column (a character column), is represented by AAAAA for the first job title and BBBBB for the second job title.
145
Figure 110. This query joins columns from the Q.STAFF and Q.ORG tables.
In addition, you will use a global variable to specify the division. Global variables allow you to save a QMF object and use it multiple times for different purposes without having to change it. For more information on using global variables in queries, see DB2 QMF Reference. To set a global variable: 1. On the QMF command line, enter:
SET GLOBAL (varname=value
You must reset the global variable using the SET GLOBAL command each time you start a new QMF session. If you do not set global variables before you run your query, QMF displays a panel that prompts you to enter values for the variables. 2. Run the query to display the default report. Figure 111 shows the report for this example.
ID -----330 270 320 310 280 350 290 300 340 NAME DEPT JOB YEARS SALARY COMM DEPTNUMB D --------- ------ ----- ------ ---------- ---------- -------- BURKE 66 CLERK 1 10988.00 55.50 66 P LEA 66 MGR 9 18555.50 66 P GONZALES 66 SALES 4 16858.20 844.00 66 P GRAHAM 66 SALES 13 21000.00 200.30 66 P WILSON 66 SALES 9 18674.50 811.50 66 P GAFNEY 84 CLERK 5 13030.50 188.00 84 M QUILL 84 MGR 10 19818.00 84 M DAVIS 84 SALES 5 15454.50 806.10 84 M EDWARDS 84 SALES 7 17844.00 1285.00 84 M
146
The FORM.PAGE panel displays. 4. In line 1 of the PAGE HEADING TEXT field, change the alignment to LEFT, and type the text you want to display as the page heading. For this example, type:
EMPLOYEE DATA FOR THE &11 DIVISION
147
Figure 112. Change the alignment of page headings and footings on FORM.PAGE.
NAME DEPT JOB YEARS SALARY COMM DEPTNUMB D --------- ------ ----- ------ ---------- ---------- -------- BURKE 66 CLERK 1 10988.00 55.50 66 P LEA 66 MGR 9 18555.50 66 P GONZALES 66 SALES 4 16858.20 844.00 66 P GRAHAM 66 SALES 13 21000.00 200.30 66 P WILSON 66 SALES 9 18674.50 811.50 66 P GAFNEY 84 CLERK 5 13030.50 188.00 84 M QUILL 84 MGR 10 19818.00 84 M DAVIS 84 SALES 5 15454.50 806.10 84 M EDWARDS 84 SALES 7 17844.00 1285.00 84 M
** Company Name **
Figure 113. The changed report shows the headings and footings aligned left.
148
The FORM.COLUMNS panel displays. 2. In the USAGE field, specify up to six breaks for the columns in the report. For this example, type BREAK1 for DEPT and BREAK2 for JOB.
FORM.COLUMNS MODIFIED 128 INDENT -----2 2 2 2 2
NUM --1 2 3 4 5
Total Width of Report Columns: COLUMN HEADING USAGE ---------------------------------------- ------ID NAME DEPT BREAK1 JOB BREAK2 YEARS . . . *** END ***
WIDTH ----6 9 6 5 6
EDIT ----L C L C L
SEQ --1 2 3 4 5
149
ID NAME DEPT JOB YEARS| MANAGER DIVISION LOCATION ------ --------- ------ ----- ------| ------- ---------- ------------330 BURKE 1 66 CLERK 1| 270 WESTERN SAN FRANCISCO | 2 * | 270 LEA 2 MGR 9| 270 WESTERN SAN FRANCISCO | 2 * | 280 WILSON 9| 270 WESTERN SAN FRANCISCO 310 GRAHAM 13| 270 WESTERN SAN FRANCISCO 320 GONZALES 2 SALES 4| 270 WESTERN SAN FRANCISCO | | * | 1 ** | 350 GAFNEY 84 CLERK 5| 290 WESTERN DENVER | * 290 QUILL MGR 10| 290 WESTERN DENVER | * 340 EDWARDS SALES 7| 290 WESTERN DENVER 300 DAVIS 5| 290 WESTERN DENVER
Figure 115. The changed report shows breaks after each department and job.
The FORM.BREAK panel for the break level you specified displays. You specify break heading and footing text on this panel. 5. Leave the defaults, or type new values for the New Page for Break, Blank Lines Before Heading, Repeat Detail Heading?, and Blank Lines After Heading fields. For this example, type 2 for Blank Lines After Heading. 6. Type the break text for each line under the BREAK 1 HEADING TEXT heading. You can use form variables in the text. In this example, type Department number &3, Department name &9 for the first line of text, and Manager: &10 for the second line of text. Line 1 contains the form variable &3 for department number, and &9 for department name. Line 2 contains the form variable &10 for the ID number of the manager for the department. You can specify either left or right justification of the text, or align the text at a specific column. If all the break text for one line does not fit in the space allowed on that line, type APPEND in the ALIGN column of the next line. Then, change its
150
Figure 116. Specify headings and footings for report breaks on FORM.BREAK.
7. Specify text for the break footing in the same way you specify text for the break heading. For this example, do not specify footing text for the level-one break. For the second break, on the JOB column, enter both heading and footing text. 8. On the QMF command line, enter:
SHOW FORM.BREAK2
9. For this example, type Position: &4 for the first line of heading text. 10. Change the alignment toLEFT and type ===> Number in &4 position in Department &3: for the first line of footing text. 11. Change the line number in the LINE field for the second line of footing text from 2 to 1. 12. Type APPEND in the ALIGN field for the second line of footing text. 13. Type &COUNT2 in the BREAK 2 FOOTING TEXT field. Be sure to leave a space at the beginning of the second line of text. These two lines appear as one line on the report. The variable &COUNT2 is an aggregation variable that counts the number of values for column 2, NAME. Figure 117 on page 152 shows the completed FORM.BREAK2 panel for this example.
151
FORM.BREAK2 MODIFIED New Page for Break? ===> NO Repeat Detail Heading? === > NO Blank Lines Before Heading ===> 0 Blank Lines After Heading === > 1 LINE ALIGN BREAK 2 HEADING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT Position: &4 2 LEFT 3 LEFT *** END *** New Page for Footing? ===> NO Put Break Summary at Line === > 1 Blank Lines Before Footing ===> 0 Blank Lines After Footing === > 1 LINE ALIGN BREAK 2 FOOTING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT ===> Number in &4 position in Department &3: 1 APPEND &COUNT2 3 RIGHT *** END ***
For more information on all the fields on the BREAK panels, see DB2 QMF Reference. 14. Press the Report function key to see the changed report.Figure 118 on page 153 shows how the changed report should look.
152
ID NAME DEPT JOB YEARS SALARY COMM DEPTNUMB ------ --------- ------ ----- ------ ---------- ---------- -------DEPARTMENT NUMBER 66, DEPARTMENT NAME PACIFIC MANAGER: 270
===> NUMBER IN CLERK POSITION IN DEPARTMENT 66: 1 POSITION: MGR 270 LEA 66 MGR 9 18555.50 66
===> NUMBER IN MGR POSITION IN DEPARTMENT 66: 1 POSITION: SALES 320 GONZALES 310 GRAHAM 280 WILSON SALES 4 13 9 16858.20 21000.00 18674.50 844.00 200.30 811.50 66 66 66
===> NUMBER IN SALES POSITION IN DEPARTMENT 66: 3 DEPARTMENT 84, DEPARTMENT NAME MOUNTAIN MANAGER: 290 POSITION: CLERK 350 GAFNEY 84 CLERK 5 13030.50 188.00 84
===> NUMBER IN CLERK POSITION IN DEPARTMENT 84: 1 POSITION: MGR 290 QUILL 84 MGR 10 19818.00 84
===> NUMBER IN MGR POSITION IN DEPARTMENT 84: 1 POSITION: SALES 340 EDWARDS 300 DAVIS SALES 7 5 17844.00 15454.50 1285.00 806.10 84 84
** COMPANY NAME **
Figure 118. The changed report shows first and second level break text.
153
Customizing your reports Refining the format of your report with detail blocks
You can reformat and add text to your report with detail blocks. A detail block is a set of specifications that tells QMF to put in whatever special formatting you want for one row of the data retrieved by your query. Specify detail blocks on the FORM.DETAIL panel. You can use the panel to do the following: v Format the detail heading and block text in your report. v Enter your own text for the detail heading to either replace the column headings or combine it with the column headings. v Enter your own block of detail text and specify its location anywhere within the detail block of the report. v Use data from the columns selected in your query by using form column variable names or aggregation variables. Place that data at any location within the detail block. v Specify the placement of tabular data. v Mix tabular (column) data with free-flowing text (detail block text) v Omit tabular data from your report. v Place the results of calculation expressions, specified on FORM.CALC, in the detail block text of your report. See Calculating values to use in a report on page 158 for an example of how to specify calculation expressions. In the following example, you use the FORM.DETAIL panel to reformat the report in Figure 118 on page 153. You will also remove the column headings from the report, omit tabular data (columns), and add headings for each subsection. When you finish, the report will look like Figure 121 on page 156. To specify detail blocks: 1. On the QMF command line, enter:
DISPLAY FORM.DETAIL
154
FORM.DETAIL
MODIFIED
Var 1
of 1
Include Column Headings with Detail Heading? ===> NO LINE ALIGN DETAIL HEADING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT ***************************** 2 LEFT ** PERSONNEL STATUS REPORT ** 3 LEFT ***************************** New Page for Detail Block? ===> NO Repeat Detail Heading? ===> NO Keep Block on Page? ===> NO Blank Lines after Block ===> 0 Put Tabular Data at Line (Enter 1-999 or NONE) ===> 1 LINE ALIGN DETAIL BLOCK TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT 2 LEFT *** END *** Select Panel Variation? ===> YES
2. Because the final report is not in tabular format (columns and rows), you do not want to display the column headings. Type NO in the Include Column Headings with Detail Heading? field for this example. If you leave YES, the column headings display immediately after any detail heading text in the report. 3. Type the detail heading text for each line in the DETAIL HEADING TEXT field. You can use form variables in the text. For this example, type the text as it is shown on the FORM.DETAIL panel in Figure 119. You need to insert an extra line and change its line number. Next, rearrange the data from each column into a vertical list, rather than a tabular arrangement of columns and rows. Give each column value a new label to replace the column headings. Specify the format of the detail block on the bottom half of the FORM.DETAIL panel. 4. Leave the defaults, or type new values for the New Page for Detail Block?, Repeat Detail Heading?, Keep Block on Page?, and Blank Lines After Block fields. For this example, type 1 for Blank Lines After Block. 5. Type a line number if you want to include tabular data in the report, or type NONE if you want to remove all the tabular data. For this example, type NONE, to remove all the tabular data from the report. 6. Type the detail block text for each line in the DETAIL BLOCK TEXT field. Use form variables and text to provide values for the column headings and column data on the report. For this example, type the text as it is shown on the following FORM.DETAIL panel.
155
LINE ---1 2 3 4 5
ALIGN DETAIL BLOCK TEXT ------ ----+----1----+----2----+----3----+----4----+----5----+ LEFT Employee: &2 LEFT ID: &1 LEFT Years of Service: &5 LEFT Salary: &6 LEFT Commission: &7
Figure 120. Specify replacement column headings with detail block text.
You can create variations of the detail blocks to use with different conditions in a report format with panel variations. For more information on creating panel variations, see DB2 QMF Reference. 7. Press the Report function key to see the changed report. | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Employee Data for the WESTERN Division Date: 1998-03-17
***************************** ** Personnel Status Report ** ***************************** Department number 66, Department name PACIFIC Manager: 270
===> Number in CLERK position in Department 66: 1 Position: MGR EMPLOYEE: ID: Years of Service: Salary: Commission:
156
New Page for Final Text? ===> NO Put Final Summary at Line ===> 1 Blank Lines Before Text ===> 0 LINE ALIGN FINAL TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT Total Number of Employees for the &11 Division is 1 APPEND &COUNT1. 2 LEFT Average Salary for the &11 Division is &AVG6.
2. Leave the defaults, or type new values for the New Page for Final Text?, Put Final Summary at Line, and Blank Lines Before Text fields. For this example, leave the defaults for these fields. 3. Type the final text for each line under the FINAL TEXT field. You can use form variables in the text. For this example, change the alignment to LEFT, and type Total Number of Employees for the &11 Division is for the first line. Specify APPEND for alignment for the next line, change the line number to 1, and type &COUNT1. Be sure to leave a space before &COUNT1. For the next line of final text, change the alignment to LEFT, and type Average Salary for the &11 Division is &AVG6. 4. Press the Report function key to display the changed report.
157
Total Number of Employees for the WESTERN Division is 9. Average Salary for the WESTERN Division is 16913.69. ** Company Name ** *** END ***
Figure 123. The final text displays at the end of your report.
Note to CICS Users You cannot calculate values to use in a report in CICS. The values in your reports can come from the following: v Data that you import or have stored in the database v Calculations that are performed in a query v Calculations that are performed within a QMF form You can specify calculations in a form that are similar to the calculations that are performed in a query. QMF evaluates calculations in a form by using the REXX language. Calculations can take advantage of all the built-in REXX functions. You can also specify REXX execs you write in a form. However, calculations in a form can affect performance. You can create calculations to use in a report in one of the following ways: v Define an expression that calculates a value. v Create a REXX exec to return a value. DB2 QMF Reference describes expressions in detail. For more information on REXX execs, see OS/390 V2R10.0 TSO/E REXX Reference (for TSO) or VM System Product Interpreter Reference (for CMS). Your installation might not support use of calculations and REXX functions. Check with your QMF administrator before you try to use calculations in a report.
158
Pass For &CALCid ID CALCULATION EXPRESSION Nulls? WIDTH EDIT --- -------------------------------------------------- ------ ----- ----1 &6 + NULL(&7) YES 12 D2 *** END ***
2. Type an ID number for the expression. You can use any number from 1 through 999. In this example, type 1 for ID. 3. Type the expression, using form variables to specify the columns, in the CALCULATION EXPRESSION field. In this example, type &6 + NULL(&7), which means to add the values in columns 6 (SALARY) and 7 (COMM). Because some of the commission values in the sample tables are null, they appear as a hyphen in the report. REXX cannot perform an arithmetic operation on data that contains both numeric values and nulls. The REXX NULL EXEC looks for the nulls in the data and replaces them with a specified value. In this case, it replaces nulls with zeros. When you write a REXX exec, make sure that you make it available to QMF by placing it on an accessible disk or specifying the correct data set. Here is the NULL EXEC for this example:
159
4. In the PASS NULLS field, type YES to process nulls for this example. 5. In the WIDTH field, type 12 to accommodate the number of characters expected in the result of the calculation. 6. In the EDIT field, type the edit code for the result of this calculation. Because you want to display total earnings as a dollar value, type D2. See Specifying punctuation for the values in a column on page 130 for information about edit codes. After you define the expression, you can use the FORM.DETAIL panel to define how you want to display the result of the calculation on the report. 7. On the QMF command line, enter:
SHOW FORM.DETAIL
The FORM.DETAIL panel displays. 8. Type the new line of text in the DETAIL BLOCK TEXT field. For this example, type Total Earnings:&CALC1. The variable &CALC1 corresponds to the calculation expression you created on the FORM.CALC panel. Change the line number and alignment for the new line of text. For this example, change the line number to 6 and change the alignment to 3. This means that you want this line of detail block text to begin in column 3.
LINE ---1 2 3 4 5 6 ALIGN -----LEFT LEFT LEFT LEFT LEFT 3 DETAIL BLOCK TEXT ----+----1----+----2----+----3----+----4----+----5----+ Employee: &2 ID: &1 Years of Service: &5 Salary: &6 Commission: &7 Total Earnings: &CALC1
Figure 125. Specify where a calculated value appears with detail block text.
160
***************************** ** Personnel Status Report ** ***************************** Department number 66, Department name PACIFIC Manager: 270 Position: CLERK Employee: ID: Years of Service: Salary: Commission: Total Earnings:
Figure 126. The calculated value appears next to Total Earnings in the report.
In this example, the value for Total Earnings comes from the &CALC1 variable. You can also define Total Earnings as a new column by using the same expression and REXX exec. Then, you can specify the value on the FORM.DETAIL panel by using the form variable &n, where n is the column number given to the new column. For information on defining a column, see Adding a new column to a report on page 124.
161
The FORM.CALC panel displays. 2. In the ID field, type an ID number for the expression. You can use any number from 1 through 999. Because you already have an expression from a previous example, type 2. 3. In the CALCULATION EXPRESSION field, type the expression, using form variables to specify the columns. For this example, type BONUS(&7 800). BONUS is a REXX exec you write that checks the value in the COMMISSION column (&7) to see if it is greater than or equal to the amount you specify for the commission bonus (800). If the value in the column qualifies for the commission bonus, the words *** Commission Bonus *** display on the report. Here is the BONUS program for this example:
/* REXX BONUS */ /* program to flag employees whose commission levels warrant a bonus */ parse arg commission commission_level retvalue = if (commission = "DSQNULL") & (commission >= commission_level) then retvalue = *** Commission Bonus *** return retvalue
4. In the WIDTH field, type 24 to accommodate the number of characters in the text string *** Commission Bonus ***. 5. In the EDIT field, type the edit code C to treat the text string as character data.
FORM.CALC MODIFIED Pass Nulls? -----YES YES For &CALCid WIDTH EDIT ----- ----12 D2 25 C
ID --1 2
Now that you have specified the calculation expression, use detail block text to specify the placement of the text string. 6. On the QMF command line, enter:
SHOW FORM.DETAIL
162
163
***************************** ** Personnel Status Report ** ***************************** Department number 66, Department name PACIFIC Manager: 270
Position: CLERK Employee: ID: Years of Service: Salary: Commission: Total Earnings:
===> Number in CLERK position in Department 66: 1 Position: MGR Employee: ID: Years of Service: Salary: Commission: Total Earnings:
===> Number in MGR position in Department 66: 1 Position: SALES Employee: ID: Years of Service: Salary: Commission: Total Earnings: . . .
Total Number of Employees for the WESTERN Division is 9. Average Salary for the WESTERN Division is 16913.69. ** Company Name ** *** END ***
Figure 128. The changed report shows the conditional text for bonuses.
Identifying a special condition using an expression In this example, you create a report that displays some flag text whenever the data meets certain conditions. This example is very similar to the previous example that uses the FORM.CALC panel and a REXX exec. This time, however, you will use the FORM.CONDITIONS panel with the FORM.DETAIL panel. Using this method, you can format your report in
164
The FORM.CONDITIONS panel displays. 3. Type an ID number for the expression. You can use any number from 1 through 999. For this example, you need to create two conditions; one for employees who earn greater than or equal to $17,000.00, and one for employees who earn less than $17,000.00. Type 1 for the first expression, and 2 for the second expression. 4. In the CONDITIONAL EXPRESSION field, type the expression, using form variables to specify the columns. For this example, type:
&5 + NULL(&6) >= 17000.00
This is the first condition. It means find each row for which the employees total earnings (SALARY+COMM) are greater than or equal to $17,000.00. Type: |
&5 + NULL(&6) < 17000.00
This is the second condition. It means find each row for which the employees total earnings are less than $17,000.00. 5. Type YES in the PASS NULLS field to process nulls for this example.
165
ID --1 2
report, use the FORM.DETAIL panel to create a report variation for each condition. This type of report formatting is called conditional formatting. You can select each report variation unconditionally, or associate it with a condition such as those you just entered on the FORM.CONDITIONS panel. 6. On the QMF command line, enter:
SHOW FORM.DETAIL
The FORM.DETAIL panel displays. 7. In the Select Panel Variation field, type C1 to associate this report format variation with the first condition on the FORM.CONDITIONS panel, where the employee makes greater than or equal to $17,000.00. For this variation, do not enter any detail text. 8. Create a report variation for the second condition. For this example, move the cursor to Var 1 of 1. 9. Type 2 over the 1. 10. Press Enter. Or you can enter NEXT on the QMF command line. A second FORM.DETAIL panel displays. 11. In the Select Panel Variation field, type C2 to associate this report format variation with the second condition on the FORM.CONDITIONS panel, where the employee makes less than $17,000.00. 12. For this example, type *** Needs Raise *** for the first line of detail block text. Change the alignment to column 60. QMF displays the text on the report when this condition is true.
166
FORM.DETAIL
Var 1 of 1
Include Column Headings with Detail Heading? ===> YES LINE ALIGN DETAIL HEADING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT 2 LEFT *** END *** New Page for Detail Block? ===> NO Repeat Detail Heading? ===> NO Keep Block on Page? ===> NO Blank Lines after Block ===> 0 Put Tabular Data at Line (Enter 1-999 or NONE) ===> 1 LINE ALIGN DETAIL BLOCK TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 60 *** Needs Raise *** 2 LEFT *** END *** Select Panel Variation? ===> C2
Figure 130. Specify detail block text to appear when the condition is true.
13. Change the width of the report so that the detail block text appears. On the QMF command line, enter:
SHOW FORM.OPTIONS
14. In the Report text line width field, type 80 to change the report width to 80 columns. 15. Press the Report function key to see the changed report.
ID NAME JOB DEPT SALARY COMM ------ --------- ----- ------ ---------- ---------10 20 30 40 50 60 70 80 90 100 110 120 130 140 SANDERS PERNAL MARENGHI OBRIEN HANES QUIGLEY ROTHMAN JAMES KOONITZ PLOTZ NGAN NAUGHTON YAMAGUCHI FRAYE . . . MGR SALES MGR SALES MGR SALES SALES CLERK SALES MGR CLERK CLERK CLERK MGR 20 20 38 38 15 38 15 20 42 42 15 38 42 51 18357.50 18171.25 17506.75 18006.00 20659.80 16808.30 16502.83 13504.60 18001.75 18352.80 12508.20 12954.75 10505.90 21150.00 612.45 846.55 650.25 1152.00 128.20 1386.70 206.60 180.00 75.60 -
*** Needs Raise *** *** Needs Raise *** *** Needs Raise ***
Figure 131. The changed reports shows employees who need a raise.
167
For this example, make the following changes on the FORM.COLUMNS panel: a. Specify an OMIT usage code for all columns except the NOTES column, because the NOTES column is the only column you will be displaying as tabular data. b. Change the edit code for the NOTES column to CT, to allow text wrapping within the column, and the width to 40. 3. On the QMF command line, enter:
SHOW FORM.DETAIL
4. Make the following changes on the FORM.DETAIL panel: a. In the Include Column Headings with Detail Headings? field, type NO so that the column headings will not appear after the detail heading text. b. In the Blank Lines after Block field, type 6. c. Specify the line number on which you want to display the tabular data in the Put Tabular Data at Line field. Make sure you specify different line numbers for the detail block text and the tabular data. Otherwise, one will overlay the other when you display the report. For this example, type 4. d. Type the information for the detail block text. For this example, type Company: &2 for the first line. Type Account Number: &1 for the second line. Type Notes: for the third line. You do not have to specify a form variable for the tabular data; the data will follow the last line of detail block text. For more information on specifying detail block text, see Refining the format of your report with detail blocks on page 154.
168
FORM.DETAIL
MODIFIED
Var 1
of 1
Include Column Headings with Detail Heading? ===> NO LINE ALIGN DETAIL HEADING TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT 2 LEFT *** END *** New Page for Detail Block? ===> NO Repeat Detail Heading? ===> NO Keep Block on Page? ===> NO Blank Lines after Block ===> 6 Put Tabular Data at Line (Enter 1-999 or NONE) ===> 4 LINE ALIGN DETAIL BLOCK TEXT ---- ------ ----+----1----+----2----+----3----+----4----+----5----+ 1 LEFT COMPANY: &2; 2 LEFT ACCOUNT NUMBER: &1; 3 LEFT NOTES: Select Panel Variation? ===> NO
Figure 132. Specify placement of tabular data with detail block text.
Figure 133. The changed report shows tabular data mixed with a detail block.
When you omit some columns from the report, as in this example, you reduce the automatic total width of the report. Make sure that your report is wide enough to include all of the detail block text. Change the width of your report by changing the Report text line width field on the FORM.OPTIONS panel.
169
The FORM.COLUMNS panel displays. 3. Type any changes to the column names in the COLUMN HEADING field. For this example, change the column name that is created by the query to TOTAL_EARNINGS. 4. Type the usage codes and other changes for the columns. For this example, make the following changes: a. Specify GROUP for the DEPT column to group your data by department. You must group your data by at least one column. Be sure to order your data by that column. b. Specify ACROSS for the JOB column to summarize salary, commission, and total earnings by job. c. Specify SUM for the SALARY, COMM, and TOTAL_EARNINGS columns. d. Specify OMIT for the NAME column, because you do not want to display it on the report. When you use the GROUP usage code, if you leave a column usage blank, that column does not appear on the report. e. Specify D2 in the EDIT field for the SALARY, COMM, and TOTAL_EARNINGS columns. f. Change the width of the SALARY column to 11.
170
FORM.COLUMNS NUM --1 2 3 4 5 6 COLUMN HEADING ---------------------------------------NAME DEPT JOB SALARY COMM TOTAL_EARNINGS *** END ***
MODIFIED USAGE ------OMIT GROUP ACROSS SUM SUM SUM INDENT -----2 2 2 2 2 2 WIDTH ----9 6 5 11 10 12 EDIT ----C L C D2 D2 D2 SEQ --1 2 3 4 5 6
Figure 134. Use GROUP and ACROSS usage codes to summarize data in a report.
The FORM.OPTIONS panel displays. 6. In the Automatic reordering of report columns? field, type YES. If you do not make this change, your report displays with a warning at the top. 7. Press the Report function key to see the changed report. 8. For this example, press the Right function key to see the summary column.
<------------------------------------ JOB --------------------------<--------------- CLERK ---------------> <--------------- SALES ----SUM SUM SUM TOTAL SUM SUM SALARY COMM EARNINGS SALARY COMM ----------- ---------- ---------------------- ---------- $24,766.70 $316.70 $25,083.40 $16,502.83 $1,152.00 $27,757.35 $254.70 $28,012.05 $18,171.25 $612.45 $24,964.50 $416.50 $25,381.00 $34,814.30 $1,496.80 =========== ========== ============ =========== ========== = $77,488.55 $987.90 $78,476.45 $69,488.38 $3,261.25
DEPT -----15 20 38
Figure 135. Pressing the Right function key displays the rest of the summarized data.
171
QMF prompts you for the name you want to assign to the form. You can also enter:
SAVE AS formname
Where formname is the name you want to assign to the form. | If you are on a panel other than the FORM panel, enter:
SAVE FORM
QMF prompts you for the name you want to assign to the form. You can also enter: | | | | | | |
SAVE FORM AS formname
If you want to save your form and share it with other users, add the SHARE=YES parameter to the SAVE command you are using as follows:
SAVE SAVE SAVE SAVE (SHARE=YES AS formname (SHARE=YES FORM (SHARE=YES FORM AS formname (SHARE=YES
172
The data in a query must fit the form you use, or the report will not display.
When you enter this command from the FORM.MAIN panel, you do not need to specify the object type as FORM. The object type defaults to FORM when the RESET command is entered from a form panel. v To reset the values on a specific form panel, enter:
RESET FORM.panelname
When you enter this command from any specific form panel, you do not need to specify the object type as FORM.panelname. The object type defaults to FORMpanelname when the RESET command is entered from a specific form panel. Remember that you can only reset the values on the FORM panels before you save the form in the database. For more information on resetting the values on form panels, see DB2 QMF Reference.
173
Where printer is the printer nickname your QMF administrator set up for you. When you initiate the PRINT command from a report panel, you do not need to specify the object type in the command. From a report panel, the object type for the PRINT command defaults to REPORT. For more information on the PRINT command, see DB2 QMF Reference. CC (carriage control) In QMF V8.1, CC (carriage control) is a new key word which has these constraints: v When the key word option PRinter = Printer name, the CC option is ignored. v When the key word option PRinter = Blank, the CC option can be set from the command line or from the PRINT panel prompt. From the command line, you would type
PRINT REPORT (CC = x
where x can be Y, N, or Not specified. v Y- leave the carriage control characters in place v N- remove the carriage control characters; shift the report to the left by one space v Not specified- the CC will be set with the value from global variable DSQEC_CC CC can also be set from the PRINT panel prompt:
174
1 to 15 of 15
) GDDM nickname for the printer. (PRINTER must be specified to print forms or prompted queries.) Width ( 132 ) Mumber of characters per printed line (22 to 999). Length ( 60 ) Number of lines per printed page (1 to 999, or CONT, to print without page breaks. CONT cannot be used to print forms. Datetime ( YES ) Print the date and time? YES or NO. Pageno ( YES ) Print the page numbers? YES or NO. Form ( ) Enter the name of a specific form to be used to print the report. To use the current form, enter FORM or leave blank. CC ( ) Carriage Control? YES or NO or leave blank to use default. ----------------------------------------------------------------------------------------------------F1=Help F3=End F7=Backward F8=Forward
QMF command:
RUN QUERY (ROWLIMIT=5
Resulting report:
NAME --------JONES QUILL HANES LU LEA YEARS -----12 10 10 10 9
175
176
177
Figure 138. This bar chart shows the same employee data as the report.
You specify the following parts of a chart using a QMF form: v chart heading v X-axis v X-axis data labels v Y-axis
178
179
<--------- JOB ----------> <- CLERK --> <- SALES --> <- TOTAL --> AVERAGE AVERAGE AVERAGE DEPT SALARY SALARY SALARY ---- ---------------------------15 12383.35 16502.83 13756.51 20 13878.68 18171.25 15309.53 38 12482.25 17407.15 14944.70 ======== ======== ========= 12914.76 17372.10 14697.69
32% 38
32% 15
33% 38
32% 15
36% 20
35% 20
Each numeric column (called Y-data columns) produces a separate pie. QMF displays column data as labels attached to the pie slices. It displays column headings as titles for the pies. Because each numeric column on a report produces a separate pie, you probably will not want to use a pie chart to display data from reports with more than two numeric columns.
180
Figure 141. Use this query to produce the charts for the examples.
181
NAME --------NAUGHTON ABRAHAMS OBRIEN QUIGLEY YAMAGUCHI SCOUTTEN KOONITZ LUNDQUIST WHEELER SMITH WILLIAMS
DEPT -----38 38 38 38 42 42 42 51 51 51 51
JOB YEARS SALARY COMM ----- ------ ---------- ---------CLERK 12954.75 180.00 CLERK 3 12009.75 236.50 SALES 6 18006.00 846.55 SALES 16808.30 650.25 CLERK 6 10505.90 75.60 CLERK 11508.60 84.20 SALES 6 18001.75 1386.70 CLERK 3 13369.80 189.65 CLERK 6 14460.00 513.30 SALES 7 17654.50 992.80 SALES 6 19456.50 637.65
Figure 142. The query produces this report for the examples.
If you do not specify a chart type, QMF creates the chart by using the GDDM default chart type. The following examples assume that the GDDM default chart type is bar. To specify a different chart type, enter:
DISPLAY CHART (ICUFORM=charttype
For the QMF-provided chart types, see QMF chart formats on page 177. While the ICU is creating the chart, you see a panel like the one in Figure 143. The chart displays.
GRAPHICS BRIDGE STATUS PANEL
Your request is currently being processed by the GDDM* Interactive Chart Utility (ICU).
When the chart is displayed, you will be within the ICU Environment. To return to the QMF environment, press the Exit key.
182
QMF creates this chart by using the default report form and the default chart format. You can change the appearance of a chart by changing the QMF form and by changing the ICU values. 3. Press the Home function key, then the Exit function key to return to the QMF panel where you issued the DISPLAY CHART command.
183
* Legend text for pie charts is an exception. The data from the report column that normally appears as labels along the X-axis appears as labels attached to the pie slices.
For this example, you will modify the QMF default form from the previous example to display a bar chart that shows average salaries for clerks and salespeople by department. To change a chart using forms: 1. Display the FORM panel you need to change. In this example, you make all the form changes on the FORM.MAIN panel. Enter SHOW FORM on the QMF command line, or press the Show function key. 2. Type the changes to the form. For this example, type the changes that are shown on the FORM.MAIN panel in Figure 145 on page 185.
184
FORM.MAIN
MODIFIED WARNING COLUMNS: Total Width of Report Columns: 24 NUM COLUMN HEADING USAGE INDENT WIDTH --- ---------------------------------------- ------- ------ ----1 ID OMIT 2 6 2 NAME OMIT 2 9 3 DEPT GROUP 2 6 4 JOB GROUP 2 5 5 YEARS OMIT 2 6 PAGE: HEADING FOOTING FINAL: TEXT BREAK1: NEW PAGE FOOTING BREAK2: NEW PAGE FOOTING OPTIONS: OUTLINE?
EDIT ----L C L C L
SEQ --1 2 3 4 5
===> SALES AND CLERK AVERAGE SALARIES FOR 1997 ===> ===> FOR BREAK? ===> NO ===> FOR BREAK? ===> NO ===> ===> YES DEFAULT BREAK TEXT? ===> YES
If the sixth and seventh columns do not appear on the sample panel, scroll forward to see them. Here is the information you change for those columns:
NUM 6 7 COLUMN HEADING SALARY COMMISSION USAGE AVERAGE OMIT
DEPT -----38 38 42 42 51 51
AVERAGE JOB SALARY ----- ---------CLERK 12482.25 SALES 17407.15 CLERK 11007.25 SALES 18001.75 CLERK 13914.90 SALES 18555.50 ========== 14975.99
Figure 146. The report reflects the changes you make on FORM.MAIN.
4. Enter DISPLAY CHART, or press the Chart function key to display your new chart.
185
You can change the QMF form to display the same data in a way that makes it easier to compare the salaries in a chart. For this example, type the information on the FORM.MAIN panel.Figure 148 shows the information to type.
FORM.MAIN COLUMNS: NUM COLUMN HEADING --- ---------------------------------------1 ID 2 NAME 3 DEPT 4 JOB 5 YEARS PAGE: HEADING FOOTING FINAL: TEXT BREAK1: NEW PAGE FOOTING BREAK2: NEW PAGE FOOTING OPTIONS: OUTLINE? MODIFIED
INDENT -----2 2 2 2 2
WIDTH ----6 9 6 5 6
EDIT ----L C L C L
SEQ --1 2 3 4 5
===> SALES AND CLERK AVERAGE SALARIES FOR 1997 ===> ===> FOR BREAK? ===> NO ===> FOR BREAK? ===> NO ===> ===> YES DEFAULT BREAK TEXT? ===> YES 4=Show 10=Insert 5=Chart 11=Delete 6=Query 12=Report SCROLL ===> PAGE
1=Help 2=Check 3=End 7=Backward 8=Forward 9= OK, FORM.MAIN is shown. COMMAND ===>
186
DEPT -----38 42 51
<--------- JOB ----------> <- CLERK --> <- SALES --> <- TOTAL --> AVERAGE AVERAGE AVERAGE SALARY SALARY SALARY ---------------------------12482.25 17407.15 14944.70 11007.25 18001.75 13338.75 13914.90 18555.50 16235.20 ========== ========== ========== 12468.13 17985.41 14975.99
Figure 149. The report shows average salaries for sales and clerks.
Within each department, the report displays the average salary for clerks and for salespeople in a different column. Each column is a bar on the chart. The TOTAL column and the final summary line do not appear on a chart. The chart looks like Figure 150.
187
HEADING, LEGEND, AND Legend Position and LAYOUT Format DATA ENTRY & IMPORT Group Name Attributes
HEADING, LEGEND, AND Chart Dimensions LAYOUT DATA ENTRY & IMPORT DATA ENTRY & IMPORT DATA ENTRY & IMPORT Data Attributes Data Interpretation Data Label Attributes
HEADING, LEGEND, AND Chart Heading (answer LAYOUT YES) HEADING, LEGEND, AND Heading and Axis Positions LAYOUT
Where charttype is the type of the chart you want to change. The chart of the type you specified displays. 2. Press the Home function key; the ICU Home panel displays. 3. Select the menu for the chart properties you want to change. 4. Make the appropriate selections for the changes.
188
Where charttype is the chart type of the chart you want to use as the default. For this example, enter:
DISPLAY CHART (ICUFORM=LINE
2. Set the REPLACE option to YES, and save the chart as DSQCFORM (the QMF default report format) on the ICU Save panel.
189
Where printer is the printer nickname your QMF administrator set up for you. When you initiate the PRINT command from a chart panel, you do not need to specify the object type in the command. From a chart panel, the object type for the PRINT command defaults to CHART. For more information on the PRINT command, see DB2 QMF Reference.
190
191
3.
4. 5.
6.
The PROC panel displays. Type the QMF commands you want this procedure to run in the order you want them to run. If you want to display and interact with panels just as you would if you entered a command on the QMF command, type INTERACT before the command name. For more information on the INTERACT command, see DB2 QMF Reference . Type comment lines if you need them. To insert lines in a procedure, move the cursor to the line you want to precede the new line, and press the Insert function key. Or, you can type INSERT on the QMF command line, move the cursor to the line you want to precede the new line, and press Enter. To delete lines from a procedure, move the cursor to the line you want to delete and press the Delete function key. Or, you can type DELETE on the QMF command line, move the cursor to the line you want to delete, and press Enter.
192
PROC -----
MODIFIED
LINE 1
MONDAY MORNING REPORT. PROCEDURES MAY CONTAIN COMMENT LINES; THEY BEGIN WITH TWO HYPHENS. A TITLE OR IDENTIFIER AT THE BEGINNING IS USEFUL.
RUN QUERY REPT4QRY (FORM=REPT4FORM -- THIS COMMAND RUNS YOUR QUERY AND FORMATS THE REPORT. SAVE DATA AS LASTWEEKDATA (CONFIRM=NO -- THIS COMMAND SAVES YOUR DATA AND OVERRIDES THE VALUE OF -- CONFIRM IN YOUR PROFILE FOR THE DURATION OF THE COMMAND. PRINT REPORT (LENGTH=50 -- THIS COMMAND PRINTS THE REPORT. -- YOU MAY OR MAY NOT WANT TO CHANGE PRINTING -- SPECIFICATIONS BY USING OPTIONS OF THE PRINT COMMAND. MESSAGE (TEXT OK, LASTWEEKDATA HAS BEEN SAVED AND PRINTED. --THE MESSAGE COMMAND CAN BE USED TO DISPLAY A MESSAGE WHEN THE --PROCEDURE HAS FINISHED.
*** END *** 1=Help 2=Run 7=Backward 8=Forward OK, cursor positioned. COMMAND ===>
3=End 9=Form
4=Print 10=Insert
6=Query 12=Report
QMF prompts you for the name you want to assign to the procedure. You can also enter:
SAVE AS procname
193
QMF does not insert a space between the last character of the first line and the first character of the second line, unless either of the following is true: The command includes an open quote You included a space at the end of the first line You cannot use a continuation character in a comment line, command keyword, or substitution variable name. You can use a continuation character in a substitution variable value, if you enclose the value in single quotes. You can type comments and blank lines between continuation lines. v Long names support: To continue an object name across one or more lines, it must be enclosed within double quotes. See the screen below.
PROC LONGOWN>.LONGCOLOUMNAME567> LINE 1
DISPLAY LOC4567890123456.OWNER678901234567890123456789012345678901234567 +890123456789012345678901234567890123456789012345678901234567890123456789012 +345678.ONAME6789012345678901234567890123456789012345678901234567890123456 +78901234567890123456789012345678901234567890123456789012345678 DISPLAY TABLE ObjName *** END *** 1=Help 2=Run 7=Backward 8=Forward COMMAND ===> 3=End 9=Form 4=Print 10=Insert 5=Chart 11=Delete 6=Query 12=Report
194
3. 4.
5.
6. 7.
The PROC panel displays. Type a REXX comment line as the first line of the procedure. REXX comment lines begin with /* and end with */. Type the QMF commands you want the procedure to run in the order you want them to run. Because QMF does not convert any text in a procedure, type all QMF commands in uppercase, or they do not run. Enclose all QMF commands in quotes, otherwise any QMF command identical to a REXX command (such as EXIT) is processed as a REXX command. If you want to display and interact with panels just as you would if you entered a command on the QMF command, type INTERACT before the command name. For more information on the INTERACT command, see DB2 QMF Reference. Type the logic statements for the procedure. You can use any REXX function in a procedure with logic. You can also include internal functions for arithmetic operations, character manipulation, data conversion, and information gathering, and you can write your own external functions. Type REXX comment lines (instead of QMF comment lines) if you need them. Type a REXX exit statement at the end of the procedure. The procedure in Figure 153 on page 196 has two exit statements. One has an exit code of 0, meaning that the procedure ran successfully. The other has a return code of 8, meaning that an error occurred while the procedure was running.
8. To insert lines in a procedure, move the cursor to the line you want to precede the new line, and press the Insert function key. Or, you can type INSERT on the QMF command line, move the cursor to the line you want to precede the new line, and press Enter. 9. To delete lines from a procedure, move the cursor to the line you want to delete and press the Delete function key. Or, you can type DELETE on the QMF command line, move the cursor to the line you want to delete, and press Enter. 10. To save the procedure in the database, enter:
SAVE AS procname
195
PROC
MODIFIED
LINE
/* This procedure checks to see what day it is. If its Monday, it runs a query and prints a report. If it isnt, a message is displayed informing the user. */ signal on error if date(w) = Monday then do "RUN QUERY MYQUERY (FORM = MYFORM" "PRINT REPORT" "MESSAGE (TEXT=OK, MONDAY report has been created and sent to printer." end else do "MESSAGE (TEXT=Sorry, it is not Monday. Report cannot be created." end exit 0 /*Exit without errors */ error: "MESSAGE (TEXT = "dsq_message_text"" exit 8 /*Exit with error condition*/ *** END ***
In the procedure that is shown in Figure 153, the REXX DATE function provides the day of the week. The rest of the procedure includes QMF commands that are run depending on the day of the week.
Because this statement is a QMF command that is split into two lines, both lines are enclosed in quotes. The continuation character is placed at the end of the first line, outside the quotes.
196
3=End 9=Form
4=Print 10=Insert
5=Chart 11=Delete
6=Query 12=Report
The proc object name at the top of the screen might be truncated if the authorization ID is longer than 8 characters or the object name is longer than 18 characters. Enter the SHOW NAME command from the command line to display a pop-up screen that contains the complete object name. See the SHOW NAME command for more details.
Running a procedure
To run a procedure, on the QMF command line, enter:
RUN PROC procname
The QMF commands you specify in a linear procedure run in the order they appear in the procedure. The QMF commands you specify in a procedure with logic run in the order that is specified by the logic of the procedure. If the QMF commands in the procedure run a query or display a query or form, they change the contents of the temporary storage areas DATA, FORM, or QUERY. This occurs just as if you entered each command separately on the QMF command line. If an error occurs while a linear procedure is running, QMF stops running the procedure. The PROC panel displays the command that contains the error the top of the panel. The error message at the bottom of the screen provides information on correcting the error.
Chapter 8. Creating a procedure to run QMF commands
197
To check whether an object is shared, use the LIST command to display the object. Move the cursor to the object name and press the Describe function key. If the object is shared, the value in the Restricted field on the object description panel is No. For more information on displaying a list of database objects, see Chapter 3, Displaying a list of database objects, on page 29. Make sure that you qualify the name of every shared object in a procedure with your user ID or the user ID of the person who owns it. Doing this ensures that other people use the correct procedure, in case they have procedures with identical names.
198
Creating a procedure to run QMF commands Specifying values for variables on the RUN command
You can assign a value to a substitution variable by using the RUN command: v In your linear procedure:
RUN PROC SCHEDULE (&&TYPE=VACATION
You enclose the variable value VACATION in single quotes because the value is a character string. Precede the variable with && to set the value on the RUN statement, or with & if the procedure prompts you for the value. This value for the substitution variable is active only within the procedure that defines it. The value is not active in any procedure or module called from the defining procedure. In the previous example, the value of &&TYPE is available only to the procedure that is called SCHEDULE.
You can specify up to 10 variable values. Separate the values with commas or with blanks. You can use the SET GLOBAL command to prompt for all the values in your procedure at the same time, as in the following example:
"SET GLOBAL (LASTNAME=&LASTNAME,DEPT_NUM=&DEPT_NUM";
199
RUN Command Prompt -- Values of Variables Your RUN command runs a query or procedure with variables that need values. Fill in a value after the arrow for each variable named below: 1 to 10 of 10 38__________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________ ____________________________________________________
&DEPARTMENT
This value for the substitution variable is active only within the procedure that defines it. The value is not active in any procedure or module called from the defining procedure. In a linear procedure, QMF scans the procedure for substitution variables and resolves them before it processes any commands. It prompts you for all variable values before the procedure runs. In a procedure with logic, QMF does not prompt you for variable values until REXX encounters the statement that contains the variables. For example, if your procedure with logic includes three statements that contain variables that QMF must prompt you for, QMF prompts you three timesonce for each statement. If you want a procedure with logic to prompt you for all the necessary variable values at one time, as the linear procedure does, use a dummy procedure. Suppose you want to be prompted once for the substitution variables LASTNAME and DEPT_NUM, which occur on two different lines in your procedure with logic as shown in Figure 156.
/* This procedure runs two queries, displaying the report after each */ /* procedure has run. */ "RUN QUERY REG_QUERY (&&LASTNAME=&LASTNAME"; "INTERACT" "RUN QUERY REG2_QUERY (&&DEPT_NUM=&DEPT_NUM";
Add the following line to the beginning of your procedure with logic, immediately following the comment lines:
"RUN PROC PROMPT_ME (&LASTNAME, &DEPT_NUM";
200
/* PROMPT_ME is a dummy proc used by other procedures. */ "RUN PROC PROMPT_ME (&LASTNAME, &DEPT_NUM"; "RUN QUERY REG_QUERY (&&LASTNAME=&LASTNAME"; "INTERACT" "RUN QUERY REG2_QUERY (&&DEPT_NUM=&DEPT_NUM";
Figure 157. This procedure prompts you to enter the substitution variables.
201
Hello, whoisuser. Please enter the letter of the weekly report you would like, or NONE to exit: A. Sales results (Monday Only) B. Tax figures C. Cumulative salaries
Specify a REXX PULL statement to retrieve the input from the screen and place it in the REXX variable answer as shown in Figure 160 on page 203.
202
/*
This procedure can produce any of three weekly reports regularly produced by the Acme CompanySales, Tax, Cumulative Salaries, Inventory. It prompts the user for the type of report wanted, runs the necessary queries, and checks for errors. */
arg report . /* get any arguments from RUN PROC */ ok = NO /* set variable for do loop */ "GET GLOBAL (WHOISUSER = DSQAO_CONNECT_ID" /* identify user */ if report = then /* check to see if no arg entered */
/* if no arg entered, prompt user until A,B,C, or NONE is entered */ do until ok = YES say say say say say say say Hello, whoisuser. Please enter the letter of the weekly report you would like, or None to exit: A. Sales results (Monday Only) B. Tax figures C. Cumulative salaries /* get answer from user */ /* strip any leading or trailing blanks */ */ */
if answer = NONE then exit 3 /* exit immediately if NONE if pos(answer,ABC) = 0 then ok = YES /* if invalid value, end /* keep prompting. */ else answer = report
Figure 160. PULL statements take user input from the screen.
The exit code 3 was selected here to indicate the exit condition when the user enters None. As with any exit code, you choose the number to indicate an exit condition.
203
PROC
WILDE.SHOW_ARGS
MODIFIED
LINE 1
/************************************************************************/ /* This procedure shows you how to use the ARG= option on the RUN */ /* PROC command. */ /************************************************************************/ parse upper arg query_name form_name "RUN QUERY" query_name "(FORM="form_name
Figure 161. The ARG option passes values to a procedure with logic.
Name is made up of alphanumeric characters Name must begin with an ampersand in lowercase or uppercase. (&), followed by alphanumeric and special characters what_2_do &DEPARTMENT Can be used in REXX statements: if progname = then Can be given a value on the RUN PROC command using the QMF ARG parameter and the REXX ARG parameter: RUN PROC MYPROC (ARG=MONDAY arg whichday Can be given a value using a QMF global variable and the QMF GET GLOBAL command: "GET GLOBAL (WHO_IS_IT = DSQAO_CONNECT_ID" Can be used to set a global variable value using the QMF SET GLOBAL command: "SET GLOBAL (JOBTYPE =" JOBVAR Automatically assigned a value by QMF at the time the command is run if a global variable by that name has been set (if the substitution variable has not already been given a value) Cannot be used to set a global variable value Can be used in QMF commands: "RUN QUERY MYQUERY (FORM = &FORMNAME" Can be given a value on the RUN PROC command: "RUN PROC MYPROC (&&FORMNAME MYFORM" =
204
Creating a procedure to run QMF commands Using REXX error-handling instructions in procedures with logic
You can use REXX error-handling techniques, such as the REXX SIGNAL instruction, in a procedure with logic. In addition, you can use QMF commands and variables with the REXX EXIT instruction to help clarify nonzero return codes.
Note to TSO users and CMS users Signal on error returns errors from the QMF REXX procedure (ADDRESS QRW) command environment, but not the REXX callable interface. v Error label The signal on error instruction requires that you provide a label that the procedure can branch to if it encounters a nonzero return code. The label precedes your error-handling code. The return code is in the variable rc. You can use this variable to branch to another subroutine, or you can use it in your EXIT instruction, as shown in Figure 162.
205
Message at completion of procedure OK, your procedure was run The return code from your procedure was 8 The error message provided by QMF The error message provided by QMF
An error message takes precedence over the return code message if you have an incorrect QMF command and a nonzero return code. If you want to show the error message from the last command and exit with a nonzero return code, use the MESSAGE command as in Figure 163.
Figure 163. Specify MESSAGE to see the error message from the last command.
The variable dsq_message_text is a QMF-provided REXX variable. You can use the MESSAGE command and the dsq_message_text variable to store and display a message after further processing has occurred, as shown in Figure 164.
/* Monthly report Signal on error "DISPLAY TABLE JUNE_INFO" "PRINT REPORT" Exit(0); Error: Original_msg = dsq_message_text "RUN PROC GENERAL_RECOVERY"
*/
Saves error message. */ This proc generates */ new dsq_message_text. */ Display original error msg. */
Figure 164. The MESSAGE command displays the original error message.
For more information on the MESSAGE command, see DB2 QMF Reference.
206
Creating a procedure to run QMF commands Calling REXX programs from a procedure with logic
You might have procedures that call applications. When you call your REXX callable interface application from a procedure with logic, be careful about the number of ampersands you specify for the substitution variables in your application. This is important if the program being called contains a RUN command with substitution variables, as in RUN QUERY WEEKLY_Q (&&DEPT=58.
v The CALL instruction This instruction starts a program. For the program named PANDA, the command is:
CALL PANDA
For more information on any of these commands, see the REXX reference manual for your system. You might consider removing the substitution variables from the RUN command if you want to call your programs by using one of the REXX invocation calls. In that case, QMF prompts the user for the variables.
207
If a substitution variable has only one ampersand, QMF resolves the variable for the procedure itself, and cannot pass the variable to the query. If you call a REXX callable interface application from a procedure with logic, and that application contains the command RUN QUERY WEEKLY_Q (&DEPT=58, QMF resolves the variable just as it would for the calling procedure. Because the statement contains only one ampersand, the variable is not passed to the query. To pass variables to QMF from a REXX callable interface application that is called by a procedure with logic, you have three choices: v Use the CMS or TSO command to call the application. When you call the application, QMF does not process any substitution variables it encounters. In the preceding command, &DEPT=58 is passed to the query, where the substitution variable is resolved. v Treat all substitution variables in your application as though you were using them in a procedure with logic. Add an ampersand to every substitution variable so the procedure with logic does not resolve it. v Use global variables. You can define global variables at the start of your application and use them throughout your QMF session.
The procedure looks like the one that is shown in Figure 165 on page 209.
208
CONNECT TO DALLAS RUN PROC GENERATE_REPORT (FORM=GEN_FORM PRINT REPORT CONNECT TO MIAMI
Make sure that you store the procedure at the current location, in the same database to which you are connected when you issue the RUN PROC command. When you connect to a new location, QMF re-initializes your profile, except for the value of TRACE. It also re-initializes command synonyms and function keys to the values at the new (current) location. When you write procedures that use the QMF CONNECT command to access remote databases, keep the following guidelines in mind: v If you are connected to a remote database and issue a RUN PROC command, that procedure and all the objects used in that procedure must be stored at the remote database. v All QMF commands in the procedure run in QMF temporary storage at the system where QMF is running (the local system). However, all objects used by these QMF commands (such as queries, procedures, or forms) must be defined in the database at the current location (the remote system). v All commands that affect the database (for example, SQL statements, QMF queries, or EDIT TABLE updates) run at the current location. v If the procedure contains system-specific commands (CICS, CMS, or TSO), these commands run at the system where QMF is running (the local system). If your procedures contain system-specific commands that do not run on the system where QMF runs, your procedure will not run successfully. v Any files or data sets that are used in a system-specific command must exist on the system where QMF is running (the local system). For more information about using the QMF CONNECT command and remote unit of work support, see the DB2 QMF Reference manual.
209
This query allows the user or a procedure to specify the column names and row conditions just before running the query. Using a procedure, you can assign values to the QMF query substitution variables (&SELECT1 and &COND1) by using one of the following procedures: v Pass the substitution variable values to the query on the RUN QUERY command. To write this type of procedure, see Passing variables to the template query. v Set global variable values. To write this type of procedure, see 211. Both of the procedures that are described in this scenario produce the same results.
/* REXX PROC */ IF DATE(W) = Friday THEN DO sel = (NAME, JOB, SALARY, COMM) con1 = "((SALARY > 15000) OR (JOB = MGR))" END ELSE DO sel = * con1 = (DEPT=51) END "RUN QUERY SENIORSTAFF (&&SELECT1 ="sel",&&COND1 ="con1
Figure 166. The procedure passes values on the RUN QUERY command.
210
QMF assumes that the variables are procedure variables, rather than variables to be passed to the query, and prompts you for their values when you run the procedure. In the following lines from this procedure, the procedure assigns a character string to a REXX variable:
con1 = "((SALARY > 15000) OR (JOB = MGR))" con1 = (DEPT=51)
These values are then passed to the query on the RUN QUERY command. The values in the first REXX variable assignment, SALARY and JOB, are enclosed in double parentheses because the character strings passed to the query contain single parentheses and an equal sign. For the complete rules about using parentheses around character strings that are passed on a RUN command, see the DB2 QMF Reference manual. When you run this procedure on a Friday, the procedure sets the substitution variables and passes the values to the query so that QMF runs the following query:
SELECT NAME, JOB, SALARY, COMM FROM Q.STAFF WHERE (SALARY > 15000) OR (JOB=MGR)
If you run this procedure on any day other than Friday, QMF runs the following query:
SELECT * FROM Q.STAFF WHERE DEPT = 51
Writing a procedure that sets global variables for the template query
You can write a procedure that sets global variable values according to REXX logic. These values are then available to the template query when the procedure issues the QMF RUN QUERY command. The procedure in Figure 167 on page 212 sets the query variables as global variables. The results are the same as those explained in Passing variables to the template query on page 210.
211
/*
REXX PROC
*/
IF DATE(W) = Friday THEN DO "SET GLOBAL (SELECT1 = NAME, JOB, SALARY, COMM" "SET GLOBAL (COND1 = (SALARY > 15000) OR (JOB = MGR)" END ELSE DO "SET GLOBAL (SELECT1 = *" "SET GLOBAL (COND1 = (DEPT = 51)" END "RUN QUERY SENIORSTAFF"
Note to CICS Users Because ISPF does not run in the CICS environment, you cannot use the QMF BATCH command. In QMF batch mode, you can run both linear procedures and procedures with logic in the z/OS environment while you perform other work at your terminal. You can run procedures in batch at any time, and you do not have to interact with QMF while the procedure is running. ISPF is required to use the QMF BATCH application. To run a procedure in batch mode, first create and save the procedure, just as you would to run it interactively. Then use the QMF batch application, which simplifies batch processing. The application prepares and submits the batch job from information that you enter on the batch prompt panel. You only need to know the name of the procedure and a few details about the batch machine on your system. However, it still might be necessary to contact your information center to have the application tailored to your needs.
212
Restrictions
The following restrictions apply equally to main and subordinate procedures unless otherwise indicated. v Do not write incomplete commands. In batch mode, QMF has no way of prompting you for the complete command. v Do not try to directly access command prompt panels. (Do not issue commands that use the question mark to obtain the command prompt panels.) v Do not issue commands that might cause the display of confirmation panels. These are commands that erase, update, or replace database objects, or that replace exported files. A confirmation panel asks you whether you want to make a change. In batch mode, QMF has no way of handling such prompts. You can still issue commands that erase or change data objects, but you must inhibit the confirmation prompt. To inhibit the confirmation panel, include CONFIRM=NO or issue the command:
SET PROFILE (CONFIRM=NO
v Avoid situations that might display the incomplete data prompt. QMF has no way to prompt you in batch mode. v Save the main batch procedure, specifying SHARE=YES. If you have issued a SET GLOBAL command with the value DSQEC_SHARE=1 prior to this SAVE command, you do not need to specify the SHARE=YES parameter. If you are using a National Language Feature (NLF): You are writing a sequence of QMF commands that the NLF must understand. The verbs and keywords in the commands must be the translated versions of their English-language counterparts: ANZEIGEN for DISPLAY, for example, in a German batch mode procedure, and PROZEDUR for PROC.
213
SET
Eliminates the possible display of confirmation panels- in batch mode, such a display produces an error
RUN QUERYA Passes the value 007 to QUERYA for the substitution variable &LICENSE- if QUERYA contained other substitution variables, the run would fail The object names in this command are not qualified with the owners name. Their owner is, therefore, the person for whom the procedure is being run; that is, the person whose logon ID appears as the USER parameter on the JOB card. PRINT Prints a report based on the query results- the output goes to the DSQPRINT data set SAVE Saves the data in the database The SAVE command does not need to contain CONFIRM=NO because of the SET PROFILE command at the start of the procedure. If the DATA object is too large for the storage that is reserved for it, the SAVE command might end the procedure through the incomplete-data prompt condition. RUN PROCA Runs a procedure that does something with TABLEA (the table that was just created or replaced by the SAVE command) The name of this table is passed to the procedure through the &TABLE parameter. This command fails if the procedure called has other substitution variables not set. EXIT Ends the procedure and QMF
214
Creating a procedure to run QMF commands Using the EXIT command in QMF procedures
QMF stops after the EXIT command runs. A procedure also stops after it runs the command on its bottom line. If this command is not EXIT, one of three things happens: v For a subordinate procedure, control is returned to the calling procedure without ending QMF. This is true in both batch and interactive modes. v For a main procedure in batch mode, QMF is ended. v For a main procedure in interactive mode, control returns to the user, in QMF (unless the procedure is an initial procedure). Ending a main procedure in batch mode always ends QMF. This is why the sample batch procedure does not need the EXIT command.
Effect of errors
Any error encountered while running a linear procedure ends the procedure. The logic in your procedure handles any errors encountered while running a procedure. For more information, see Using REXX error-handling instructions in procedures with logic on page 205.
215
216
217
Making QMF objects reusable Creating, changing, and deleting variables from the global variable list
The easiest way to display, change, add, or delete global variables is with the SHOW GLOBALS command. When you enter SHOW GLOBALS on the QMF command line, QMF displays a global variable list panel similar to Figure 168.
GLOBALS Type a value for a global variable and press Enter or press a function key. Variable values may be changed if they are enclosed in parentheses or brackets. Variable Name: Value: ------------------ -----------------------------------------------------1 to 11 of 97 EMPLOYEE_NAME ( SANDERS ) LOCATION_LIST ( NEW YORK, BOSTON, WASHINGTON, ATLANTA, > MAXIMUM_SALARY ( 18999 ) MINIMUM_SALARY ( 17000 ) TABLE_NAME ( Q.STAFF ) DSQAO_APPL_TRACE 0 DSQAO_ATTENTION 0 DSQAO_BATCH 1 DSQAO_CICS_SQNAME DSQAO_CICS_SQTYPE DSQAO_CICS_TQNAME 1=Help 2= 3=End 4= 5=Show Field 6=Query 7=Backward 8=Forward 9=Form 10=Add 11=Delete 12=Report COMMAND ===>
The global variable list panel uses one row on the screen for each global variable. The variable name appears on the left, and up to the first 50 characters of the variable value appear on the right. Variables you defined appear in alphabetic order first. Then, QMF DSQ variables appear in alphabetical order. Global variables added on the SHOW GLOBALS panel can have a length of up to 32,768 characters. Variable values that are longer than a single line are indicated by a greater-than (>) sign to the right of the value.
218
To change a variable value in the Show Field panel, type over the displayed value and press Enter. To close the window without changing the variable value, press the Cancel function key.
219
In QMF Version 7.2, the SET GLOBAL command has been modified. It now can copy from another global value:
SET GLOBAL(Variablename = &Variablename
If you use linear syntax for the SET GLOBAL command, the maximum length of the value is 55 characters. If you use the extended syntax for this command, the maximum length is 32,768 characters. For more information on the extended syntax of the SET GLOBAL command, see Developing DB2 QMF Applications. RESET GLOBAL Lets you delete some or all of your global variables- to delete a global variable, enter:
RESET GLOBAL (JOBTYPE
220
221
222
Creating a table
To create a table, use the SQL CREATE TABLE statement:
CREATE TABLE tablename (columnname datatype definition, columnname datatype definition) IN spacename
Where:
223
Creating tables
v v v v v tablename is the name of the table columnname is the name of a column datatype is the data type of the data you are using in that column definition (optional) describes whether the column can contain nulls spacename is the dbspacename (DB2 Server for VSE) or tablespacename (DB2) where you store the table
The example in Figure 170 shows you how to create a table for an appointment calendar. The table name is CALENDAR. There are columns for the month, day, time, location, and reason for the event.
MONTH DAY TIME LOCATION REASON ----- --- ------ --------------- ------------------------------5 24 15.30 BIG CONF. RM. ANNES BIRTHDAY PARTY 5 25 10.45 BRIEFING CTR. SALES CAMPAIGN KICK-OFF
Specifying NOT NULL prevents you from entering an appointment without a MONTH, DAY, TIME, and LOCATION. Specify a data type (character, numeric, or date/time) for each column. You must specify spacename when you create a query. There are often several ways to specify columns and data types for a table. In this example, you can combine the MONTH and DAY columns into one column and use the DATE data type. Or, you can use the TIME data type for the time column. If you use DATE and TIME data types, your CREATE TABLE statement looks like the one that is shown here:
CREATE TABLE CALENDAR (CALDATE DATE NOT NULL, TIME TIME NOT NULL, LOCATION VARCHAR(15) NOT NULL, REASON VARCHAR(36)) IN space-name
For more information on data types, see the SQL reference manual for your database management system.
224
Creating tables
SAVE DATA AS tablename (ACTION=APPEND
Where tablename is the name of the table to which you want to append the new table. For example, to append a table that is called NEWAPPTS to the existing table CALENDAR, enter:
DISPLAY TABLE NEWAPPTS SAVE DATA AS CALENDAR (ACTION=APPEND
The new table must have the same number of columns and the same data types as the existing table.
225
Creating tables
CREATE VIEW MYCAL (CALDATE, TIME, LOCATION) AS SELECT CALDATE, TIME, LOCATION FROM CALENDAR
Depending on your database configuration, you might need to specify an owner qualifier when you specify the table. In that case, enter:
CREATE SYNONYM CALEN FOR userid.CALENDAR
Now you can use the synonym where you previously specified the table name. In the previous example, you can specify CALEN instead of CALENDAR. If you share a query that uses a synonym, the users you share it with must define the same synonym before they can run the query. | | | | | | | | | | | | | |
Depending on your database configuration, you might need to specify an owner qualifier when you specify the table. In that case, enter:
CREATE ALIAS CALEN FOR userid.CALENDAR
You can use an alias in the same way you use a synonym. The difference between a synonym and an alias, however, is that a synonym can be used only by its owner, and an alias can be used by its owner and other users. If you share a query that uses an alias, the users you share it with do not have to define the same alias before they can run the query.
226
Creating tables
| Deleting tables, views, synonyms, and aliases | | | | | | | | | | | | | | | You can use either the QMF ERASE command or the SQL DROP statement to erase tables, views, synonyms, and aliases from the database. For example, to use the QMF ERASE command to delete the CALENDAR table, enter:
ERASE TABLE CALENDAR
To use the SQL DROP statement to erase the same table, run this query:
DROP TABLE CALENDAR
When you use either the DROP statement or the ERASE command to delete a table from the database, any views or synonyms you created from them are also dropped. To erase a table, you must be the owner of the table or have DBADM authority. To erase a view or an alias, you must be the owner or have SYSADM or SYSCTRL authority. To erase a synonym, you must be the owner of the synonym.
227
228
F1=Help F7=Backward
F3=End F9=Clear
229
OWNER NAME LOCATION Panel 1 to 9 of 9 Owner ..... ..... Name .... .... ( QQ ( ( ) ) )
Adding rows
To add rows to a table using the Table Editor: 1. Do one of the following tasks, depending on where you are starting: v From the QMF Home panel, type:
230
then, press the Edit Table function key. v From any other QMF panel with a command line, enter:
EDIT TABLE tablename (MODE=ADD
For example, to add rows to the PERS table from the QMF Home panel, type PERS (MODE=ADD, and press the Edit Table key. To enter the same command and save each addition as you make it, enter:
PERS (MODE=ADD SAVE=IMMEDIATE
The Table Editor ADD panel displays, showing the name of each column in the table, followed by an entry field where you enter new data for that column. On this panel:
ADD USERID.PERS 1 to 7 of 7 (_-______) (_+_________________________) (_-____________________) (_-____________________) (_-__) (_-______) (_+______) (_+_________________________________________________>
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
v The name of the table you are editing and the user ID of the table owner appear at the top of the panel. v The columns displayed on this panel make up one row in the table. v A null indicator (not the same as zero or blank) or a column default indicator (if available for the column) is displayed in each field to indicate that nothing has been entered. These indicators are configurable. See Specifying column default and null indicator on page 232 for more information. A blank or a zero means that a blank or zero value has been entered for that column. v The scroll indicator tells you how many columns are in a row, and how many columns appear on the panel. To move a specific column to the top of the panel, type its number in the first position of the scroll indicator. Press the Forward key to see the rest of the columns. Table Editor panels do not have a command line, so press the appropriate function key for the command you want to issue.
231
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
Figure 174. Type data for your table in the fields on the panel.
3. Press the Add function key after entering all the data for the row. If you specified that you want to save each row when you press the Add function key (SAVE=IMMEDIATE), QMF adds the new row to the table. If you specified that you want to hold all the rows and save them when you end the Table Editor session (SAVE=END), the new row is held temporarily until you end the Table Editor session. The Table Editor ADD panel is reset as is shown in Figure 173 on page 231.
232
If you specify the column default for a column that does not have a default, QMF returns an error message, and prompts you to correct your entry. Possible reasons QMF might not be able to detect a default value are: v No default exists for the column v The table you are editing has a 3part name that refers to a remote location v The table you are editing is a view located at a DB2 Common Server (Version 2.1.1 or higher) or DB2 for OS/390 (V4 or higher.)
Once you have issued this command, the table editor session illustrated in Figure 173 on page 231 would look like this:
ADD USERID.PERS 1 to 7 of 7 (_#______) (_?_________________________) (_#____________________) (_#____________________) (_#__) (_#______) (_?______) (_?_________________________________________________>
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
Figure 175. The Table Editor ADD panel with new values for the column default and null indicators
233
. . . . . . .
. . . . . . .
. . . . . . .
. . . . . . .
. . . . . . .
Figure 176. You can enter more data in long fields with the Show Field key.
4. Press Enter to save the data in the field. The Table Editor ADD panel displays with the first 50 characters of the field displayed.
234
Then, press the Edit Table function key. v From any other QMF panel with a command line, enter:
EDIT TABLE tablename (MODE=CHANGE
For example, to change rows in the PERS table from a QMF command line, enter:
EDIT TABLE PERS (MODE=CHANGE
To enter the same command and save each addition as you make it, enter:
EDIT TABLE PERS (MODE=CHANGE SAVE=IMMEDIATE
235
SEARCH
USERID.PERS 1 to 7 of 7 (_15002__) (_S & J Supply Co.__________) (_948 C Street_________) (_Boston_______________) (_MA_) (_06000__) (_-_______) (_-__________________________________________________>
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
To select the rows: 1. Type the criteria you want to use to select the rows to change. Leave a null in any field for which you are not specifying selection criteria. Press the Clear function key to clear all the fields and set them to the null or column default indicator. Press the Show Field function key to see the data type for a column. If you want to select all the rows in the table, press Enter. If you want to select a specific set of rows to change, you can use the underscore (_) and the percent sign (%) as selection symbols to specify selection criteria for any column that contains character or graphic data. v Use an underscore to fill in for one character. v Use the percent sign to fill in for zero or more characters. 2. Press the Search function key. To search on ROWID, you must specify a valid hexadecimal value for an existing ROWID. You cannot update a ROWID value in a table; ROWID values are managed dynamically by DB2. The Table Editor Change panel displays with the first row you selected.
236
CHANGE
USERID.PERS 1 to 7 of 7 (_15002__) (_S & J Supply Co.__________) (_1951 Easy Street_____) (_Boston_______________) (_MA_) (_06000__) (_-_______) (_-__________________________________________________>
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
If you specified that you want to save each row when you press the Change function key (SAVE=IMMEDIATE), QMF adds the changes to the table. If you specified that you want to hold all the rows and save them when you end the Table Editor session (SAVE=END), the new row is held temporarily until you end the Table Editor session. If there are more rows to display from the set you selected, the Table Editor Change panel displays. If there are no more rows that are left to display, the Table Editor Search panel displays.
237
For more information on all the Table Editor commands, see DB2 QMF Reference.
The SQL query panel displays. 2. On the QMF command line, enter:
DRAW tablename (TYPE=INSERT
The INSERT query template for the table displays. 3. Under ENTER VALUES BELOW, type the data for each column. 4. Press the Run function key. QMF adds the new row to the table. Repeat these steps to add additional rows to the table.
238
Maintaining the data in your tables Writing your own query to add rows
You can write your own insert query by using SQL statements. To create an insert query, use the SQL INSERT statement. The syntax of the INSERT statement is:
INSERT INTO tablename VALUES (value1, value2, value, ...)
Where: v Tablename is the name of the table to which you are adding data v value1, value2, value3 is the data you are adding to each column. To write an insert query: 1. Enter:
RESET QUERY (LANGUAGE=SQL
The SQL query panel displays. 2. Use the SQL INSERT statement to add data to each column. If you do not specify data for a column, QMF adds a null value. 3. Press the Run function key to run the query. QMF adds the new row to the table. Repeat these steps to add additional rows to the table.
The UPDATE query template for the table displays. 3. Under ENTER VALUES BELOW, type the data for each column.
Chapter 11. Maintaining the data in your tables
239
The SQL query panel displays. 2. Use the SQL UPDATE statement to change rows. 3. Press the Run function key to run the query. QMF makes the updates to the table. Repeat these steps to make additional updates to the table.
This query deletes all rows that are associated with department 38:
DELETE FROM MYSTAFF WHERE DEPT = 38
Copying rows from one table into another using SQL statements
You can use an insert query to copy certain rows and columns from an existing table into another table. You can add the rows to an existing table, or you can specify a new table name and create a new table to contain the rows you specify.
240
After running this query, QMF adds five new rows to the MYSTAFF table. For these employees, the YEARS, SALARY, and COMM columns contain null values, because QMF does not select these columns in the query. If you want to include all the data for a row, you must select all the columns in the table.
NOTES is the name of the new column, VARCHAR is the data type, and 40 is the number of characters in the column. If you are storing the table in a DB2 database, you can specify a default value other than null for the column. If you are storing the table in a DB2 Server for VSE or VM database, the default value must be null for the column. For more information on the ALTER TABLE SQL statement, see DB2 Universal Database for z/OS SQL Reference for your database management system.
241
To allow LINDSAY the authority to view the data in the PERS table, run this query:
GRANT SELECT ON TABLE PERS TO LINDSAY
To allow authority to the MYSTAFF table to remote users, run this query:
GRANT ALL ON TABLE MYSTAFF TO PUBLIC AT ALL LOCATIONS
Note to CICS Users You can only allow users authority to view data in tables at remote locations.
242
Maintaining the data in your tables Allowing users to update specific columns in your tables
You can give another user authority to update specific columns in your tables. The following example shows you how to give LINDSAY the authority to update the LOCATION column in the CALENDAR table. To give user authority for specific columns: 1. Run this query to allow another user to view the data in the query and to select rows to change:
GRANT SELECT ON TABLE CALENDAR TO LINDSAY
2. Run this query to allow another user to update a specific column in the table:
GRANT UPDATE(LOCATION) ON TABLE CALENDAR TO LINDSAY
For more information on the GRANT SQL keyword, see the SQL reference manual for your database management system.
For more information on the REVOKE SQL keyword, see the SQL reference manual for your database management system.
243
To update a character column with the CURRENT DATE or CURRENT TIME value in a format other than ISO, use a statement such as the following example:
UPDATE date_table SET date_column = CHAR(CURRENT DATE, EUR) WHERE (clause identifying row to be updated)
244
You can export reports and charts from temporary storage, but you cannot import them into temporary storage. When you export a QMF object from an object panel, you do not need to specify the object type for the export. For example, if you enter an export command from a form panel, the form currently displayed in the panel is
Copyright IBM Corp. 1982, 2005
245
For example, to export a query from temporary storage to a data set that is named REPORTX, enter:
EXPORT QUERY TO REPORTX
For example, to export a query that is named MYREP4Q in the database to a data set that is named RPT4Q, enter:
EXPORT QUERY MYREP4Q TO RPT4Q
You can use either a fully qualified or partially qualified name in TSO. For more information on using TSO data set names with the EXPORT command, see the QMF Reference.
For example, to export a query in temporary storage to a file, named REPORTX, enter:
EXPORT QUERY TO REPORTX
If you do not specify a file type or file mode, QMF uses the object type, in this case QUERY, as file type, and A as the file mode. To export a QMF object in the database to a file, enter:
EXPORT objecttype objectname TO filename
For example, to export a query that is named MYREP4Q in the database to a file that is named RPT4Q, enter:
EXPORT QUERY MYREP4Q TO RPT4Q
246
For example, to export a query in temporary storage to a data queue that is named REPORTX, and a queue type of TS, enter:
EXPORT QUERY TO REPORTX
For example, to export a query that is named MYREP4Q in the database to a data queue that is named RPT4Q, and a queue type of TS, enter:
EXPORT QUERY MYREP4Q TO RPT4Q
See DB2 QMF Reference for more details on the EXPORT REPORT command. The resulting report contains HTML code that allows your report to be viewed with a web browser.
247
For example, to import a query in a data set that is named REPORTX to temporary storage, enter:
IMPORT QUERY FROM REPORTX
For example, to import a query that is named MYREP4Q from a data set that is named RPT4Q to the database, enter:
IMPORT QUERY MYREP4Q FROM RPT4Q
You can use either a fully qualified or partially qualified name in TSO. For more information on using TSO data set names with the IMPORT command, see the QMF Reference.
For example, to import a query in a file that is named REPORTX to temporary storage, enter:
IMPORT QUERY FROM REPORTX
If you do not specify a file type or file mode, QMF uses the object type, in this case QUERY, as file type, and A as the file mode. To import a QMF object in a file to the database, enter:
IMPORT objecttype objectname FROM filename
248
For example, to import a query in a data queue that is named REPORTX, with a queue type of TS, to temporary storage, enter:
IMPORT QUERY FROM REPORTX
For example, to import a query that is named MYREP4Q from a data queue that is named RPT4Q, and a queue type of TS, to the database, enter:
IMPORT QUERY MYREP4Q FROM RPT4Q
For more information on the EXPORT command and the IMPORT command, see DB2 QMF Reference.
249
250
251
252
______________________________________________________________________________ +-----------------------------------------------------------------------------+ | CONNECT Command Prompt | | 1 to 10 of 10 | | Userid ( ) | | Enter the DB2 Server for VSE or VM userid on whose authority the | | connection is to be made. | | | | Password ( ) | | Enter the DB2 Server for VSE or VM password that allows you to connect | | to thedatabase using the authority of the userid named above. | | TO | | Location ( ) + | | Enter the location name to which you want to connect. | +-----------------------------------------------------------------------------+ | F1=Help F3=End F4=List F7=Backward F8=Forward | +-----------------------------------------------------------------------------+ Type command on command line or use PF keys. For help, press PF1 or type HELP. ______________________________________________________________________________
2. Type the information you need to connect to the remote database. If a plus sign appears after the Location field, you can press the List function key to display a list of database names. If v v v you select a database from the list but can not connect to it, check that: You have the authority to connect to the database The database location supports remote unit of work The database is actually up and running
For more information on the CONNECT command, see DB2 QMF Reference.
Where n is the language identifier for the session you are starting, and DBNAME, which must be entered in uppercase, is the name of the database to which you are connecting. For example, to start an English-language session, and to connect to a database that is named Detroit, enter:
START QMFE D=DETROIT
253
****** ** ** ********* ____ ** ** *** *** ** ____ ** ** **** **** ******* ____ ** ** ** ** ** ** ** ____ ** * ** ** **** ** ** ____ ****** ** ** ** ** _______ ** _______________________________________
Enter a command on the command line or press a function key. For help, press the Help function key or enter the command HELP. _________________________________________________________________________________ 1=Help 2=List 3=End 4=Show 5=Chart 6=Query 7=Retrieve 8=Edit Table 9=Form 10=Proc 11=Profile 12=Report
The GLOBALS panel displays with a list of all your QMF global variables. The value of the DSQAO_CONNECT_LOC variable is the location name. For a list of all QMF global variables, see DB2 QMF Reference.
254
255
You can retrieve data from more than one table only when each table is at the same location. For example, you cannot retrieve data from NEW_YORK.Q.STAFF and ATLANTA.Q.ORG in the same query. You can update tables that are located at remote locations, but you can only create tables at your own location. Your installation can also assign an alias for the three-part name when querying a remote table. For example, your installation might assign the alias NYSTAFF for NEW_YORK.Q.STAFF. For more information on using remote tables and aliases, see the DB2 publications that are listed in the bibliography at Bibliography on page 399. You can also contact your information center.
256
QMF objects
QMF objects (queries, procedures, and forms) that are retrieved from the database must reside at the current location. If you start your QMF session connected to location CHICAGO and then connect to location NEWYORK, you can only run your query if it is in NEWYORK.
Note to CICS users If you are using QMF at a CICS location and connect to a location in the VM or TSO environment, procedures with logic and report calculations do not run from your CICS session.
CURRENT SQLID
In DB2, your CURRENT SQLID is not active after you connect to a different location. If you need to use the same CURRENT SQLID with multiple DB2 application servers from a single QMF session, you might need to reset the CURRENT SQLID after you connect to each server. For more information, see the discussion of the QMF CONNECT command in DB2 QMF Reference.
257
Commands
With remote unit of work support, all programs started by QMF run under the operating system in which QMF is running (the local operating system). Such programs might include CMS, TSO, and CICS commands. If QMF is running in TSO, and you attempt to run a procedure that contains CMS commands from a current DB2 Server for VSE or VM location, the TSO commands work, but the CMS commands do not.
258
259
260
261
262
263
264
Long variable graphic QMF can put only DBCS data of variable length up to 16,383 characters into a column that is defined as LONG VARGRAPHIC data type. Use this data type with caution. The restrictions for how you can use a column with this data type in a query are the same as for the long variable character data type. LOB data types In DB2 QMF Version 8.1, LOB data types CLOB, DBCLOB, and BLOB can now be displayed in a QMF report without having to be casted as VARCHAR or VARGRAPHIC data types. The size of a LOB data row ranges from 0 bytes to 2 GB minus one byte. v CLOB- Character large object string. CLOBs are used generally whenever a character string might exceed the limits of a VARCHAR type. v DBCLOB- Double-byte character large object string. DBCLOBs always have an associated code page. v BLOB- Binary large object. BLOBs do not have an associated code page or character set. They can contain image, audio, and video data. LOB Descriptor Area (LOB DA) Because of the potential size of LOB data, users may want to limit the viewing of actual data within a report. Instead of displaying the actual LOB data by default, the LOB DA, consisting of the LOB data type name and defined length of the LOB data, will be displayed. The LOB DA is specified through the setting of edit code M (new in QMF Version 8.1) on every LOB column by default. See Specifying punctuation for the values in a column on page 130 Greater than 32 KB support for LOB data type columns The following EXEC SQL statements are necessary in order to determine the potential number of host variables required to deal with large LOB (greater than 32 KB up to 2 GB). v Declare cursor:
EXEC SQL DECLARE C1 CURSOR FOR SELECT LENGTH(CLOB_COL) FROM LOB_TABLE
Chapter 14. National Language support in QMF
265
v Execute FETCH:
EXEC SQL FETCH CI TO :LOB_ALEN
The result of these statements will be a one-column result table with each row containing a 4 byte length. Each length will be set into the field LOB_DLEN for the particular LOB record. A minimimum of five data definition language (DDL) SQL queries must be issued for each request to create a LOB table. For n number of LOB columns, 2 + 3n CREATE statement queries are required. LOB tables will not function if any part of the definition is missing. Here are five required steps to create a complete definition for a LOB table: 1. Create a base LOB table
CREATE TABLE LOB (COLCHAR(8), CLOB CLOB(4K), BLOB BLOB(4K), ID ROWID NOT NULL GENERATED BY DEFAULT) IN DSQDBDEF.DSQTSDEF
Tables with LOB columns must also have a ROWID column. The LOB length can be up to 2 GB. 2. Create an index on the LOB table
CREATE TYPE 2 UNIQUE INDEX MCOATES.LOBID ON MCOATES.LOB(ID)
266
267
Double-byte characters can also appear in the FORM as column labels. For more information about column labels, see DB2 QMF Reference . The following descriptions show ways in which DBCS or mixed data differs from the SBCS data. Report Width: The report width shown at the top of the FORM.MAIN panel indicates the width of the current report in character positions. Indents, SO and SI delimiters, and characters are counted to calculate this width. A single-byte character counts as one position; a double-byte character counts as two positions. SO and SI delimiters count as one position each. Column Headings: The underscore (_) character on the form indicates where an SBCS column heading breaks and continues on another line. DBCS data strings can be broken if the underscore used is a single-byte character. Column headings appearing on the default form are the same as the column names in the database table, unless your installation uses column labels. For columns that have column labels, the labels appear in place of column names on the default form. USAGE: Form usage codes must be single-byte characters.
268
269
Columns of graphic data you The value itself is unchanged, but if want wrapped the value cannot fit on one line in the column, GW tells QMF to wrap the text according to the width of the column. Instead of cutting off the data at the end of the column, QMF puts as much data as it can on a line in the column, then wraps the remaining data on subsequent lines. Columns of character data The value itself is unchanged, but if you want wrapped according the value cannot fit on one line in the to the column text column, CT tells QMF to wrap the column according to the text in the column. Iinstead of cutting off the data at the end of the column, QMF fits as much data as possible on a line, interrupts the line when it finds a single-byte blank, and continues wrapping the data on the next line. If a string of data is too long to fit in the column and does not contain a single-byte blank, QMF wraps the data by width until it finds a single-byte blank and can continue wrapping by text. When you use the CT edit code for a column that contains mixed data, the minimum width for the column is 4.
CT
270
Columns of character data QMF begins a new line in the column you want wrapped according each time it sees a special delimiter in to a delimiter the text. In this edit code, x is the special delimiter that can be any single-byte character, including a blank. It does not appear in the output. QMF does not permit column wrapping of graphic data by delimiter. QMF will wrap columns of mixed data by delimiter if the delimiter is outside the DBCS data string. When you use this edit code for a column containing mixed data, the minimum width for the column is 4. If a string of data is too long to fit in the column and does not contain a delimiter, QMF wraps the data by width until it finds a delimiter and can continue wrapping by it. If a string of data contains multiple successive delimiters, QMF inserts a blank line for each one after the first. For example, if the data contains two delimiters, QMF begins a new line when it gets to the first delimiter, skips a line when it gets to the second delimiter, and then continues wrapping the output.
Custom edit codes defined at Format data in ways you define your installation using an edit exit routine you write. Replace xxxx in this code with an identifier that names a unique code. See your QMF administrator for a description of your available custom edit codes.
How incorrect DBCS data is handled When an SO or SI character is missing from a DBCS data string, the existing SO or SI character appears as a question mark. All other double-byte data appears as single-byte characters and is meaningless.
271
272
273
274
275
Using QMF with other products Using DXT end user dialogs
If your installation has DXT, you can access all the functions of DXT End User Dialogs while in QMF. You can send a predefined extract request to DXT for processing, create a new extract request, or update an existing extract request. You can load extract output into physical sequential files, relational tables, or other output targets that are supported by DXT. To use DXT from QMF, issue the EXTRACT command. Depending upon how you specify the command, it either invokes the DXT End User Dialogs to let you create an extract request or update an existing one. Or, it sends a named data extract to DXT to run. When you access DXT End User Dialogs from QMF, you remain there until you choose to exit, then you return to the QMF environment. You can access DXT from QMF in either batch or interactive mode. However, in batch mode, you cannot perform operations that display a panel. In addition, you cannot display a panel through the QMF command interface unless you specify INTERACT. Your QMF administrator might have already set you up to use DXT. If you do not have all three of the following items or you are not sure whether you do, contact your QMF administrator. You cannot complete a dialog until these items are in place: v Your authorization information and connection information must be identified to DXT End User Dialogs. v Your JCL/JCS files and CLISTs or execs must already exist and have all the appropriate routing information. v Your control profile must be set up and complete. For information about using DXT, see the Data Extract: Users Guide. To display the DXT main menu: To go directly to the main menu panel in DXT End User Dialogs, enter EXTRACT on the command line of any QMF panel. When the main menu panel displays, you can choose from the options available for building or updating an extract request. You can select any menu option by pressing a function key or by entering a letter on the command line. When you are ready to return to QMF, exit DXT End User Dialogs. To send an extract request to DXT from QMF: Issue the EXTRACT command, including the name of the extract request. For example, enter:
276
QMF sends the named extract request to DXT for processing. However, DXT panels do not appear; it appears as if you never left QMF. You need a password when you give an extract name for a relational DB2 or DB2 Server for VSE or VM table. The password you enter does not appear on your screen. If no errors result from the request, QMF returns the message Extract request successfully sent on the message line of your screen. You can immediately resume whatever QMF activity you were performing. If an error related to the request results, QMF displays a message that contains a QMF interpretation of the DXT End Use Dialogs return code. To display the EXTRACT command prompt panel: On the QMF command line, enter:
EXTRACT ?
The EXTRACT Command Prompt panel displays. The panel also displays if you enter the EXTRACT command incorrectly twice in succession. To send the extract request to the DXT End User Dialogs for processing, enter a valid extract name on the panel. You then return to the QMF environment.
Note to CICS users You cannot use an editor from QMF under CICS. You can, however, change a QMF object while viewing it in temporary storage. You can edit an existing QMF procedure or SQL statement from QMF. The QMF object you edit can be a new, changed, or imported procedure or query. You cannot edit QBE and prompted queries. QMF supports the ISPF-PDF editor and the XEDIT editor. You can name a user exec (VM) or CLIST (z/OS) that initializes another editor and optionally performs housekeeping functions. The ISPF-PDF editor is the default editor, but if you want to use the ISPF-PDF editor, you must do one of the following: v Start QMF as an ISPF-PDF dialog. v Name a user exec or CLIST to set up ISPF and start the PDF editor.
Chapter 15. Using QMF with other products
277
Where object is either PROC or QUERY. From a PROC or QUERY panel, you can enter the EDIT command without specifying a value for object. The procedure or query displayed in the panel is edited. EDIT ? prompts you with the default object, either PROC or QUERY, depending on which type of panel you are using when you initiate the command. When you end the edit session, you return to QMF with the edited object in QMF temporary storage. You can edit your SQL statements or procedure in a different ISPF application ID by using an exec or CLIST as the editor name of the QMF EDIT command. To edit an object using XEDIT: To use the XEDIT editor, you must be using CMS. To display the current query or procedure, issue the EDIT command:
EDIT object (EDITOR=XEDIT
Where object is either PROC or QUERY. When you end the edit session, you return to QMF with the edited object in QMF temporary storage. To edit an object using a CLIST: To use a CLIST, you must be using TSO. The named editor represents a users CLIST. For example, enter the following command, where the editor is named MYCLIST:
EDIT object (EDITOR=MYCLIST
Where object is either PROC or QUERY. Using an editor of your choice, run this CLIST to edit the current query or procedure. When you end the edit session, you return to QMF with the edited object in QMF temporary storage. To display the EDIT command prompt panel: 1. On the QMF command line, enter:
278
2. 3. 4.
5.
The EDIT Command Prompt panel displays. To start an edit session, enter either QUERY or PROC. Another EDIT Command Prompt panel appears. Specify the editor you want to use. PDF is the default editor. Press Enter. QMF displays the appropriate panel for the editor you requested containing the current QUERY or PROC object (the object you last worked on). To return to QMF, exit the editor.
From the ISPF-PDF primary option menu panel, you can start whatever applications you normally use in ISPF. All available command options appear on the menu. You can select any of them by entering a letter on the command line or by pressing a function key. To return to QMF, exit ISPF-PDF. To display a specific ISPF-PDF panel: Enter the panel identifier as a parameter to the ISPF command. For example:
ISPF 3
This starts the application identified as Option 3 on the ISPF-PDF primary option menu panel. The specific panel you see depends on your installation. To return to QMF, exit ISPF-PDF.
279
Note to CICS users You cannot use the document interface from QMF under CICS. In an edit session, you can insert a QMF report into the document you are editing without leaving the session. Use the GETQMF macro to insert the report. The GETQMF macro is not a QMF command. You can insert an existing QMF report into a document or generate a new QMF report by using QMF either interactively or through the command interface. You can also format the QMF report by using SCRIPT/VS control words that are used by the Document Composition Facility (DCF). Before inserting the QMF report into a document, you must print it from within a QMF session. The syntax of the GETQMF macro is:
GETQMF type option
type specifies whether SCRIPT/VS control words are also inserted. Descriptions of the following types appear under Formatting the report. DCF ASIS For a SCRIPT/VS document For inserting a QMF report as is
option specifies whether you are creating a new report or inserting an existing one. Descriptions of the following options appear under Inserting a report on page 281. USEQMF To create a QMF report dynamically DSN To insert an existing QMF report (OS/390 only)
280
Inserting a report
You can insert a new or existing QMF report into another document. v The USEQMF option inserts a new report v The DSN option (in z/OS) inserts an existing report The USEQMF option The USEQMF option allows you to insert a QMF report into another document without leaving your QMF session. You might need to initialize the system environments. When QMF is not active: You are using XEDIT, ISPF-PDF, PS/TSO, or the CMS NOTE facility, and you want to generate a report from QMF and insert it into the document (or note) you are working on. For example, enter from your editor:
GETQMF DCF USEQMF
This causes the GETQMF macro (with the USEQMF option) to start an interactive QMF session. QMF uses a default initial procedure when it starts. When you are in QMF, you have the full interactive capability available to produce your report. After your report is finished, remember to print it using
Chapter 15. Using QMF with other products
281
Where MYPROC is the name of a QMF procedure that runs through the QMF command interface and generates a report. If you want to run a shared procedure that you do not own, specify it as owner.yourproc. You must specify USEQMF to use the procedure. To call the document interface, enter GETQMF. If your procedure printed a report, the report appears in your document. You can save the document and return to QMF. Your QMF session ends if you use a procedure that issues the EXIT command. You must use a QMF procedure to produce your QMF report. You cannot produce a query in QMF at the point when you are at your edit session from the QMF document interface. Using the DSN option Use DSN if you are using OS/390 and want to insert an existing QMF report. You must follow DSN by the fully-qualified data set name. For example, enter from your editor:
GETQMF ASIS DSN dataset name
Where dataset name is the name of the data set that contains the chart or report to be inserted. Lines in the inserted file might be truncated or wrapped.
282
XEDIT When you use XEDIT, the QMF report is inserted in your document after the current line. The new current line is the last line of the inserted report. This is similar to the XEDIT GET command. You cannot go from XEDIT to interactive QMF through the document interface and then start another XEDIT session by using the CMS XEDIT command. Your original XEDIT environment is lost when you exit QMF. ISPF-PDF When you use ISPF-PDF, the QMF report is inserted into your document after the line where you enter A, or before the line where you enter B in the prefix area. If you do not choose a line, the report is inserted at the end of the document. The top line displayed after insertion is the line that immediately precedes the inserted report. This is similar to the ISPF-PDF COPY command. PS/TSO If you are using the Personal Services for TSO Extensions (PS/TSO), you are using the ISPF-PDF editor. The information that was previously given for ISPF-PDF applies here. CMS NOTE If you are using CMS NOTE, you are using XEDIT. See the information for XEDIT.
283
v v v
After you install QMF, and it is running successfully, you need to tailor the document interface.
284
The report named XX MYREPORT A1 is inserted directly into the document you are working on, just after the current line. You get a message that indicates that the report is inserted. Example 2From XEDIT or ISPF-PDF: The existing QMF report named XX MYREPORT A1 is inserted into your document as is. (ASIS is the default.) The procedure is the same as in Example 1:
GETQMF FILE XX MYREPORT
Example 3From XEDIT: This example inserts a new report into your document and shows the minimum abbreviation of the USEQMF option. 1. In XEDIT, position your document to insert the QMF report after the current line (see XEDIT on page 283). 2. Enter the GETQMF macro:
GETQMF U
3. 4. 5. 6. 7.
(U is the minimum abbreviation for the USEQMF option.) Your screen is blank for a few minutes while the macro runs. When the QMF Home panel appears with a document interface message, produce a report as you normally would in QMF. Alter the form of the report if you want. Display the report to check it. Enter PRINT REPORT. Enter END or EXIT to exit QMF. The report is inserted into your document, and you return to XEDIT where you were before you issued the GETQMF macro.
If you type EXIT on the QMF command line without printing a report, you return to XEDIT. An error message appears, and no report is inserted. Example 4From ISPF-PDF: The USEQMF option specifies that QMF is used to produce a report during the edit session. The named procedure MYPROC runs to produce the report. 1. From a document in ISPF-PDF, insert a prefix command A (after) or B (before) to receive the report at the proper place (see ISPF-PDF on page 283). 2. Enter the GETQMF macro:
GETQMF DCF USEQMF MYPROC
Your screen is blank for a few minutes while MYPROC creates and prints a report. 3. When the QMF object panel appears, enter EXIT to exit QMF.
Chapter 15. Using QMF with other products
285
The GETQMF macro runs the MYPROC1 routine in QMF. MYPROC1 creates and prints the report. The report is inserted into your document. 4. Save the document and return to QMF. Your QMF session ends if you use a procedure that issues an EXIT command.
Your screen is blank for a few minutes while MYPROC creates and prints a report. 3. When the QMF object panel appears, enter an EXIT command to exit QMF. The report is inserted into your document as is when QMF ends. Use EXIT to leave QMF; the END command runs the initial procedure again. Example 2From ISPF-PDF or PS/TSO: The QMF report data set userid.MYREPORT is inserted into the users document as is. 1. From a document in ISPF-PDF or PS/TSO, insert a prefix command A (after) or B (before) to receive the new report at the proper place. 2. On the command line, enter the GETQMF macro:
286
The macro gets the existing report, userid.MYREPORT. Then, it inserts it into your document, and returns you to the ISPF-PDF or PS/TSO editor you were using before you issued the GETQMF macro. Example 3From ISPF-PDF: The QMF report is produced interactively in QMF. 1. Enter the GETQMF macro:
GETQMF ASIS USEQMF
2. 3. 4. 5. 6.
Your screen is blank for a few minutes while the macro is running. When the QMF Home panel appears with a document interface message, produce a report as you normally would in QMF. Alter the form of the report if necessary. Display the report to check it. Enter PRINT REPORT. Enter an END or EXIT command to exit QMF. The report is inserted into your document, and you return to ISPF where you were before issuing the GETQMF macro.
If you type EXIT on the QMF command line without printing a report, you are returned to ISPF. An error message displays, and no report is inserted.
The GETQMF macro runs the MYPROC4 routine in QMF, and the report is inserted into your document. 3. Save your document. You return to QMF at the point where you issued the ISPF BRIDGE command. You lose your QMF session if you use a procedure that issues an EXIT command.
287
288
289
Example: This basic CALL statement is for a stored procedure that has two input parameters that are defined as decimal data with a precision of five and a scale of two.:
CALL USERAPROC1(123.45,1.22)
For more information about the CALL statement, see DB2 QMF Reference. The QMF supported syntax is slightly different from the DB2 CALL statement. To enter the CALL statement on the SQL QUERY panel: v You must be authorized to run the stored procedure and know the name of the stored procedure that you want to run. v Parameters must be entered in the order that the stored procedure is expecting them. For example, if a stored procedure has two parameters (the first being a decimal and the second being a character string), you must enter the parameters in that same order on your CALL statement. You must know the number of expected parameters and the data type of each parameter. Output parameters must be initialized to blank character for character strings, or zero for numeric data. QMF global variables can be used to enter input, inout, and to receive output parameters. You must use QMF global variable output or inout parameters if you want to view the returned data. Character strings, all numeric data types, date, time, and datestamp data types are supported for input, output, or inout parameters. Thirty-two parameters is the maximum that can be entered on the CALL statement. The maximum amount of data that can be entered for a parameter is 32 KB. v DATE, TIME, and TIMESTAMP data types must be enclosed in single quotes. v When entering decimal data, the scale must match exactly what the stored procedure expects, or you will receive an error message. v When you run a stored procedure that returns result sets, QMF supports the return of the first 32 result sets. Select the one that you want to use by setting the global variable DSQEC_SP_RS_NUM. The default setting is one. To ignore the result sets, set the global variable to zero.
290
Using DB2 stored procedures with QMF Examples of running a stored procedure
QMF does not provide the source code for the stored procedures used in the following examples. You can develop the stored procedures on your system using DB2 QMF HPO or the Stored Procedure Builder. Details of the stored procedures input and output parameters and returned result sets is provided so that you can develop similar stored procedures to follow along with the examples.
Verify that the maintenance functions provided by your stored procedure were performed.
You enter your data on the lines provided in the prompt panel. You must enter a blank for the output parameter regardless of whether you use prompting or if you set the global variables before running the CALL statement.
291
MODIFIED LINE 1 1 to 10 of 10
Your RUN command runs a query or procedure with variables that need values. Fill in a value for each variable named below: &A01 &A02 This is my string
F1=Help
F3=End
F7=Backward
F8=Forward
You can view the output parameter in the global variable pool by using the SHOW GLOBALS command:
GLOBALS Type a value for a global variable and press Enter or press a function key. Variable values may be changed if they are enclosed in parentheses or brackets. Variable Name: ------------------A02 DSQAO_APPL_TRACE DSQAO_ATTENTION DSQA)_BATCH DSQAO_CICS_SQNAME DSQAO_CICS_SQTYPE DSQAO_CICS_TQNAME DSQAO_CICS_TQTYPE DSQAO_CONNECT_ID DSQAO_CONNECT_LOC DSQAO_CURSOR_OPEN Value: -----------------------------------------------1 to 11 of 113 ( THIS IS MY STRING > 0 0 1
1=Help 2= 3=End 4= 5=Show Field 7=Backward 8=Forward 9=Form 10=Add 11=Delete OK, GLOBALS IS SHOWN COMMAND ===>
292
Using DB2 stored procedures with QMF Running a stored procedure that returns a result set
Stored procedure USERA.RET1RS has two output parameters. The first, defined as an integer, returns the SQLCODE. The second, defined as a character string, returns the SQLSTATE. This stored procedure also returns a result set based on the following SELECT statement from the QMF supplied table Q.STAFF:
SELECT ID, NAME, DEPT, JOB, YEARS, SALARY, COMM FROM Q.STAFF
Verify that QMF global variable DSQEC_SP_RS_NUM is set to one. Issue the CALL statement on the SQL QUERY panel:
CALL USERA.RET1RS(&A01, &A02)
Your result set is displayed; you can page forward or back to view the entire report. You can view the output parameters in the global variable pool by using the
REPORT LINE 1 POS 1 79
NAME DEPT JOB YEARS --------- ---- ----- ----SANDERS 20 MGR 7 PERNAL 20 SALES 8 MARENGHI 38 MGR 5 OBRIEN 38 SALES 6 HANES 15 MGR 10 QUIGLEY 38 SALES ROTHMAN 15 SALES 7 JAMES 20 CLERK KOONITZ 42 SALES 6 PLOTZ 42 MGR 7 NGAN 15 CLERK 5 NAUGHTON 38 CLERK YAMAGUCHI 42 CLERK 6 FRAYE 51 MGR 6
SALARY COMM -------- ------99999.99 18171.25 612.45 17506.75 18006.00 846.55 20659.80 16808.30 650.25 16502.83 1152.00 13504.60 128.20 18001.75 1386.70 18352.80 12508.20 206.60 12954.75 180.00 10505.90 75.60 21150.00 -
1=Help 2= 3=End 4=Print 5=Chart 6=Query 7=Backward 8=Forward 9=Form 10=Left 11=Right 12= OK, this is the REPORT from your RUN command COMMAND ===>
293
You can display a result set each time that you run the stored procedure. Indicate the result set to be displayed by setting the QMF global variable DSQEC_SP_RS_NUM. Setting the value to 1 will display the first result set returned, setting to 2 will display the second result set returned, and so on. In the following example, DSQEC_SP_RS_NUM is set to 3 to display the third result set returned:
SET GLOBAL (DSQEC_SP_RS_NUM=3
Figure 182 shows an example of a displayed result set: The output parameters can be viewed in the global variable pool by using the
REPORT LINE 1 POS 1 79
TEMPID -----400 410 420 430 440 450 460 470 480 490
INTDATE ---------1996-02-05 1996-02-11 1996-04-07 1996-04-24 1996-03-13 1996-09-19 1996-10-06 1996-02-05 1996-03-13 1996-09-30
STARTTIME --------13.00.00 15.00.00 09.00.00 10.30.00 10.15.00 09.45.00 14.45.00 16.30.00 13.30.00 15.00.00
ENDTIME MANAGER DISP ------- ------- ---15.12.00 270 NOHIRE 16.18.00 10 HIRE 09.58.00 140 HIRE 11.30.00 290 NOHIRE 11.23.00 160 HIRE 11.00.00 50 HIRE 16.22.00 100 HIRE 18.00.00 270 HIRE 14.45.00 160 NOHIRE 15.44.00 140 NOHIRE
LASTNAME --------FROMMHERZ JACOBS MOTNEZ RICHOWSKI REID JEFFREYS STANLEY CASALS LEEDS GASPARD
FIRSTNAM -------RICHARD SUSAN RITA JOHN CATHY PAUL JOHN DAVID DIANE PIERRE
*** END *** 1=Help 2= 3=End 4=Print 5=Chart 6=Query 7=Backward 8=Forward 0=Form 10=Left 11=Right 12= OK, this is the REPORT from your RUN command. COMMAND ===>
294
Using DB2 stored procedures with QMF Using QMF forms with result sets returned from stored procedures
You can change the appearance of the reports that you create from running your stored procedures by changing the report information on the QMF forms panels. The chapter, Chapter 6, Customizing your reports, on page 119 will provide you with information about using QMF forms. This information can also be applied to result sets returned from stored procedures.
295
296
Q.APPLICANT
This table provides information about people who have applied for jobs with the company. Each row represents an applicant. The columns are as follows: TEMPID Temporary identification of the applicant NAME Last name of the applicant ADDRESS City and state in which the applicant lives
297
Sample tables
EDLEVEL Education level of the applicant COMMENTS Notes made by the interviewer
TEMPID -----400 410 420 430 440 450 460 470 480 490 NAME --------FROMMHERZ JACOBS MONTEZ RICHOWSKI REID JEFFREYS STANLEY CASALS LEEDS GASPARD ADDRESS ----------------SAN JOSE,CA POUGHKEEPSIE,NY DALLAS,TX TUCSON,AZ ENDICOTT,NY PHILADELPHIA,PA CHICAGO,IL PALO ALTO,CA EAST FISHKILL,NY PARIS,TX EDLEVEL ------12 16 13 14 14 12 11 14 12 16 COMMENTS ----------------------------NO SALES EXPERIENCE GOOD CANDIDATE FOR WASHINGTON OFFER SALES POSITION CANT START WORK UNTIL 12/92 1 YEAR SALES EXPERIENCE GOOD CLERICAL BACKGROUND WANTS PART-TIME JOB EXPERIENCED SALESMAN NEEDS INTERVIEW WITH BROWN WORKED HERE FROM 1/90 TO 6/90
Q.INTERVIEW
This table is for installations that support date/time data. It shows dates and times in ISO format. The format of DATE, TIME, and TIMESTAMP data in your reports depends on the format chosen as your installations default. It can be modified with the DATE, TIME, and TIMESTAMP edit codes. The columns are as follows: TEMPID Temporary identification of the applicant INTDATE Date of interview STARTTIME Time the interview started ENDTIME Time the interview ended MANAGER Employee number of the manager who interviewed the applicant DISP Whether or not the applicant will be hired
298
Sample tables
LASTNAME Last name of the applicant FIRSTNAME First name of the applicant
TEMPID -----400 410 420 430 440 450 460 470 480 490 INTDATE ---------1990-02-05 1990-02-11 1990-04-07 1990-04-24 1990-03-13 1990-09-19 1990-10-06 1990-02-05 1990-03-13 1990-09-30 STARTTIME --------13.30.00 15.00.00 09.00.00 10.30.00 10.15.00 09.45.00 14.45.00 16.30.00 13.30.00 15.00.00 ENDTIME -------15.12.00 16.18.00 09.58.00 11.30.00 11.23.00 11.00.00 16.22.00 18.00.00 14.45.00 15.44.00 MANAGER ------270 10 140 290 160 50 100 270 160 140 DISP -----NOHIRE HIRE HIRE NOHIRE HIRE HIRE HIRE HIRE NOHIRE NOHIRE LASTNAME --------FROMMHERZ JACOBS MONTEZ RICHOWSKI REID JEFFREYS STANLEY CASALS LEEDS GASPARD FIRSTNAME --------RICHARD SUSAN RITA JOHN CATHY PAUL JOHN DAVID DIANE PIERRE
Q.ORG
This table provides information on the organization of the company. Each row represents a department. The columns are as follows: DEPTNUMB Number of the department (must be unique) DEPTNAME Descriptive name of the department MANAGER Employee number of the manager of the department DIVISION Division to which the department belongs LOCATION Name of the city in which the department is located
DEPTNUMB -------10 15
MANAGER ------160 50
299
Sample tables
DEPTNUMB 20 38 42 51 66 84 DEPTNAME MID ATLANTIC SOUTH ATLANTIC GREAT LAKES PLAINS PACIFIC MOUNTAIN MANAGER 10 30 100 140 270 290 DIVISION EASTERN EASTERN MIDWEST MIDWEST WESTERN WESTERN LOCATION WASHINGTON ATLANTA CHICAGO DALLAS SAN FRANCISCO DENVER
Q.PARTS
This table provides information about parts. The columns are as follows: SUPPNO Number of the supplier PARTNAME Name of the part PRODUCT Product for which the part is needed PRODNO Number of the product PROJNO Number of the project
SUPPNO -----1100P 1100P 1200S 1200S 1300S 1300S 1400P 1400P 1400P PARTNAME -------PLASTIC STEEL WIRE BEARINGS COPPER BLADES MAGNETS VALVES OIL PRODUCT --------RELAY WRENCHSET GENERATOR MOTOR RELAY SAW GENERATOR MOTOR GEAR PRODNO -----30 509 10 50 30 205 10 50 160 PROJNO -----1501 1520 1401 1402 1501 1510 1409 1407 1405
Q.PRODUCTS
This table provides information about a few products and their prices. The columns are as follows:
300
Sample tables
PRODNUM Number of the product PRODNAME Descriptive name of the product PRODGRP General type of product PRODPRICE Price of the product
PRODNUM ------10 505 101 20 30 40 50 150 160 190 205 330 450 509
PRODNAME ----------GENERATOR SCREWDRIVER SHAFT SWITCH RELAY SOCKET MOTOR CAM GEAR BUSHING SAW HAMMER CHISEL WRENCHSET
PRODGRP ---------ELECTRICAL TOOL MECHANICAL ELECTRICAL ELECTRICAL ELECTRICAL ELECTRICAL MECHANICAL MECHANICAL MECHANICAL TOOL TOOL TOOL TOOL
PRODPRICE --------45.75 3.70 8.65 2.60 7.55 1.40 35.80 1.15 9.65 5.90 18.90 9.35 7.75 25.90
Q.PROJECT
This table provides information about project schedules. The columns are as follows: PROJNO Number of the project (must be unique) PRODNUM Number of the product DEPT Number of the department responsible for the project
301
Sample tables
STARTD Date the project is to start ENDD Date the project is to end TIMESTAMP Year, month, day, and time of the report This table is for installations that support date/time data. It shows dates and times in ISO format. This format is an arbitrary choice. The table you see depends on the choice made by your installation.
PROJNO -----1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1501 1502 PRODNUM ------10 50 150 190 160 20 50 30 10 190 30 150 DEPT -----20 66 51 38 15 20 42 42 66 10 51 38 STARTD ---------1996-01-01 1996-01-30 1996-02-02 1997-01-04 1997-04-29 1997-07-11 1997-12-12 1999-03-13 1998-06-15 1998-09-29 1999-01-04 1999-03-01 ENDD ---------1998-03-31 1997-06-30 1999-05-29 1999-06-30 1999-10-30 1998-12-31 2000-06-15 2000-09-30 1999-12-31 2000-03-31 1999-12-31 2000-07-17 TIMESTAMP -------------------------1994-12-18-10.14.44.000001 1994-12-18-10.15.01.999998 1994-12-18-10.22.23.000001 1994-12-18-10.25.43.999999 1995-12-31-14.23.00.999999 1996-01-05-13.31.18.009999 1996-01-05-13.42.27.000000 1996-01-05-13.44.16.999999 1996-03-13-09.12.57.149572 1996-03-13-12.18.23.402917 1996-03-13-12.22.14.201966 1996-03-13-13.17.48.948276
Q.STAFF
This table provides data on the employees. The columns are as follows: ID NAME Name of the employee DEPT Department number of the employee JOB YEARS Number of years the employee has worked for the company SALARY Employees annual salary in dollars and cents COMM Employees commission in dollars and cents
ID -----10 NAME --------SANDERS DEPT -----20 JOB ----MGR YEARS -----7 SALARY ---------18357.50 COMM ----------
302
Sample tables
ID 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200 210 220 230 240 250 260 270 280 290 300 310 320 330 340 350 NAME PERNAL MARENGHI OBRIEN HANES QUIGLEY ROTHMAN JAMES KOONITZ PLOTZ NGAN NAUGHTON YAMAGUCHI FRAYE WILLIAMS MOLINARE KERMISCH ABRAHAMS SNEIDER SCOUTTEN LU SMITH LUNDQUIST DANIELS WHEELER JONES LEA WILSON QUILL DAVIS GRAHAM GONZALES BURKE EDWARDS GAFNEY DEPT 20 38 38 15 38 15 20 42 42 15 38 42 51 51 10 15 38 20 42 10 51 51 10 51 10 66 66 84 84 66 66 66 84 84 JOB SALES MGR SALES MGR SALES SALES CLERK SALES MGR CLERK CLERK CLERK MGR SALES MGR CLERK CLERK CLERK CLERK MGR SALES CLERK MGR CLERK MGR MGR SALES MGR SALES SALES SALES CLERK SALES CLERK YEARS 8 5 6 10 7 6 7 5 6 6 6 7 4 3 8 10 7 3 5 6 12 9 9 10 5 13 4 1 7 5 SALARY 18171.25 17506.75 18006.00 20659.80 16808.30 16502.83 13504.60 18001.75 18352.80 12508.20 12954.75 10505.90 21150.00 19456.50 22959.20 12258.50 12009.75 14252.75 11508.60 20010.00 17654.50 13369.80 19260.25 14460.00 21234.00 18555.50 18674.50 19818.00 15454.50 21000.00 16858.20 10988.00 17844.00 13030.50 COMM 612.45 846.55 650.25 1152.00 128.20 1386.70 206.60 180.00 75.60 637.65 110.10 236.50 126.50 84.20 992.80 189.65 513.30 811.50 806.10 200.30 844.00 55.50 1285.00 188.00
303
1200S
MAJOR ELECTRICS
DALLAS
TX
87050
1300S
FRANKLIN, INC.
40025 EASTLAND
DOVER
DE
99000
1400P
MOTORWORKS, INC.
19503 BESWICK
JOLIET
IL
12000
304
Sample tables
305
306
Appendix A. Query-by-example
QBE is a language for querying relational data with a graphic representation of the data. You use QBE keywords to retrieve, update, delete, and insert data. You also use them to control the presentation of report data. The following topics provide additional information: v Displaying the QBE query panel v Running and saving queries on page 308 v Listing queries on page 308 v Drawing example tables on page 308 v Presenting all the columns of a table on page 309 v Presenting certain columns of a table on page 310 v Presenting certain rows of a table on page 311 v Presenting data from more than one table on page 321 v Writing queries to be shared on page 323 v QMF commands specific to QBE on page 326 v CONVERT command on page 326 v v v v DELETE command on page 328 DRAW command on page 329 ENLARGE command on page 330 REDUCE command on page 333
v Keyword reference on page 334 v QBE exercises with solutions on page 363
2. If you prefer to have another language set in your profile, you can specify QBE for your current session with the command:
RESET QUERY (LANGUAGE=QBE
Copyright IBM Corp. 1982, 2005
307
To save a query, choose a name (for example, MYQUERY), and enter the command:
SAVE QUERY AS MYQUERY
When you enter a RUN or SAVE command from a query panel, you do not need to specify the object type as QUERY. The object type defaults to QUERY when these commands are entered from a query panel.
Listing queries
You can also list all your saved queries:
LIST QUERIES (OWNER userid
If you want additional information about any command, enter the command name and follow it with a question mark. For example:
LIST ?
A few other QMF commands are described in QMF commands specific to QBE on page 326.
308
Query-by-example
Within this framework, you can select the columns you want presented with P., and use other QBE keywords to control the presentation of the report data and make changes to the database. The program function keys shown at the bottom of the screen make it easier to perform certain functions. Your installation may have changed the setting of the function keys. This book uses the initial settings: 1 2 3 4 5 6 7 8 9 10 11 12 Shows help information about your last action. Runs your query. Returns to the QMF Home panel. Makes the object larger. See 330. Makes the object smaller. See 333. Draws an empty example table. Moves the display backward. Moves the display forward. Shows the form panel last used. Scrolls the display to the left. Scrolls the display to the right. Displays your report.
With this query on your screen, enter RUN QUERY on the command line (or press the Run function key) to produce the following report.
DEPTNUMB -------10 15 DEPTNAME -------------HEAD OFFICE NEW ENGLAND MANAGER DIVISION LOCATION ------- ---------- ------------160 CORPORATE NEW YORK 50 EASTERN BOSTON
Appendix A. Query-by-example
309
Query-by-example
20 38 42 51 66 84 MID ATLANTIC SOUTH ATLANTIC GREAT LAKES PLAINS PACIFIC MOUNTAIN 10 30 100 140 270 290 EASTERN EASTERN MIDWEST MIDWEST WESTERN WESTERN WASHINGTON ATLANTA CHICAGO DALLAS SAN FRANCISCO DENVER
Changing the order of columns The columns are, by default, displayed in the same order they are in the sample table. (See Q.ORG on page 299.) To change the order of the columns displayed, type over the names of the columns in the example table. The following example reverses the names DIVISION and LOCATION. You reverse the names by typing LOCATION over DIVISION and vice versa.
Q.ORG | DEPTNUMB | DEPTNAME | MANAGER | LOCATION | DIVISION | ------+----------+----------+---------+----------+----------| | P. | | | P. | P. |
To display a column more than once, type the name of the column a second time over the name of some unused column. Or, use the Enlarge function key
310
Query-by-example
to add a column to the example table. Then, type the name of the column you want to display in the new column. Put P. under the column name. (See ENLARGE command on page 330.)
You can display only the columns DEPT, NAME, and JOB and select only the rows with 20 in the DEPT column. (You could get the report without the DEPT column by not including the P. in that column of the example table.) When you run this query:
Q.STAFF | ID | DEPT | NAME | JOB | YEARS | SALARY | COMM | --------+----+---------+------+-----+-------+--------+------| | | P. 20 | P. | P. | | | |
Appendix A. Query-by-example
311
Query-by-example
DEPT ---20 20 20 20 NAME ---------SANDERS PERNAL JAMES SNEIDER JOB ----MGR SALES CLERK CLERK
If you use an example element, put it in your query at least twice. Put it in once to define it in the example table, and one or more times in writing conditions or calculations, either in the example table or in a conditions box. Rules for example elements An example element must start with an underscore character (_). Any string of letters and digits up to 17 characters may follow.
Writing expressions
You can write expressions in conditions by using any of the following symbols: Condition QBE Keyword Equal = Not equal =
312
Query-by-example
Greater than > Greater than or equal >= Less than < Less than or equal <= Multiple conditions AND, OR Values within a range BETWEEN Values from a list IN (x, y, z) A certain string of characters LIKE '%abc%' Ignore certain characters LIKE '_abc_' Negative conditions NOT See Appendix A, Query-by-example, on page 307 for descriptions of these keywords. Note: The QBE language does not recognize the following: v Concatenation (||) operator v Not-greater-than (>) v Not-less-than (<) v Not-equal-to (<> If you use one of these operators, QMF displays an error message. Order of evaluation: 1. Built-in column functions 2. A plus sign or minus sign before a single value 3. Multiplication or division of two values 4. Addition or subtraction of two values QMF evaluates operations at the same level of precedence from left to right.
Appendix A. Query-by-example
313
Query-by-example
You can change the order of evaluation with parentheses just as you would use them in a mathematical formula. For example, the following two expressions are equivalent:
A * - B / C + D / E ((A*(-B))/C) + (D/E)
When you create a table, each column in it holds a certain type of data. QMF performs arithmetic operations only on numeric data types. Rules for quotation marks Do not enclose numeric data in quotation marks. You need to enclose character data that is used in conditions in quotation marks only when: v The data contains blanks (as in 'ROOM 27'), or any characters besides digits, letters, #, $, or @, (as in 'P.D.Q.', 'BOW-WOW'). v The data contains a single quotation mark or apostrophe. (In this case you have to double the quotation mark inside the data, as in 'O''BRIEN'). v To distinguish the constants 'NULL' and 'USER' from the keywords NULL and USER. v The data contains all double-byte characters. v Character data that is entirely digits, as in '849276552'. v The data type is DATE, TIME, or TIMESTAMP. Do NOT enclose values to compare with columns of numeric data in quotation marks. Arithmetic overflow When an operation in a query will produce a result outside an allowable range, the situation is called arithmetic overflow. It is possible for the result of an arithmetic operation to be outside the range allowed for the data type of the result. For example, 1000000 is an allowable value in a column with data type INTEGER, but the result of 1000000 * 1000000 is too large to be stored in a field defined with the data type of INTEGER.
314
Query-by-example
You can add a column of descriptive information to your report by putting a constant in an example table in an added (unnamed) column. The following example lists the names and addresses of the people listed in the Q.APPLICANT table with 14 years of education, and identifies each with the character constant APPLICANT. When you run this query:
Q.APPLICANT | NAME | ADDRESS | EDLEVEL | | ------------+-------+---------+---------+--------------| | P.AO. | P. | 14 | P. APPLICANT |
You could also use a numeric constant. A constant can be up to 254 characters in length and, in addition to alphabetic and numeric characters, it can contain #, $, and @. Use example elements to refer to the columns in an example table that are the source of the data for the expression in an unnamed column. For example, this query uses _S to refer to the values in the SALARY column and _C to refer to the values in the COMM column. When you run this query:
Q.STAFF | ID | DEPT | | SALARY | COMM | --------+----+------+-----------+--------+------| | P. | 20 | P._S + _C | _S | _C |
By using _S and _C, you can then create an expression from the values in two columns and put the sum of the two into the report, via the unnamed column.
Appendix A. Query-by-example
315
Query-by-example
There is no restriction on the location of the unnamed column. Like other data columns, however, the unnamed column must be to the right of the table-name column. Example 1: List yearly, monthly, and weekly salaries.
Q.STAFF | ID | NAME | SALARY | | | --------+----+------+--------+-------+-------| P. | | | _S | _S/12 | _S/52 |
Example 2: List the IDs, the commission, and the sum of the salary and commission. Show the percentage of total earnings the commission represents, and list in descending order (DO.) by the percentage.
Q.STAFF | ID | SALARY | COMM | | | --------+----+--------+------+-----------+-----------------------| | P. | _S | P._C | P._S + _C | P.100*_C/(_S+_C) DO. |
316
Query-by-example
If a column contains letters or special characters, it must have a character data type. (If it contains double-byte characters, it can have a graphic data type.) If a column contains only numbers or mostly numbers, it might still have a character data type. For example, a column of part numbers might contain mostly digits. However, if a part number like 1390X is in the column, the column must have a character data type.
Note: If you enter DRAW CONDITION or DRAW CONDITIONS instead, an example table of that name rather than a CONDITIONS box displays. Use a CONDITIONS box to do any of the following: v Refer to two or more columns in the condition. For example:
_S + _C > 20000
v Refer to a column in the example table more than once. For example:
_SAL > 10000 AND _SAL > _COMM
v Use the AND or OR operator in a condition requiring example elements. For example:
_Y=10 OR _S>2000
v Use parentheses in a complex condition to change the order of precedence. For example:
(_SAL > 20000 OR _COMM < 2000) AND DEPT = 84
v Avoid widening a column of the example table to hold a long condition. The CONDITIONS box in the following query uses the example elements (_S and _C) defined in the example table to select rows where salary plus commission (_S + _C) is greater than $20,000. When you run this query:
Appendix A. Query-by-example
317
Query-by-example
Q.STAFF | NAME | SALARY | COMM | --------+------+--------+------| P. |AO. | _S | _C | | CONDITIONS | |-----------------------------| | _S + _C > 20000 |
QMF presents the names in ascending order (AO.). (The result does not include anyone whose salary alone is greater than $20,000 if the commission is null.) This query selects anyone whose weekly salary is less than $300.
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-----+-------+--------+------| P. | | | | | | _SAL | | | CONDITIONS | |-----------------------------| | _SAL/52 < 300 |
You can use more than one CONDITIONS box or more than one condition in any box. However, you must place each condition on a single row in a box. Multiple conditions in a query are implicitly connected by and. That is, in the example below, the AND keyword is assumed between the two conditions _Y = 10 OR _S > 20000 and _C >= 1000. QMF evaluates the OR condition (_Y = 10 OR _S > 20000) before it connects and evaluates the two conditions. (See
318
Query-by-example
Order of evaluation: on page 313 for information on determining processing order.)
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-----+-------+----------+------| P. | | | | | _Y | _S | _C | | CONDITIONS | |-----------------------------| | _Y = 10 OR _S > 20000 | | CONDITIONS | |-----------------------------| | _C <= 1000 |
Restrictions You cannot use target tables (or unnamed columns in example tables) to do the following: v Name the column for your report. QMF names columns that are created by expressions (like the one in the example above). You can change the name of a column in a report by using a form. For more information on using forms, see Chapter 6, Customizing your reports, on page 119.
Appendix A. Query-by-example
319
Query-by-example
v Write a condition. (If you need to write a condition, write it in a named column or a CONDITIONS box. See Adding a CONDITIONS box on page 317. v Define an example element. You must define example elements in a named column of the example table.
Example 2 specifies UNQ. under the table name. Therefore, QMF eliminates all columns that contain duplicate data in the presented column. Example 2: With UNQ.
Q.ORG | DEPTNUMB | DEPTNAME | MANAGER | DIVISION | LOCATION | ------+----------+----------+---------+----------+----------| UNQ. | | | | P. | |
320
Query-by-example
QMF produces this report:
DIVISION -------CORPORATE EASTERN MIDWEST WESTERN
If your example table has two or more P. rows, QMF does not display duplicate rows. (See ALL. Display duplicate rows on page 335 and UNQ. Eliminate duplicate rows on page 359.)
3. This query uses only the table name and the first two columns, so we can delete the other columns. (See REDUCE command on page 333.)
Q.STAFF | ID | NAME | --------+--------+-----------| | | |
4. Place the cursor on the command line and enter DRAW Q.ORG.
Appendix A. Query-by-example
321
Query-by-example
Q.STAFF | ID | NAME | --------+--------+-----------| | | | Q.ORG | DEPTNUMB | DEPTNAME | MANAGER | DIVISION | LOCATION | ------+----------+-----------+---------+------------+----------| | | | | | |
5. Delete the DIVISION and LOCATION columns from the Q.ORG table.
Q.STAFF | ID | NAME | --------+--------+-----------| | | | Q.ORG | DEPTNUMB | DEPTNAME | MANAGER | ------+----------+-----------+---------| | | | |
6. Add an unnamed column to the Q.ORG example table and increase its size. (See ENLARGE command on page 330.)
Q.STAFF | ID | NAME | --------+--------+-----------| | | | Q.ORG | DEPTNUMB | DEPTNAME | MANAGER | | ------+----------+-----------+---------+------------| | | | | |
The same example element (in this case _ID) must be used in two example tables to select only the rows where MANAGER (the manager ID) in Q.ORG is equal to ID in Q.STAFF.
322
Query-by-example
P. can appear in only one table. The example element _NM is added to the unnamed column of the Q.ORG example table so that it is presented from the Q.STAFF table even though no P. appears in the Q.STAFF example table. This query says the following: Show columns DEPTNUMB, DEPTNAME, and MANAGER from Q.ORG and the NAME column from Q.STAFF. Display the rows where the data in the MANAGER column in Q.ORG is the same as the data in the ID column in Q.STAFF. Press the Run function key to get this report:
DEPTNUMB -------20 38 15 42 51 10 66 84 DEPTNAME -------------MID ATLANTIC SOUTH ATLANTIC NEW ENGLAND GREAT LAKES PLAINS HEAD OFFICE PACIFIC MOUNTAIN MANAGER ------10 30 50 100 140 160 270 290 NAME --------SANDERS MARENGHI HANES PLOTZ FRAYE MOLINARE LEA QUILL
Model query
A model is a copy of a query that allows you or other users to produce different reports by specifying different conditions in a copy of the model. Suppose, for example, that you are the sales manager of Department 38, and you have written a query that lists the name, job, and commission for everyone in your department.
Q.STAFF | NAME | DEPT | JOB | COMM | --------+-----------+--------+-------+------------| | P. AO. | 38 | P. | P. |
Other sales managers can get a report for their departments by using your model query. They can display, change, and run the query, or change it and run it later.
Appendix A. Query-by-example
323
If you run this query without a value on your RUN command, a Prompt panel displays. On the Prompt panel, you fill in a value to substitute for the variable in the query. When the value to substitute for the variable is one of the following: A single valid numeric value Specify the desired value. Text without embedded quotes, parentheses, blanks, equal signs, or commas Specify exactly as desired. Text with embedded quotes Enclose the entire value in quotes. (Quotation marks are not removed when QMF makes the substitution.) Text with embedded parentheses, blanks, equal signs, or commas Enclose the entire value in parentheses. (The outer parentheses are removed when QMF makes the substitution.) You could write the following query, for example:
324
Query-by-example
When you run this query, you can specify the variable value:
RUN QUERY (&DEPT = 38
Substitution variables make it possible for other people to use your query. Other users can substitute any value in place of the variable and produce a report specific to their needs. For example, if your RUN command does not supply values for the variable as is shown in the following command:
COMMAND===> RUN REPT4QRY
Press Enter to execute the command from this panel. 13=Help 15=End Please give a value for each variable name. ISPF Command ===>
Appendix A. Query-by-example
325
Query-by-example
Enter the desired department number after the arrow on the panel. For example:
&DEPT ===> 84
A substitution variable can be a whole name or be included in part of a name. Substitution variable names: v Can be no longer than 18 characters, and the first character must be an ampersand (&). v Can contain only these characters: Letters of the alphabet National characters: @ # $ Special characters: % ? ` { } \ | ¢ ! Numbers Underscores (_) v Can be separated from another variable or command word by any of the characters that are not mentioned above, such as commas, blanks, or parentheses.
CONVERT command
The CONVERT command converts a QBE query to an SQL query. If you specify CONVERT ?, the following Prompt panel displays. You can complete the command on the Prompt panel.
326
QMF commands
CONVERT Command Prompt type name ===> QUERY ===> To convert an object from temporary storage, enter QUERY as its type. To convert an object from the database, enter its name (and optionally its type). TARGET ===> QUERY You can type QUERY to place the SQL query text on the SQL Query panel, or VARS to place it in the global variable pool. If you specify no target, the default is QUERY. CONFIRM ===> YES Display the Confirmation panel before converting the current query to the SQL Query panel. YES or NO. Press Enter to execute the command from this panel. 13=Help 15=End Please follow the directions on the Command Prompt panel. Command ===>
If your query contains substitution variables, and you do not provide values for them on your CONVERT command, a Prompt panel displays. You can use this panel to fill in the values for the variables. For example, assume that you write the following query, and save it as THISONE.
Q.STAFF | NAME | DEPT | JOB | COMM | --------+-----------+--------+-------+------------| | P. AO. | &DEPT | P. | P. |
Now, suppose that you want to convert it to SQL, but specify only:
CONVERT THISONE
Appendix A. Query-by-example
327
QMF commands
CONVERT Command Prompt -- Values of Variables Your CONVERT command converts a query with variables that need values. Fill in a value after the arrow for each variable named below: &DEPT ===> ===> ===> ===> ===> ===> ===> ===> ===> ===>
13=Help 15=End Please give a value for each variable name. Command ===>
When you fill in the Department number (84), the following SQL query displays:
SELECT "NAME", "JOB", "COMM" FROM "Q"."STAFF" WHERE ("DEPT" = 84) ORDER BY 0000001
DELETE command
The DELETE command removes the following: v An example table from a QBE query v A COMMENTS box from a QBE query v A CONDITIONS box from a QBE query v Error messages on Query panel To delete one of the above items, follow these steps: 1. Type DELETE on the command line. Do not press Enter yet. 2. Move the cursor to a position anywhere within any of the items that are listed above. 3. Press Enter. QMF deletes the item.
328
QMF commands
Note: The keyword D. is different from the DELETE command. See D. Delete rows from a table on page 342 for more information.
DRAW command
The DRAW command creates an example table or adds a COMMENTS box, CONDITIONS box, or target table to a QBE query. If you specify the DRAW command by itself (or press the Draw function key), an empty table appears. DRAW has the following forms: v COMMAND ===> DRAW v COMMAND ===> DRAW name v COMMAND ==> DRAW COMM v COMMAND ==> DRAW COND DRAW Draws an empty target table.
| | | | | -----------+-----------+-----------+-----------+-----------| | | | | |
DRAW name Draws an example table with the name of the table or view in the first column. If name specifies an existing table or view, QMF draws an example of that table or view. The example table has the same number of columns with the same column names as the table or view name has. The width of each column in the example table depends on the data type for each column. For example, DRAW Q.STAFF produces this example table:
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-----+-------+--------+------| | | | | | | | |
If name is qualified with an owner and a location, and if your database supports 3-part names, QMF draws an example table with the fully-qualified name in the table-name column. For example:
Appendix A. Query-by-example
329
QMF commands
VENICE.Q.STAFF | | | | | -----------------+-----------+-----------+-----------+-----------| | | | | |
If name specifies a nonexistent table, QMF draws an example table with the name specified appearing in the table-name column. For example, if there is no table in the database that is named EMPTYBOX, DRAW EMPTYBOX produces this example table:
EMPTYBOX | | | | | ------------+-----------+-----------+-----------+-----------| | | | | |
ENLARGE command
The ENLARGE command increases the size of an example table, COMMENTS box, or CONDITIONS box. The maximum allowable table width depends on the number of columns that are selected and the size of the column names. Longer names use more space. You can select up to 300 columns. To 1. 2. 3. enlarge without a function key: Type ENLARGE on the command line. Position the cursor as is shown by one of the diagrams on this page. Press Enter.
330
QMF commands
To enlarge with a function key, position the cursor in the area you want to change and press the Enlarge function key. The following diagrams show this method. An asterisk indicates the placement of the cursor. (*). Example 1: Add a column to the right of the table-name column. Put the cursor above the line, on the vertical bar, and press the Enlarge function key.
Before: TNAME * COL1 | COL2 | ------+------+------| | | | After: TNAME | | COL1 | COL2 | ------+------+------+------| | | | |
Example 2: Add a column to the right of any other column. Put the cursor above the line, within the left-hand adjacent column, and press the Enlarge function key.
Before: TNAME | COL1*| COL2 | ------+------+------| | | | After: TNAME | COL1 | | COL2 | ------+------+------+------| | | | |
Example 3: Widen the table-name column. Put the cursor in that column, above the line, and press the Enlarge function key.
Before: TNAME*| COL1 | COL2 | COL3 | ------+------+------+------| | | | | After: TNAME | COL1 | COL2 | COL3 | -----------+------+------+------| | | | |
Example 4: Widen any other column. Put the cursor in that column, on or below the line, and press the Enlarge function key.
Before: TNAME | COL1 | COL2 | ------+------+------| | | * | After: TNAME | COL1 | COL2 | ------+------+------------| | | |
Appendix A. Query-by-example
331
QMF commands
Example 5: Add a row below any row. Put the cursor below the line, under the table name, and press the Enlarge function key.
Before: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| P. * | 10 | | | P. | | J48 | | After: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| P. | 10 | | | | | | | P. | | J48 | |
Example 6: Add a new first row. Put the cursor on the line, under the table name, and press the Enlarge function key.
Before: TNAME | COL1 | COL2 | COL3 | -----* ------+------+------| P. | 10 | | | P. | | J48 | | After: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| | | | | P. | 10 | | | P. | | J48 | |
Example 7: Widen a CONDITIONS or COMMENTS box. Put the cursor below the line, inside the box, and press the Enlarge function key.
Before: | CONDITIONS | |--------------------| | * | After: | CONDITIONS | |---------------------------| | |
Example 8: Add a new row to a CONDITIONS or COMMENTS box. Put the cursor below the line, on the vertical bar at the left, and press the Enlarge function key.
Before: | CONDITIONS | |--------------------| * _COL1 100 | | _COL3/12 90 | After: | CONDITIONS | |--------------------| | _COL1 100 | | | | _COL3/12 90 |
332
To reduce with a function key, position the cursor in the area you want to change and press the Reduce function key. The following diagrams show this method. An asterisk indicates the position of the cursor (*). Example 1: Remove a column. Put the cursor above the line, within the column, and press the Reduce function key.
Before: TNAME | COL1 *| COL2 | COL3 | ------+-------+------+------| | | | | After: TNAME | COL2 | COL3 | ------+------+------| | | |
Example 2: Narrow the table-name column. Put the cursor above the line, in that column, and press the Reduce function key.
Before: TNAME * | COL1 | COL2 | COL3 | ---------+------+------+------| | | | | After: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| | | | |
Example 3: Narrow any other column. Put the cursor on or below the line, in that column, and press the Reduce function key.
Before: TNAME | COL1 | COL2 | COL3 | ------+------+-----------+------| | | * | | After: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| | | | |
Appendix A. Query-by-example
333
QMF commands
Example 4: Remove a row. Put the cursor under the table name, in the row to be removed, and press the Reduce function key.
Before: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| P. | 10 | | | P. * | | J48 | | After: TNAME | COL1 | COL2 | COL3 | ------+------+------+------| P. | 10 | | |
Example 5: Narrow a CONDITIONS or COMMENTS box. Put the cursor below the line, inside the box, and press the Reduce function key.
Before: After:
Example 6: Remove a row from a CONDITIONS or COMMENTS box. Put the cursor below the line, on the vertical bar at the left, and press the Reduce function key.
Before: | CONDITIONS | |---------------------| * _COL1 > 100 | | _COL3/12 < 90 | After: | CONDITIONS | |--------------------| | _COL3/12 < 90 |
Keyword reference
Keyword ALL. AND AO., AO(n). AVG. BETWEEN x AND y Action Display duplicate rows Present on two conditions Sort rows in ascending order Calculate the average value Present values within a range Page 335 336 336 338 339
334
Keyword reference
Keyword COUNT. Action The COUNT. column function finds the number of unique values in a column. Specify COUNT. either in an unnamed column or in a target table. You can abbreviate COUNT. as CNT. Count the number of values in a column D. DO., DO(n). G. I. IN (x, y, z) LIKE MAX. MIN. NOT NULL OR P. SUM. U. UNQ. USER +*/ = = > < Delete a row from a table Sort rows in descending order Grouping Insert a row into a table Present certain values in a list Present on part of a value Calculate the maximum value Calculate the minimum value Present the opposite condition Present rows with missing entries Present either of two conditions Present information in a table Calculate the sum Update a row in a table Eliminate duplicate rows Present rows with a value of user ID Calculate arithmetic expressions Present on equality and inequality 342 342 344 345 346 347 348 349 350 352 354 354 357 358 359 360 360 362 Page 340341
Appendix A. Query-by-example
335
ALL.
However, if a table has two or more P. rows, QMF excludes duplicates. See also UNQ. Eliminate duplicate rows on page 359.
336
AO., AO(n).
1. 2. 3. 4. 5. Special characters, including blank Lowercase letters, in alphabetic order Uppercase letters, in alphabetic order Numbers, in ascending order NULL
The sorting sequence for DATE, TIME, and TIMESTAMP values is chronological. The internal value of the data determines the sorting sequence for double-byte character set (DBCS) data. It is generally not meaningful. The following query produces a report listing the name, job, and years of employment for each employee in department 84 in ascending alphabetic order by job. When you run this query:
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-------------+-------+--------+------| | | P. | 84 | P. AO. | P. | | |
Appendix A. Query-by-example
337
AO., AO(n).
You can only sort on columns that the query selects. If you use AO. in some row and column of an example table, you must use P. either in the same row and column, or in the same row under the table name (which displays every column).
To find the average of the values in the SALARY column for clerks only, add a condition to your query: When you run this query:
338
AVG.
Rules for AVG. v You can only use AVG. on columns of numeric data. v In an unnamed column, you must specify AVG. along with the example element that identifies the column to be averaged. v AVG. can be followed by an example element, an arithmetic expression that contains at least one example element, or the UNQ. operator that is followed by an example element. If the data in a column you want to average is defined by an arithmetic expression, enclose the expression in parentheses. v When you apply AVG. to one column named in an example table, you must apply a column function (AVG., MIN., MAX., COUNT., OR SUM.) or the G. (group) operator to every other column selected.
You can select all rows that have YEARS equal to 8, 9, or 10.
Appendix A. Query-by-example
339
BETWEEN x AND y
When you run this query:
Q.STAFF | ID | NAME | YEARS | SALARY | --------+----+-------+------------------+------------| P. | | | BETWEEN 8 AND 10 | |
Use BETWEEN either in an example table or in a CONDITIONS box. You can enter _Y in the YEARS column and _Y BETWEEN 8 AND 10 in a CONDITIONS box to produce the same report as above.
Q.STAFF | ID | NAME | YEARS | SALARY | --------+----+-------+--------------+------------| P. | | | _Y | | | CONDITIONS | |--------------------------| | _Y BETWEEN 8 AND 10 |
Note: _Y BETWEEN 8 and 10 produces the same results as _Y >= 8 AND _Y <= 10, but is easier to write.
340
COUNT.
COUNT. can count values in columns of any data type. For example, by adding a search condition, you can determine the number of employees with a salary in a given range or the number of employees at a given location. Rules for COUNT. v COUNT. counts only unique values. v An example element must follow COUNT. v You cannot follow COUNT. with an expression or an example element within an expression. v You can only use COUNT. in reference to a specific column. Follow COUNT. by an example element alone.
Appendix A. Query-by-example
341
You can delete more than one row with one DELETE statement. This query deletes everyone in Department 10:
PERS | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | -----+----+------+------+-----+-------+--------+------| D. | | | 10 | | | | |
The example table with D. can have multiple rows, but you cannot mix the operators D., I., P., or U. in a single example table. Attention: If D. appears under the table name with no conditions in other columns, QMF deletes the entire contents of the table. Rules for D. v An example table can have multiple D. rows. v You cannot delete rows if the deletion is dependent on values in other rows of the same table.
342
DO., DO(n)
2. 3. 4. 5. Numbers, in descending order Uppercase letters, in descending alphabetic order Lowercase letters, in descending alphabetic order Special characters, including blank
With DO., the sorting sequence for DATE, TIME, and TIMESTAMP values is reverse chronological. The internal value of the data determines the sorting sequence for DBCS data. The sorting sequence generally is not meaningful. The following query produces a report that lists the name, job, and years of employment for each employee in department 84 in descending order by job. When you run this query:
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-------------+-------+--------+------| | | P. | 84 | P. DO. | P. | | |
Appendix A. Query-by-example
343
DO., DO(n)
You can sort on only those columns that the query selects. If you use DO. in some row and column of an example table, you must use P. either in the same row and column, or in the same row under the table name (which displays every column).
G. Grouping data
The keyword G. groups selected rows by a specified column for the purpose of performing operations on each group. G. accumulates the results by group, but it does not order the groups. (Use AO. or DO. to ensure the desired order.) For example, you can group by department to determine each departments average salary with the following steps: 1. Group the rows by department number (G. under DEPT). 2. Specify one average for each department (_S under SALARY and AVG._S in an unnamed column to link _S to the SALARY column). 3. Add P. in the columns you want the results selected. 4. Add AO. to put them in ascending order by department. When you run this query:
Q.STAFF | DEPT | SALARY | | --------+---------+--------+----------| | G.P.AO. | _S | P.AVG._S |
344
G.
42 51 66 84 14592.262500000 17218.160000000 17215.240000000 16536.750000000
Generally, G. produces one group for each set of identical values in a column. If there are null values in the column, they form a single group. Rules for G. v Any example element that does not refer to a G. column must have an associated column function. v When you use grouping, you can only select data that refers to the groups. Only columns that contain G. or an aggregating function can contain P. v A row of an example table that uses G.cannot use I., U., or D. v If more than one column contains G., QMF groups the selected rows by each unique value of the combined columns. For example, if G. appears in both the DEPT column and the LOCATION column, each row of a group has the same DEPT value and LOCATION value.
This query inserts date and time values in a table called TEST.DATETIME:
Appendix A. Query-by-example
345
I.
If authorized, you can copy rows from one table to another using I.. In the query below, the example elements show which columns the query copies from Q.STAFF into PERS. The DEPT column in Q.STAFF is duplicated; one DEPT column contains a condition that limits one set of rows to those from Department 38. The YEARS column is also duplicated; one YEARS column contains a condition that limits the second set of rows to those with YEARS > 10. If employees in Department 38 have more than ten years of experience, they are in the report twice.
Q.STAFF | ID | NAME | DEPT | DEPT | JOB | YEARS | YEARS | --------+-----+------+------+------+-----+-------+-------| | _I1 | _N1 | _D1 | 38 | _J1 | _Y1 | | | _I2 | _N2 | _D2 | | _J2 | _Y2 | >10 | PERS | ID | NAME | DEPT | JOB | YEARS | -----+-----+------+------+-----+-------| I. | _I1 | _N1 | _D1 | _J1 | _Y1 | I. | _I2 | _N2 | _D2 | _J2 | _Y2 |
A CONDITIONS box containing the conditions _D1 = 38 and _Y2 > 10 could be used instead of duplicating the DEPT and YEARS columns. Rules for I. v You cannot use a column name more than once in a table that receives inserted rows. v You cannot insert a row in a table into the same table.
346
IN (x,y,z)
This singles out the name LEEDS from the NAMES column. Enclose values containing underscore characters in single quotation marks to prevent search values from being mistaken for example elements. Use a specific number of underscores to indicate that you want that number of characters ignored. For example, for an 8-character column of part numbers, you can use the following condition to search it for the combination G2044 in positions 2 through 6. The first character and the last two can be any characters.
Appendix A. Query-by-example
347
LIKE
LIKE _G2044_ _
Data-type dependencies
When the data type of a column is VARCHAR, you do not need to know how many blanks to specify with LIKE. With VARCHAR, there are no blanks in the column. The size of the column varies with the size of its data. When the data type of a column is CHAR, however, the size of the column is fixed. The column contains blanks, so use the appropriate number of blanks when you specify LIKE. If the data type of a column is LONG VARCHAR or LONG VARGRAPHIC, you cannot use it with LIKE (or any other search conditions).
348
MAX.
v Lowercase a is greater than the special characters. QMF ignores null values when searching for the maximum. If all values specified in a column are null, QMF returns no value. You can use an example element with MAX. to select the maximum years of employment and maximum salary from the Q.STAFF table. When you run this query:
Q.STAFF | YEARS | SALARY | | | --------+-------+------------|------------+------------| | _Y | _S | P. MAX. _Y | P. MAX. _S |
Rules for MAX. v You can follow MAX. with an example element or an arithmetic expression that contains at least one example element. v In an unnamed column, you must specify MAX. with the example element that identifies the column from which the largest value is to be retrieved. This example element also appears in the column that contains the value to retrieve. v When you apply MAX. to a column named in an example table, you must apply a column function (AVG., SUM., MIN., MAX., COUNT.), or the G. (group) operator to every other column to select.
Appendix A. Query-by-example
349
MIN.
QMF ignores null values when searching for the minimum. If all values specified in a column are null, QMF returns no value. You can use an example element with MIN. to select the minimum years of employment for employees in the Q.STAFF table. When you run this query:
Q.STAFF | NAME | DEPT | YEARS | | --------+---------+------+-------+------------| | | | _Y | P. MIN. _Y |
Rules for MIN. v You can follow MIN. with an example element or an arithmetic expression that contains at least one example element. v In an unnamed column, specify MIN. with the example element that identifies the column from which the smallest value is to be retrieved. This example element also appears in the column that contains the value to retrieve. v When you apply MIN. to a column named in an example table, you must apply a column function (AVG., SUM., MIN., MAX., COUNT.), or the G. (group) operator to every other column to select.
350
NOT
Q.ORG | DEPTNUMB | DIVISION | LOCATION | ------+----------+------------+---------------| P. | _DEP | _DIV | | | CONDITIONS | |------------------------------| | NOT _DEP=38 AND _DIV=EASTERN |
To illustrate how parentheses can change the results of a query, the first query that follows contains no parentheses. The second adds some parentheses. The third moves them a little. When you run this query:
Q.ORG | DEPTNUMB | DIVISION | LOCATION | ------+----------+------------+---------------| P. | _DEP | _DIV | _LOC | | CONDITIONS | |---------------------------------------------| | NOT _DEP=51 AND _DIV=MIDWEST OR _LOC=BOSTON |
When you place parentheses as follows, your report is exactly the same as in the previous example.
(NOT _DEP=51 AND _DIV=MIDWEST) OR _LOC=BOSTON
However, if you move the left parenthesis after NOT, as in the following query, you get different results. When you run this query:
Appendix A. Query-by-example
351
NOT
Q.ORG | DEPTNUMB | DIVISION | LOCATION | ------+----------+------------+---------------| P. | _DEP | _DIV | _LOC | | CONDITIONS | |-----------------------------------------------| | NOT (_DEP=51 AND _DIV=MIDWEST) OR _LOC=BOSTON |
Rules for NOT v You can write NOT =, NOT NULL, NOT LIKE, NOT IN, or NOT BETWEEN. v With greater than or less than, NOT must precede the entire condition, for example, NOT _YEARS > 10.
Each of the above is a value that you can enter in some row and column of a table. NULL occurs when no value is entered, or where the value is specifically set to NULL. It prints and displays as a single hyphen (-). To select rows that have no entry in a column, put NULL in that column. For example, you can display the IDs and names of employees in Department 38 for whom YEARS is null. When you run this query:
352
NULL
You can not use NULL with an example element in an example table. Use a CONDITIONS box instead. For example: This query is INCORRECT:
Q.STAFF | NAME | COMM | SALARY | | --------+------+------------+--------+----------| P. | | _C =NULL | _S | _C + _S |
Unknown values
QMF interprets the NULL keyword as unknown. The result of an operation on an unknown value is also unknown, so the result of any operation on NULL is NULL. Remember that NULL is not zero. NULL is the absence of a value. In the sample table Q.STAFF, there is no value for COMM for managers because managers do not make commissions. In some examples, we calculate earnings as SALARY + COMM. If we did this calculation for managers, the result would always be NULL. Rules for NULL: v You can use NULL alone or with =, =, or NOT.
Appendix A. Query-by-example
353
NULL
v In a CONDITIONS box, you can use NULL only with a column name or an example element.
354
P.
| | | | | | | | | |
DEPTNUMB -------84 66 10 15 20 38 42 51 DEPTNAME -------------MOUNTAIN PACIFIC HEAD OFFICE NEW ENGLAND MID ATLANTIC SOUTH ATLANTIC GREAT LAKES PLAINS MANAGER ------290 270 160 50 10 30 100 140 DIVISION ---------WESTERN WESTERN CORPORATE EASTERN EASTERN EASTERN MIDWEST MIDWEST LOCATION ------------DENVER SAN FRANCISCO NEW YORK BOSTON WASHINGTON ATLANTA CHICAGO DALLAS
Appendix A. Query-by-example
355
P.
ID -----20 40 60 70 90 150 220 280 300 310 320 340 NAME --------PERNAL OBRIEN QUIGLEY ROTHMAN KOONITZ WILLIAMS SMITH WILSON DAVIS GRAHAM GONZALES EDWARDS DEPT -----20 38 38 15 42 51 51 66 84 66 66 84 JOB ----SALES SALES SALES SALES SALES SALES SALES SALES SALES SALES SALES SALES YEARS -----8 6 7 6 6 7 9 5 13 4 7 SALARY ---------18171.25 18006.00 16808.30 16502.83 18001.75 19456.50 17654.50 18674.50 15454.50 21000.00 16858.20 17844.00 COMM ---------612.45 846.55 650.25 1152.00 1386.70 637.65 992.80 811.50 806.10 200.30 844.00 1285.00
356
P.
_D in the DEPT column of Q.STAFF and the DEPTNUMB column of Q.ORG, you can present the ID, name, and department of only those employees who are located in Dallas. When you run this query:
Q.STAFF | ID | NAME | DEPT | --------+----+------+-------| P. | | | _D | Q.ORG | DEPTNUMB | LOCATION | ------+----------+----------| | _D | DALLAS |
All the columns referred to in an unnamed column are either grouped or have a column function specified. For example, you can select the total, average, and maximum salaries by department.
Appendix A. Query-by-example
357
SUM.
When you run this query:
Q.STAFF | DEPT | SALARY | | | | --------+------+--------+------------+------------|------------| | P. G.| _S | P. SUM._S | P. AVG. _S | P. MAX. _S |
Rules for SUM. v You can use SUM. only on columns of numeric data type. v In an unnamed column, specify SUM. with the example element that identifies the column to be totaled. v SUM. can be followed by an example element, an arithmetic expression that contains at least one example element, or the UNQ. operator that is followed by an example element. If the data in a column to be totaled is defined by an arithmetic expression, enclose the expression in parentheses. v When you apply SUM. to a column named in an example table, you must apply a column function (AVG., MIN., MAX., COUNT. or SUM.), or the G. (group) operator to every other column to select. See G. Grouping data on page 344.
358
U.
This query updates the PERS table for employees 250 and 330. It changes data in the JOB column to SALES and increases salary by 15%.
PERS | ID | JOB | SALARY | SALARY | -----+------+----------+--------+-------------| | 250 | U. SALES | _S1 | U. _S1*1.15 | | 330 | U. SALES | _S2 | U. _S2*1.15 |
To see the changed rows in your PERS table, enter DISPLAY PERS. The updated PERS table should look like this:
ID -----250 330 NAME JOB --------- ----WHEELER SALES BURKE SALES SALARY ---------16629.00 12636.00
To update date and time values in a QBE update query, enclose them in single quotation marks. For example:
MY.INTERVIEW | INTDATE | STARTTIME | MANAGER | -------------+----------------+--------------+----------| | U.1987-04-04 | U.14.22.00 | 270 |
Rules for U. v You can only update a column with a constant or with values from other columns in the same row. v You cannot update a column in a row from columns in other rows in the same table. v You cannot update a row if it is dependent on other rows in the same table.
Appendix A. Query-by-example
359
UNQ.
QMF produces this result:
DIVISION ---------CORPORATE EASTERN MIDWEST WESTERN
+, , *, / Calculated values
A QBE query can present not only data already in a table, but also results that can be calculated using that data. _S/12 is an example of an expression. It means the result of dividing SALARY by 12. You can form expressions by using symbols for operations: Symbol Operation + * / Add Subtract Multiply Divide
Within expressions you can use column headings (RATE*HOURS), constants (RATE*1.07), and column functions (AVG.(_S)/2).
360
Calculated values
In the report, column names for calculated values are different depending on whether you are using DB2 Server for VSE or VM or DB2. You may see, for example: v 1, 2, or 3 v COL1, COL2, or :COL3 v EXPRESSION 1, EXPRESSION 2, or EXPRESSION 3 v AVG(EXPRESSION 2) The examples in this book were created using DB2 Server for VSE or VM. You see the term EXPRESSION in column headings for calculated values. Expression columns You can produce reports with columns that contain the values of expressions. To do so, put the expression in an unnamed column as in the following query. To show the total earnings of employees in Department 20, include _S + _C in the unnamed column. When you run this query:
Q.STAFF | ID | NAME | DEPT | SALARY | COMM | | --------+-------+--------+------+--------+------+-----------| | P. | P. | 20 | _S | _C | P._S + _C |
The value of SALARY+COMM for employee 10 is NULL, because the value of COMM is NULL, and the result of any calculation with NULL is NULL. You can get a report for everybody in Department 38 and their monthly salaries. When you run this query:
Appendix A. Query-by-example
361
Calculated values
If you do not specify an operator this way, the operator defaults to equality. You can write the following query to produce a report that contains all the managers. When you run this query:
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+------+------+-----+-------+--------+------| | P. | P. | | MGR | | | |
362
You can display a report that contains everyone in the alphabet after SMITH. When you run this query:
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+----+--------------+------+-----+-------+--------+------| | P. | P. >SMITH AO.| | | | | |
Exercises
Exercises 1 through 4 use the Q.STAFF table. Exercise 1 1. Write a query to produce a list of employee names and jobs for every employee in Department 84. 2. After you have successfully run the query in step 1, use the Query function key to bring it back to your display panel. Change it to produce a list of employee numbers, employee names, years of service, and salary for every employee in Department 51.
Appendix A. Query-by-example
363
Exercises
3. Change the preceding query to show all of the columns for employees in Department 51. 4. Produce a report that contains the employee identification number, name, department, and years of service for each person who has no data in the YEARS column. 5. Write a query to produce a list that shows employee identification number, name, job, and years of service for everyone with 10 or more years of service. Would someone with exactly 10 years of service appear on your list? 6. Produce a report that contains the name and commission for any manager whose row contains a commission amount. Exercise 2 1. Produce a report that contains each clerks name, department, and years of service. Arrange the report in ascending alphabetic order by employee name. 2. Produce a report that contains the name, department, and years of service for every clerk. Put the department numbers in ascending order and, within each department, put the years of service in ascending order. 3. Write a query to produce a list that shows employee number, employee name, and years of service for all the clerks. Arrange the report by years of service with the most senior clerk first. 4. Change step 3 to again arrange the report in descending order by years of service but, within each year, in ascending order by department number. Include the department numbers in your report. 5. Produce a report that contains each employee whose name contains the letter Z. 6. Produce a report that contains each employee whose name begins with S. 7. Produce a report that contains each employee whose name has an A as its third character. Exercise 3 1. Produce a report that contains the name, salary, and commission of all persons whose salary is greater than $18,000 or whose commission exceeds $1,000. 2. Produce a report that lists all employees who have no data in their years of service column or no data in their commission column. Show the employees name, years of service, and commission. (Hint: Remember that you must use the equal (=) or not equal (=) symbols when comparing for NULL values in QBE.) 3. Write a query to produce a list that shows employee number, name, and salary for everyone with a salary between $20,000 and $21,000. Did people with a salary of exactly $20,000 or $21,000 appear on your list?
364
Exercises
v If they did appear, how could you exclude them? v If they did not appear, how could you include them? 4. Produce a report that lists all managers who have been with the company less than 10 years, but whose salary is at least $20,000. Show the name, job title, years of service, and salary. 5. Show the name, years of service, salary, and commission of those employees with less than 10 years of service and either a salary over $20,000 or a commission over $1,000. Exercise 4 1. Write a query to produce the name, employee number, salary, commission, and total earnings (salary plus commission) of everyone with a job of sales. 2. Write a query to produce the name, number, salary, commission, and total earnings of everyone with a job of sales whose total earnings are less than $17,500. 3. Produce a report that lists each sales persons name and commission as a percentage of salary. (For example, if a persons salary is $20,000 and commission is $2,000, the commission percentage is 10.) Arrange the report in descending order by the commission percentage. 4. Change step 3 so that commission percentage is based on total earnings (salary plus commission = 100%). Exercise 5 1. Write a query that will access both the Q.STAFF and Q.ORG tables (DRAW Q.STAFF and DRAW Q.ORG). Produce a report that contains each department name, location, and managers name. 2. Change step 1 to list only those departments in the Eastern Division. 3. Change step 2 to list any managers in the Eastern Division who have 10 or more years of service. For each manager, list the department name, location, and managers name. Exercise 6 1. Make a copy of the Q.STAFF table and call it MYTABLE. 2. Write a query to update MYTABLE. Change the name of the manager for Department 66 to RAMOTH, years of service to 7, and salary to $18,238.50. Write a query to retrieve the row after you have updated it. 3. Write a query that increases the salaries of MYTABLE by 10%. Retrieve all the rows for clerks. Because MYTABLE began with data identical to Q.STAFF, you can randomly check YEARS and SALARY against the Q.STAFF table in Chapter 17, QMF sample tables, on page 297, to ensure that the correct persons received the salary increases.
Appendix A. Query-by-example
365
Exercises
4. Insert a new row into MYTABLE. The new employees information is as follows:
ID NAME DEPT JOB YEARS SALARY COMM = = = = = = = 275 ROGERS 66 SALES NULL $14,000.00 NULL
After you have inserted the row, write and run a query that will display it. 5. Delete from MYTABLE the rows for salespersons in Department 66.
Solutions to exercises
Note: Solutions show minimum columns. Your answer may include unused columns that have been deleted here. Solutions to exercise 1 1.
Q.STAFF | NAME | DEPT | JOB | --------+-----------+--------+-------| | P. | 84 | P. |
2.
Q.STAFF | ID | NAME | DEPT | YEARS | SALARY | --------+--------+-----------+--------+--------+------------| | P. | P. | 51 | P. | P. |
YEARS -----6 6 7 3 6
3.
366
Exercises
ID NAME ------ --------140 FRAYE 150 WILLIAMS 220 SMITH 230 LUNDQUIST 250 WHEELER
DEPT -----51 51 51 51 51
YEARS -----6 6 7 3 6
4.
Q.STAFF | ID | NAME | DEPT | YEARS | --------+--------+-----------+--------+--------| | P. | P. | P. | P.NULL |
DEPT -----38 20 38 42
YEARS ------
5.
Q.STAFF | ID | NAME | JOB | YEARS | --------+--------+-----------+-------+--------| | P. | P. | P. | P.>=10 |
ID NAME JOB ------ --------- ----50 HANES MGR 210 LU MGR 260 JONES MGR 290 QUILL MGR 310 GRAHAM SALES
YEARS -----10 10 12 10 13
6.
Q.STAFF | NAME | JOB | COMM | --------+-----------+-------+------------| | P. | MGR | P. NULL |
NAME ---------
367
Exercises
Note: This is a correct result; it is an empty set. None of the managers is on commission, so no data has been entered in their COMM column. Solutions to exercise 2 1.
Q.STAFF | NAME | DEPT | JOB | YEARS | --------+-----------+--------+-------+--------| | P. AO. | P. | CLERK | P. |
NAME --------ABRAHAMS BURKE GAFNEY JAMES KERMISCH LUNDQUIST NAUGHTON NGAN SCOUTTEN SNEIDER WHEELER YAMAGUCHI
DEPT -----38 66 84 20 15 51 38 15 42 20 51 42
YEARS -----3 1 5 4 3 5 8 6 6
2.
Q.STAFF | NAME | DEPT | JOB | YEARS | --------+-----------+----------------+-------+---------------| | P. | P. AO(1). | CLERK | P. AO(2). |
DEPT -----15 15 20 20 38 38 42 42
YEARS -----4 5 8 3 6 -
368
Exercises
LUNDQUIST WHEELER BURKE GAFNEY 51 51 66 84 3 6 1 5
3.
Q.STAFF | ID | NAME | JOB | YEARS | --------+--------+-----------+-------+--------| | P. | P. | CLERK | P. DO. |
ID NAME ------ --------80 JAMES 200 SCOUTTEN 120 NAUGHTON 190 SNEIDER 130 YAMAGUCHI 250 WHEELER 350 GAFNEY 110 NGAN 170 KERMISCH 230 LUNDQUIST 180 ABRAHAMS 330 BURKE
YEARS -----8 6 6 5 5 4 3 3 1
Notes: a. Null years sort to the top when you specify descending order. b. Order of names may vary within order by fields. For example, Scoutten may be listed before James, because both have null years. 4.
Q.STAFF | ID | NAME | DEPT | JOB | YEARS | --------+------+---------+---------------+-------+--------------| | P. | P. | P. AO(2). | CLERK | P. DO(1). |
ID NAME ------ --------80 JAMES 120 NAUGHTON 200 SCOUTTEN 190 SNEIDER 130 YAMAGUCHI 250 WHEELER 110 NGAN 350 GAFNEY
DEPT -----20 38 42 20 42 51 15 84
YEARS -----8 6 6 5 5
Appendix A. Query-by-example
369
Exercises
170 180 230 330 KERMISCH ABRAHAMS LUNDQUIST BURKE 15 38 51 66 4 3 3 1
5.
Q.STAFF | NAME | --------+---------------------| | P. LIKE @(#) |
6.
Q.STAFF | NAME | --------+---------------------| | P. LIKE S% |
7.
Q.STAFF | NAME | --------+---------------------| | P. LIKE _ _A% |
Solutions to exercise 3 1.
370
Exercises
Q.STAFF | NAME | SALARY | COMM | --------+-----------+------------+------------| | P. | P. _S | P. _C | | CONDITIONS | |--------------------------| | _S > 18000 OR _C > 1000 |
NAME --------SANDERS PERNAL OBRIEN HANES ROTHMAN KOONITZ PLOTZ FRAYE WILLIAMS MOLINARE LU DANIELS JONES LEA WILSON QUILL GRAHAM EDWARDS
SALARY ---------18357.50 18171.25 18006.00 20659.80 16502.83 18001.75 18352.80 21150.00 19456.50 22959.20 20010.00 19260.25 21234.00 18555.50 18674.50 19818.00 21000.00 17844.00
2.
Q.STAFF | NAME | YEARS | COMM | --------+-----------+--------+------------| | P. | P. _Y | P. _C | | CONDITIONS | |--------------------------| | _Y = NULL OR _C = NULL |
NAME --------SANDERS MARENGHI HANES QUIGLEY JAMES PLOTZ NAUGHTON FRAYE MOLINARE SCOUTTEN
YEARS -----7 5 10 7 6 7 -
371
Exercises
LU DANIELS JONES LEA QUILL 10 5 12 9 10 -
3.
Q.STAFF | ID | NAME | SALARY | --------+--------+-----------+------------| | P. | P. | P. _S | Exclusive BETWEEN: | CONDITIONS | |---------------------------| | _S > 20000 AND _S < 21000 | OR | CONDITIONS | |---------------------------| | _S BT 20001 AND 20999 | Inclusive BETWEEN: | CONDITIONS | |-----------------------------| | _S >= 20000 AND _S <= 21000 | OR | CONDITIONS | |-----------------------------| | _S BETWEEN 20000 AND 21000 |
ID ----50 210
NAME --------HANES LU
4.
Q.STAFF | NAME | JOB | YEARS | SALARY | --------+-----------+-----------------+--------+------------| | P. | P. =MGR | P. <10 | P. >=20000 |
YEARS -----6 7
5.
372
Exercises
Q.STAFF | NAME | YEARS | SALARY | COMM | --------+-----------+--------+------------+------------| | P. | P. <10 | P. _S | P. _C | | CONDITIONS | |--------------------------| | _S > 20000 OR _C > 1000 |
YEARS -----7 6 6 7 7
Solutions to exercise 4 1.
Q.STAFF | NAME | ID | JOB | SALARY | COMM | | --------+------+-----+-------+---------+-------+----------| | P. | P. | SALES | P. _S | P. _C | P. _S+_C |
NAME --------PERNAL OBRIEN QUIGLEY ROTHMAN KOONITZ WILLIAMS SMITH WILSON DAVIS GRAHAM GONZALES EDWARDS
SALARY ---------18171.25 18006.00 16808.30 16502.83 18001.75 19456.50 17654.50 18674.50 15454.50 21000.00 16858.20 17844.00
COMM EXPRESSION 1 ---------- -----------612.45 18783.70 846.55 18852.55 650.25 17458.55 1152.00 17654.83 1386.70 19388.45 637.65 20094.15 992.80 18647.30 811.50 19486.00 806.10 16260.60 200.30 21200.30 844.00 17702.20 1285.00 19129.00
2.
Q.STAFF | NAME | ID | JOB | SALARY | COMM | | --------+--------+------+-------+----------+---------+-----------| | P. | P. | SALES | P. _S | P. _C | P. _S+_C | | CONDITIONS | |--------------------------| | (_S + _C) < 17500 |
Appendix A. Query-by-example
373
Exercises
NAME --------QUIGLEY DAVIS ID -----60 300 SALARY ---------16808.30 15454.50 COMM EXPRESSION 1 ---------- -----------650.25 17458.55 806.10 16260.60
3.
Q.STAFF | NAME | JOB | SALARY | COMM | | --------+-------+-------+---------+-------+---------------------| | P. | SALES | _S | _C | P. DO. 100*(_C/_S) |
NAME --------KOONITZ EDWARDS ROTHMAN SMITH DAVIS GONZALES OBRIEN WILSON QUIGLEY PERNAL WILLIAMS GRAHAM
EXPRESSION 1 -----------------7.70313900 7.20130000 6.98062000 5.62349500 5.21595600 5.00646500 4.70148800 4.34549700 3.86862400 3.37043400 3.27731000 0.95380900
NAME --------EDWARDS KOONITZ ROTHMAN GONZALES DAVIS SMITH OBRIEN WILSON PERNAL QUIGLEY WILLIAMS GRAHAM
EXPRESSION 1 -----------------7 7 6 5 5 5 4 4 3 3 3 0
Note what happens to the precision of the ratio that you calculated. This truncation can also affect the order into which your rows are sorted. 4.
374
Exercises
NAME --------KOONITZ EDWARDS ROTHMAN SMITH DAVIS GONZALES OBRIEN WILSON QUIGLEY PERNAL WILLIAMS GRAHAM
EXPRESSION 1 -----------------7.15219600 6.71754900 6.52512600 5.32409500 4.95738100 4.76776800 4.49037300 4.16452800 3.72453600 3.26053900 3.17331100 0.94479700
Solutions to exercise 5 1.
Q.STAFF | ID | NAME | --------+--------+-----------| | _MID | _MNM | Q.ORG | DEPTNAME | MANAGER | LOCATION | | ------+--------------+---------+-------------+--------------| | P. | _MID | P. | P. _MNM |
DEPTNAME LOCATION -------------- ------------MID ATLANTIC WASHINGTON SOUTH ATLANTIC ATLANTA NEW ENGLAND BOSTON GREAT LAKES CHICAGO PLAINS DALLAS HEAD OFFICE NEW YORK PACIFIC SAN FRANCISCO MOUNTAIN DENVER
2.
Appendix A. Query-by-example
375
Exercises
Q.STAFF | ID | NAME | --------+--------+-----------| | _MID | _MNM | Q.ORG | DEPTNAME | MANAGER | DIVISION | LOCATION | | ------+------------+---------+----------+-----------+----------| | P. | _MID | EASTERN | P. | P. _MNM |
3.
Q.STAFF | ID | NAME | YEARS | --------+--------+-----------+--------| | _MID | _MNM | >=10 | Q.ORG | DEPTNAME | MANAGER | DIVISION | LOCATION | | ------+-----------+---------+----------+-----------+-----------| | P. | _MID | EASTERN | P. | P. _MNM |
2.
MYTABLE | NAME | DEPT | JOB | YEARS | SALARY | --------+-----------+--------+-------+--------+------------| | U.RAMOTH | 66 | MGR | U. 7 | U.18238.50 |
376
Exercises
YEARS -----7
SALARY ---------18238.50
COMM ----------
3.
MYTABLE | JOB | YEARS | SALARY | SALARY | --------+-------+--------+------------+-----------------| | CLERK | > 5 | _S | U. _S * 1.1 |
ID NAME ------ --------80 JAMES 110 NGAN 120 NAUGHTON 130 YAMAGUCHI 170 KERMISCH 180 ABRAHAMS 190 SNEIDER 200 SCOUTTEN 230 LUNDQUIST 250 WHEELER 330 BURKE 350 GAFNEY
DEPT -----20 15 38 42 15 38 20 42 51 51 66 84
JOB ----CLERK CLERK CLERK CLERK CLERK CLERK CLERK CLERK CLERK CLERK CLERK CLERK
YEARS -----5 6 4 3 8 3 6 1 5
SALARY ---------13504.60 12508.20 12954.75 11556.49 12258.50 12009.75 15678.02 11508.60 13369.80 15906.00 10988.00 13030.50
COMM ---------128.20 206.60 180.00 75.60 110.10 236.50 126.50 84.20 189.65 513.30 55.50 188.00
4.
MYTABLE | ID | NAME | DEPT | JOB | YEARS | SALARY | COMM | --------+-----+--------+------+-------+-------+--------+------| I. | 275 | ROGERS | 66 | SALES | NULL | 14000 | NULL |
Instead of 14000 you can use 14000.00, but not 14,000 or 14,000.00 (commas are not valid numeric input characters). You can retrieve the row with this query:
Appendix A. Query-by-example
377
Exercises
ID -----275
NAME --------ROGERS
YEARS ------
SALARY ---------14000.00
COMM ----------
5.
MYTABLE | DEPT | JOB | --------+--------+-------| D. | 66 | SALES |
378
379
380
381
382
QMF HPO/Manager
The QMF HPO/Manager consists of a group of functions that improves governing and object management capabilities, including a preemptive governor to analyze QMF queries. The governing capabilities allow you to establish controls that protect production applications, while delivering on demand information. Many governing parameters are included, such as time of day, day of the week, maximum number of rows to fetch, allowing and disallowing SQL verbs and QMF commands, and controlling resource consumption based on the use of QMF commands and SQL statements.
QMF HPO/Compiler
The QMF HPO/Compiler lets you convert queries and reports into efficient programs or stored procedures in OS/VS COBOL or COBOL II. This reduces: v CPU consumption v DB2 catalog contention v DB2 Optimizer overhead v Security concerns because converted programs use static Structured Query Language (SQL) in place of dynamic SQL
383
384
Appendix E. Notices
This information was developed for products and services offered in the U.S.A. IBM may not offer the products, services, or features discussed in this document in other countries. Consult your local IBM representative for information on the products and services currently available in your area. Any reference to an IBM product, program, or service is not intended to state or imply that only that IBM product, program, or service may be used. Any functionally equivalent product, program, or service that does not infringe any IBM intellectual property right may be used instead. However, it is the users responsibility to evaluate and verify the operation of any non-IBM product, program, or service. IBM may have patents or pending patent applications covering subject matter described in this document. The furnishing of this document does not give you any license to these patents. You can send license inquiries, in writing, to: IBM Director of Licensing IBM Corporation North Castle Drive Armonk, NY 10594-1785 U.S.A. For license inquiries regarding double-byte (DBCS) information, contact the IBM Intellectual Property Department in your country or send inquiries, in writing, to: IBM World Trade Asia Corporation Licensing 2-31 Roppongi 3-chome, Minato-ku Tokyo 106-0032, Japan The following paragraph does not apply to the United Kingdom or any other country where such provisions are inconsistent with local law: INTERNATIONAL BUSINESS MACHINES CORPORATION PROVIDES THIS PUBLICATION AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states do not allow disclaimer of express or implied warranties in certain transactions, therefore, this statement may not apply to you. This information could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes will
Copyright IBM Corp. 1982, 2005
385
be incorporated in new editions of the publication. IBM may make improvements and/or changes in the product(s) and/or the program(s) described in this publication at any time without notice. IBM may use or distribute any of the information you supply in any way it believes appropriate without incurring any obligation to you. Licensees of this program who wish to have information about it for the purpose of enabling: (i) the exchange of information between independently created programs and other programs (including this one) and (ii) the mutual use of the information which has been exchanged, should contact: IBM Corporation J46A/G4 555 Bailey Avenue San Jose, CA 95141-1003 U.S.A. Such information may be available, subject to appropriate terms and conditions, including in some cases, payment of a fee. The licensed program described in this information and all licensed material available for it are provided by IBM under terms of the IBM Customer Agreement, IBM International Program License Agreement, or any equivalent agreement between us. Any performance data contained herein was determined in a controlled environment. Therefore, the results obtained in other operating environments may vary significantly. Some measurements may have been made on development-level systems and there is no guarantee that these measurements will be the same on generally available systems. Furthermore, some measurement may have been estimated through extrapolation. Actual results may vary. Users of this document should verify the applicable data for their specific environment. All statements regarding IBMs future direction or intent are subject to change or withdrawal without notice, and represent goals and objectives only. This information is for planning purposes only. The information herein is subject to change before the products described become available.
386
Trademarks
The following terms are trademarks of the IBM Corporation in the United States or other countries or both:
AIX C/370 CICS COBOL/370 DataJoiner DB2 DB2 Information Integrator DB2 Universal Database Distributed Relational Database Architecture DRDA GDDM IBM IBMLink IMS iSeries MVS OS/390 Parallel Sysplex PL/I QMF RACF S/390 SQL/DS VM/ESA VSE/ESA VTAM WebSphere z/OS zSeries
Intel is a registered trademark of Intel Corporation in the United States and other countries. Java or all Java-based trademarks and logos, and Solaris are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. Microsoft, Windows, Windows NT, and the Windows logo are trademarks of Microsoft Corporation in the United States, other countries, or both. UNIX is a registered trademark of The Open Group in the United States and other countries. Other company, product, and service names may be trademarks or service marks of others.
Appendix E. Notices
387
388
389
Glossary
application-support command. A QMF command that can be used within an application program to exchange information between the application program and QMF. These commands include INTERACT, MESSAGE, STATE, and QMF. area separator. The barrier that separates the fixed area of a displayed report from the remainder of the report. argument. An independent variable. base QMF environment. The English-language environment of QMF, established when QMF is installed. Any other language environment is established after installation. batch QMF session. A QMF session running in the background. Begins when a specified QMF procedure is invoked and ends when the procedure ends. During a background QMF session, no user interaction and panel display interaction are allowed. bind. In DRDA, the process by which the SQL statements in an application program are made known to a database management system over application support protocol (and database support protocol) flows. During a bind, output from a precompiler or preprocessor is converted to a control structure called a package. In addition, access paths to the referenced data are selected and some authorization checking is performed. (Optionally in DB2 UDB for OS/390, the output may be an application plan.) built-in function. Generic term for scalar function or column function. Can also be function. calculation variable. CALCid is a special variable for forms that contains a user-defined calculated value. CALCid is defined on the FORM.CALC panel. callable interface. A programming interface that provides access to QMF services. An application can access these services even when the application is running outside of a QMF session. Contrast with command interface. CICS. Customer Information Control System. CMS. Conversational Monitor System. column wrapping. Formatting values in a report so that they occupy several lines within a column. Often used when a column contains values whose length exceeds the column width. command interface. An interface for running QMF commands. The QMF commands can only be issued from within an active QMF session. Contrast with callable interface. command synonym. The verb or verb/object part of an installation-defined command. Users enter this for the command, followed by whatever other information is needed. command synonym table. A table each of whose rows describes an installation-defined command. Each user can be assigned one of these tables. commit. The process that makes a data change permanent. When a commit occurs, data locks are freed enabling other applications to reference the just-committed data. See also rollback. concatenation. The combination of two strings into a single string by appending the second to the first.
390
Glossary
correlation name. An alias for a table name, specified in the FROM clause of a SELECT query. When concatenated with a column name, it identifies the table to which the column belongs. CP. The Control Program for VM. CSECT. Control section. current location. The application server to which the QMF session is currently connected. Except for connection-type statements, such as CONNECT (which are handled by the application requester), this server processes all the SQL statements. When initializing QMF, the current location is indicated by the DSQSDBNM startup program parameter. (If that parameter is not specified, the local DB2 UDB for OS/390 subsystem current object. An object in temporary storage currently displayed. Contrast with saved object. Customer Information Control System (CICS). An IBM licensed program that enables transactions entered at remote terminals to be processed concurrently by user-written application programs. It includes facilities for building, using, and maintaining databases. database administrator. The person who controls the content of and access to a database. database management system. A computer-based system for defining, creating, manipulating, controlling, managing, and using databases. The database management system also has transaction management and data recovery facilities to protect data integrity. database manager. A program used to create and maintain a database and to communicate with programs requiring access to the database. database server. (1) In DRDA, the target of a request received from an application server (2) In OS/2, a workstations that provides database services for its local database to database clients. date/time default formats. Date and time formats specified by a database manager installation option. They can be the EUR, ISO, JIS, USA, or LOC (LOCAL) formats. date/time data. The data in a table column with a DATE, TIME, or TIMESTAMP data type. DBCS. Double-byte character set. DBMS. Database management system. default form. The form created by QMF when a query is run. The default form is not created if a saved form is run with the query. destination control table (DCT). In CICS, a table containing a definition for each transient data queue. detail block text. The text in the body of the report associated with a particular row of data. detail heading text. The text in the heading of a report. Whether or not headings will be printed is specified in FORM.DETAIL. dialog panel. A panel that overlays part of a Prompted Query primary panel and extends the dialog that helps build a query.
391
Glossary
distributed data. Data that is stored in more than one system in a network, and is available to remote users and application programs. distributed database. A database that appears to users as a logical whole, locally accessible, but is comprised of databases in multiple locations. distributed relational database. A distributed database where all data is stored according to the relational model. Distributed Relational Database Architecture (DRDA). A connection protocol for distributed relational database processing that is used by IBM and vendor relational database products. distributed unit of work. A method of accessing distributed relational data in which users or applications can, within a single unit of work, submit SQL statements to multiple relational database management systems, but no more than one RDBMS per SQL statement. DB2 UDB for OS/390 introduced a limited form of distributed unit of work support in its V2R2 called system-directed access, which QMF supports. double-byte character. An entity that requires two character bytes. double-byte character set (DBCS). A set of characters in which each character is represented by two bytes. Languages such as Japanese, Chinese, and Korean, which contain more symbols that can be represented by 256 code points, require double-byte character sets. Because each character requires two bytes, the typing, display, and printing of DBCS characters requires hardware and programs that support DBCS. Contrast with single-byte character set. EBCDIC. Extended Binary-Coded Decimal Interchange Code. echo area. The part of the Prompted Query primary panel in which a prompted query is built. EUR (European) format. A format that represents date and time values as follows: v Date: dd.mm.yyyy v Time: hh.mm.ss extended syntax. QMF command syntax that is used by the QMF callable interface; this syntax defines variables that are stored in the storage acquired by the callable interface application and shared with QMF gateway. A functional unit that connects two computer networks of different network architectures. A gateway connects networks or systems of different architectures, as opposed to a bridge, which connects networks or systems with the same or similar architectures. global variable. A variable that, once set, can be used for an entire QMF session. A global variable can be used in a procedure, query, or form. Contrast with run-time variable. Graphical Data Display Manager (GDDM). A group of routines that allows pictures to be defined and displayed procedurally through function routines that correspond to graphic primitives. grouped row. A row of data in a QBE target or example table that is summarized either by a G. or a built-in function. HTML. Hypertext Markup Language. A standardized markup language for documents displayed on the Internet.
392
Glossary
ICU. Interactive Chart Utility. INCORROUT. The keyword for incorrect output. initialization program. A program that sets QMF program parameters. This program is specified by DSQSCMD in the callable interface. The default program for interactive QMF is DSQSCMDn, where n is the qualifier for the presiding language (;E; for English). invocation CLIST or EXEC. A program that invokes (starts) QMF. ISO (International Standards Organization) format. A format that represents date and time values as follows: v Date: yyyy-mm-dd v Time: hh.mm.ss ISPF. Interactive System Productivity Facility. IXF. Integration Exchange Format: A protocol for transferring tabular data among various software products. JCL. Job control language for OS/390. job control. In VSE, a program called into storage to prepare each job or job step to be run. Some of its functions are to assign I/O devices to symbolic names, set switches for program use, log (or print) job control statements, and fetch the first phase of each job step. JIS (Japanese Industrial Standard) format. A format that represents date and time values as follows: v Date: yyyy-mm-dd v Time: hh:mm:ss keyword parameter. An element of a QMF command consisting of a keyword and an assigned value. literal. In programming languages, a lexical unit that directly represents a value. A character string whose value is given by the characters themselves. linear procedure. Any procedure not beginning with a REXX comment. A linear procedure can contain QMF commands, comments, blank lines, RUN commands, and substitution variables. See also procedure with logic. linear syntax. QMF command syntax that is entered in one statement of a program or procedure, or that can be entered on the QMF command line. local area network (LAN). (1) Two or more processors connected for local resource sharing (2) A network within a limited geographic area, such as a single office building, warehouse, or campus. local data. Data that is maintained by the subsystem that is attempting to access the data. Contrast with remote data. local DB2 UDB for OS/390. With DB2 UDB for OS/390, the application requester is part of a DB2 UDB for OS/390 subsystem that is running in the same MVS system as QMF. Therefore, an entire DB2 UDB for OS/390 subsystem (including data) is associated with the application requester, but the SQL statements are processed at the current location. This subsystem is where the QMF plan is bound.
393
Glossary
When QMF runs in TSO, this subsystem is specified using DSQSSUBS startup program parameter. When QMF runs in CICS, this subsystem is identified in the Resource Control Table (RCT). The local DB2 UDB for OS/390 is the subsystem ID of the DB2 UDB for OS/390 that was started in the CICS region. location. A specific relational database management system in a distributed relational database system. Each DB2 UDB for OS/390 subsystem is considered to be a location. logical unit (LU). A port through which an end user accesses the SNA network to communicate with another end user and through which the end user accesses the functions provided by system services control points. Logical Unit type 6.2 (LU 6.2). The SNA logical unit type that supports general communication between programs in a distributed processing environment. MSGx. The keyword for a message problem. MVS/ESA. Multiple Virtual Storage/Enterprise System Architecture (IBM operating system). Network Control Program (NCP). An IBM licensed program that provides communication controller support for single-domain, multiple-domain, and interconnected network capability. NLF. National Language Feature. Any of several optional features available with QMF that lets the user select a language other than US English. NLS. National Language Support. package. The control structure produced when the SQL statements in an application program are bound to a relational database management system. The database management system uses the control structure to process SQL statements encountered during statement execution. panel. A particular arrangement of information, grouped together for presentation in a window. A panel can contain informational text, entry fields, options the user can choose from, or a mixture of these. parameter. An element of a QMF command. This term is used generically in QMF documentation to reference a keyword parameter or a positional parameter. partner logical unit. In SNA, the remote system in a session. PERFM. The keyword for a performance problem. permanent storage. The database where all tables and QMF objects are stored. plan. A form of package where the SQL statements of several programs are collected together during bind to create a plan. positional parameter. An element of a QMF command that must be placed in a certain position within the command. primary panel. The main Prompted Query panel containing your query. primary QMF session. An interactive session begun from outside QMF Within this session, other sessions can be started by using the INTERACT command.
394
Glossary
procedure with logic. Any QMF procedure beginning with a REXX comment. In a procedure with logic, you can perform conditional logic, make calculations, build strings, and pass commands back to the host environment. See also linear procedure. profile. An object that contains information about the characteristics of the users session. A stored profile is a profile that has been saved in permanent storage. A profile in temporary storage has the name PROFILE. There can be only one profile for each user. Prompted Query. A query built in accordance with the users responses to a set of dialog panels. PSW. Program status word. PTF. Program temporary fix. QBE (Query-By-Example). A language used to write queries graphically. For more information see Using QMF QMF administrative authority. At minimum, insert or delete priviledge for the Q.PROFILES control table. QMF administrator. A QMF user with QMF administrative authority. QMF command. Refers to any command that is part of the QMF language. Does not include installation-defined commands. QMF session. All interactions between the user and QMF from the time the user invokes QMF until the EXIT command is issued. qualifier. When referring to a QMF object, the part of the name that identifies the owner. When referring to a TSO data set, any part of the name that is separated from the rest of the name by periods. For example, TCK, XYZ, and QUERY are all qualifiers in the data set name TCK.XYZ.QUERY. RDBMS. Relational database management system relational database management system (RDBMS). A computer-based system for defining, creating, manipulating, controlling, managing, and using relational databases. remote unit of work. (1) The form of SQL distributed processing where the application is on a system different from the relational database and a single application server services all remote unit of work requests within a single logical unit of work. (2) A unit of work that allows for the remote preparation and execution of SQL statements. REXX. Restructured extended executor. rollback. The process that removes uncommitted database changes made by one application or user. When a rollback occurs, locks are freed and the state of the resource being changed is returned to its state at the last commit, rollback, or initiation. See also commit. row operator area. The leftmost column of a QBE target or example table. run-time variable. A variable in a procedure or query whose value is specified by the user when the procedure or query is run. The value of a run-time variable is only available in the current procedure or query. Contrast with global variable.
Glossary of Terms and Acronyms
395
Glossary
SBCS. Single-byte character set. scalar. A value in a column or the value of a literal or an expression involving other scalars. scalar function. An operation that produces a single value from another value and is expressed in the form of a function name followed by a list of arguments enclosed in parentheses. SNAP dump. A dynamic dump of the contents of one or more storage areas that QMF generates during an abend. SQLCA. Structured Query Language Communication Area. SSF. Software Support Facility. An IBM online database that allows for storage and retrieval of information about all current APARs and PTFs. Structured Query Language (SQL). A language used to communicate with DB2 UDB for OS/390 and DB2 for VSE or VM. Used to write queries in descriptive phrases. subquery. A complete SQL query that appears in a WHERE or HAVING clause of another query (the main query or a higher-level subquery). substitution variable. (1) A variable in a procedure or query whose value is specified either by a global variable or by a run-time variable. (2) A variable in a form whose value is specified by a global variable. substring. The part of a string whose beginning and length are specified in the SUBSTR function. System Log (SYSLOG). A data set or file in which job-related information, operational data, descriptions of unusual occurrences, commands, and messages to and from the operator may be stored. Systems Network Architecture (SNA). The description of the logical structure, formats, protocols, and operational sequences for transmitting information units through and controlling the configuration and operation of networks. tabular data. The data in columns. The content and the form of the data is specified on FORM.MAIN and FORM.COLUMNS. target table. An empty table in which example elements are used to combine columns, combine rows, or include constant values in a report. temporary storage. An area where the query, form, procedure, profile, report, chart, and data objects in current use are stored. All but the data object can be displayed. temporary storage queue. In CICS, a temporary storage area used for transfer of objects between QMF and an application or a system service. thread. The DB2 UDB for OS/390 structure that describes an applications connection, traces its progress, provides resource function processing capability, and delimits its accessibility to DB2 UDB for OS/390 resources and services. Most DB2 UDB for OS/390 functions execute under a thread structure. three-part name. A fully-qualified name of a table or view, consisting of a location name, owner ID, and object name. When supported by the application server (that is, DB2 UDB for OS/390), a three-part name can be used in an SQL statement to retrieve or update the specified table or view at the specified location.
396
Glossary
timestamp. A date and a time, and possibly a number of microseconds (a six- or seven-part value). TP. Transaction Program TPN. Transaction program name transaction program name. The name by which each program participating in an LU 6.2 conversation is known. Normally, the initiator of a connection identifies the name of the program it wants to connect to at the other LU. When used in conjunction with an LU name, it identifies a specific transaction program in the network. transient data queue. In CICS, a storage area, whose name is defined in the Destination Control Table (DCT), where objects are stored for subsequent internal or external processing. TSO. Time Sharing Option. two-phase commit. A protocol used in distributed unit of work to ensure that participating relational database management systems commit or roll back a unit of work consistently. unit of work. (1) A recoverable sequence of operations within an application process. At any time, an application process is a single unit of work, but the life of an application process may involve many units of work as a result of commit or rollback operations. (2) In DRDA, a sequence of SQL commands that the database manager treats as a single entity. The database manager ensures the consistency of data by verifying that either all the data changes made during a unit of work are performed or none of them are performed. unnamed column. An empty column added to an example table. Like a target table, it is used to combine columns, combine rows, or include constant values in a report. USA (United States of America) format. A format that represents date and time values as follows: v Date: mm/dd/yyyy v Time: hh:mm xM variation. A data formatting definition specified on a FORM.DETAIL panel that conditionally can be used to format a report or part of a report. Virtual Storage Extended. An operating system that is an extension of Disk Operating System/ Virtual Storage. A VSE consists of (1) VSE/Advanced Functions support and (2) any IBM-supplied and user-written programs that are required to meet the data processing needs of a user. VSE and the hardware it controls form a complete computing system. VM. Virtual Machine (IBM operating system). The generic term for the VM/ESA environment. VSE. Virtual Storage Extended (IBM operating system). The generic term for the VSE/ESA environment. WAIT. The keyword for an endless-wait-state problem. Workstation Database Server. The IBM family of DRDA database products on the UNIX and Intel platforms (such as DB2 Universal Database (UDB), DB2 Common Server, DB2 Parallel Edition, and DataJoiner.)
397
Glossary
398
Bibliography
The following lists do not include all the books for a particular library. To get copies of any of these books, or to get more information about a particular library, contact your IBM representative.
CICS publications
CICS Transaction Server for OS390 CICS Users Handbook CICS Application Programming Reference CICS Application Programming Guide CICS DB2 Guide CICS Resource Definition Guide CICS Problem Determination Guide CICS System Definition Guide CICS Intercommunication Guide CICS Performance Guide CICS Transaction Server for VSE/ESA Users Handbook Application Programming Reference Application Programming Guide Resource Definition Guide Problem Determination Guide System Definition Guide Intercommunication Guide Performance Guide
COBOL publications
COBOL for VSE/ESA Language Reference COBOL for VSE/ESA Programming Guide
399
Bibliography
Utility Guide and Reference Reference for Remote DRDA Requesters and Servers IBM DB2 Server for VSE & VM Diagnosis Guide and Reference DB2 Server for VSE Messages and Codes DB2 Server for VM Messages and Codes DB2 Server for VSE System Administration DB2 Server for VM System Administration DB2 Server for VSE & VM Operation DB2 Server for VSE & VM SQL Reference DB2 Server for VSE & VM Application Programming DB2 Server for VSE & VM Interactive SQL Guide and Reference DB2 Server for VSE & VM Database Services Utility DB2 Server for VSE & VM Performance Tuning Handbook DB2 Universal Database for iSeries SQL Reference SQL Programming with Host Languages DB2 Universal Database Command Reference SQL Reference Message Reference DB2 DataJoiner DataJoiner Application Programming and SQL Reference Supplement
400
OS/390 publications
JCL OS/390 MVS JCL Reference OS/390 MVS JCL Users Guide Pageable Link Pack Area (PLPA) OS/390 Extended Architecture Initialization and Tuning OS/390 SPL: Initialization and Tuning VSAM OS/390 VSAM Administration Guide OS/390 VSAM Catalog Administration Access Method Services TSO/E TSO/E Primer TSO/E Users Guide SMP/E OS/390 System Modification Program Extended Messages and Codes OS/390 System Modification Program Extended Reference OS/390 System Modification Program Extended Users Guide
OS PL/I publications
OS PL/I Programming Language Reference OS PL/I Programming Guide
Bibliography
401
VM/ESA publications
VM/ESA Planning and Administration VM/ESA Command Reference
VSE/ESA publications
Planning System Utilities Guide for Solving Problems
402
Index
Special characters
&variable parameter 325 arithmetic 314, 360 expressions 360 overflow 314 ascending order, sorting sequence 52, 336 ASIS formatting type 281 asterisk (*), placement of cursor 331, 333 authorization granting on table 242 revoking on table 243 to use objects 5 automatic interrupt 69 AVG column function 338 AVG column function in SQL AVG keyword 338 canceling a command or query 68 case operand for Prompted Query 42 changing appearance of a report 26 column names in queries 70 date/time values using scalar functions 99 default chart format 189 information in queries 70 row conditions in queries 70 rows 358 U operator 358 saved query 69 sort order in queries 70 table names in queries 70 CHAR scalar function 100 CHAR scalar function 100 character constants 315 data in conditions 314 in descriptive columns 315 with LIKE 347 CHART database object 4 charts 189 changing data, using QMF forms 183 formats, using the ICU 188 properties, using the ICU 187 creating 177, 190 default type 182 fixing problems 189 format changing 188 creating 177 saving 188 formats, QMF 177 location of data on pie charts 179 on the X-axis 179 rules for specifying 179 printing 190 size limits for data 180 specifying type 182 ways to display data 177 CHECK command 171
A
access current location name 254 OS/390 editor from QMF 287 QMF from a VM editor 284 QMF with document interface 284, 287 remote data 256 accessing data, methods of 3 add break heading/footing 149 break segments and text 148 columns 241, 314 conditions in a CONDITIONS box 317 to an example table 316 using AND 336 data to long fields 234 date, time, page number to report 147 dates and times 107 dates/times 107 expressions 317 information to queries 70 lines to a query 86 new column to report 124 page heading/footing to report 139 rows 238, 345 I (insert) 345 subtotals to report 135 target tables 319 addition of dates and times 107 alias deleting 227 for table 226 for view 226 alias, in place of three-part name 256 ALL keyword 335 QBE 335 AND keyword 336 QBE 336 AO keyword 336 application requester 253 application server 257 Copyright IBM Corp. 1982, 2005
97
B
BAR chart format 177 batch mode procedures errors 215 example for MVS 214 restrictions 213 termination 215 using IMPORT/EXPORT commands 214 using the QMF EXIT command 215 writing 213 BETWEEN keyword 339 QBE 339 bilingual command 262 BLOB 241 break segments, adding to reports 148 break text, adding to reports 149
C
calculated values average 338 columns of expressions 314, 361 count 341 displaying on reports 159 for groups 344 maximum 348 minimum 349 of expressions 361 total 357 CANCEL command 68
403
CICS and remote unit of work 257 restrictions calculated values in reports 158 document interface 280 external editors 277 procedures with logic 257 QMF BATCH command 212 viewing data in tables 243 CLIST used with editor 275 CLOB 241 CMS exporting objects into 246 importing objects from 248 note facility 280 NOTE facility 280, 283 used with QMF document interface 280 XEDIT 283 codes edit 130 usage 134 column functions AVG 97, 338 COUNT 97, 341 MAX 97, 348 MIN 97, 349 SUM 97, 357 column functions 96, 97, 338, 341, 348, 349, 357 column names changing in queries 70 distinguishing between using correlation names 88 using qualifiers 87 finding 79 columns adding to reports 124 changing alignment of headings and data, on reports 129 column spacing 128 headings, on reports 126 on reports 122 order, on reports 125 spacing, on reports 128 widths, on reports 128 column functions 107 creating 79 creating empty 314 edit codes in 130 expressions 360, 361
columns (continued) fixed, on reports 141 functions nesting within scalar functions 107 joining 86 in Prompted Query 54 multiple 62, 86 names 314 punctuating 130 select using P. 310, 354 selecting 78, 310, 354 specifying, on reports 141 unnamed 314 with calculated values 360 command 7 CANCEL 68 CHECK 171 CONNECT compared to the DSQSDBNM parameter 252 from the command line 252 CONVERT 326 QBE to SQL 326 DBCS data 267 DELETE 328 using QBE 328 DISPLAY 323 using QBE 323 DRAW 238, 319, 329 using QBE 319, 329 EDIT 278 ENLARGE 330 FORM.COLUMNS 123 governor interrupt 68 how to issue 7 interrupt 68 LAYOUT 144 line 220 global variables 220 LIST 308 under QBE 308 QBE-specific 326 REDUCE 333 RUN 325 substitution variables 325 SHOW FORM 122 command line 5 comment in QBE query 328, 333 COMMENTS box 328, 333 concatenation, rules for 115 conditions character data in 314
conditions (continued) data types in 316 DBCS characters 316 grouping 84 in a CONDITIONS box 317 in an example table 316 multiple AND 83, 336 BETWEEN 339 IN 84 in Prompted Query 49 OR 83, 354 negative 350 opposite 81 quotation marks in 314 row 81 selection symbols in 82 special characters in 316 two on one row 336 values in a set 346 with equalities 362 with example elements 312 with expressions 317 with inequalities 362 writing 311, 313 CONDITIONS box 317, 328, 333 deleting 328 drawing 330 reducing 333 restricting data presentation 317 CONNECT command compared to the DSQSDBNM parameter 252 from the command line 252 prompt panels for 253 connecting from DB2 to DB2 258 from DB2 to SQL/DS 259 general considerations 252 QMF CONNECT command prompt panel 253 using QMF CONNECT command 252 with remote unit of work 252, 253 constants 315 conversion functions scalar 98 conversion scalar functions 98 CONVERT command 326 QBE to SQL 326 converting QBE to SQL 326 converting queries to SQL 326 copy tables 225, 342
404
correcting, saved query 69 correlation names rules for 95 used in a subquery 94 used to distinguish between columns 88 COUNT column function 97, 341 COUNT column function 97, 341 counting number of values in a column 341 creating expressions 45 new column in report 45, 79 reports 26 reusable procedures 198 row conditions 21, 47 currency symbol changing 132 current location changing 252 DSQAO_CONNECT_LOC 254 procedures, forms, and queries 258 QMF objects 257 QMFs governor exit 254 CURRENT SQLID 257
D
D operator 342 data deletion 342 entry 345, 358 inserting rows 345 updating rows 358 retrieval by remote unit of work 257 type 313, 348 DATA database object 4 data type dependencies with LIKE 348 result of operation 313 data types conversion using scalar functions 98 GRAPHIC 264 LONG VARGRAPHIC 264 valid 264 VARGRAPHIC 264 with DBCS 264 database enhancements 379 erasing queries from 71 objects, types of 4 release support 379
database (continued) retrieving saved query from 69 Database Status Panel 68 DATE scalar function 99 DATE scalar function 99 date/time adding to page headings/footings 147 arithmetic, date/time 107, 114 data 107 edit codes 101 formats 101 scalar functions 99, 104 DAY scalar function 101 DAYS scalar function 108 DB2 for MVS requirement for QMF 1 specific QMF function support in 379 DB2/6000 for AIX requirement for QMF 1 specific QMF function support in 379 DBCLOB 241 DBCS (double-byte character set) appearance compared to SBCS data 262 changing lengths of names and fields 263 description 262, 272 display from database object list 262 exporting 272 followed by SI delimiter 262 graphic data type 316 how data truncation is handled 272 how incorrect data string is handled 271 importing 272 in forms 268 in input fields 267 in queries 267 on non-DBCS terminals 262 preceded by SO delimiter 262 sorting 337, 343 with example elements 312 DCF (Document Composition Facility) formatting type 280 how to insert a QMF report 280 DECIMAL SQL scalar function 98
DECIMAL scalar function 98 decrementing dates, times, or timestamps 107 default chart format, changing 189 report format 121 report format, changing 121 report format,changing 26 defining example elements 312 expressions 45 new column in report 45 DELETE command using QBE 328 DELETE command 328 deleting aliases 227 COMMENTS box 328 CONDITIONS box 328 example table 328 information from queries 71 lines from a query 86 query 71, 328 rows from a table 342 using QBE 342 synonyms 227 tables 227 views 227 descending order, sorting sequence 52, 342 detail blocks using panel variations to change 156 using to refine report format 154 DIGITS scalar function 98 display form panels 120 DISPLAY command 323 using QBE 323 displaying 29 a list of database objects using the List key 29 calculated values on reports 159 correcting queries 70 duplicate rows 335 form panels 120 QBE Query panel 307, 321 reports 66 representative reports 144 special conditions on reports 161 distributed unit of work 3 division sign () 313
Index
405
DO keyword 343 Document Composition Facility 280 document interface 289 CMS note facility 280 how to insert a QMF report using XEDIT 280 restrictions 283 using 283 double byte data 264 double-byte character set (DBCS) 262 DRAW command 238, 319, 329 using QBE 319, 329, 330 Draw function key 79 drawing COMMENTS box 330 CONDITIONS box 330 example tables 308, 329 target tables 319, 329 DSN option, GETQMF 282 DSQAO_CONNECT_LOC 254 DSQDC_COST_EST 218 DSQSDBNM program parameter 252, 253 duplicate rows eliminating 320, 359 duplicate rows in reports, eliminating 57, 320, 359 durations date/time arithmetic 109 incrementing and decrementing dates 109 times 113 timestamps 114 making easier to read 112 DXT (Data Extract) 275 end user dialogs EXTRACT command prompt panel 277 extract request 276 main menu 276 used within QMF 276 prerequisites 276
E
echo area, definition 19 edit codes changing 132 character data 130 currency symbol 132 date/time 101 definition 130 numeric data 130 percent data 130
edit codes (continued) specifying punctuation for values, in report columns 130 suppressing zero values 131 EDIT command 278 editing in CMS NOTE 283 in ISPF-PDF 283 in PS/TSO 283 QMF objects 278 using CLIST 278 using CLIST as editor name 278 using editors with QMF 277 using EXEC as editor name 278 using ISPF/PDF 278 using XEDIT 278, 283 within QMF ISPF 277 eliminating duplicate rows in reports 57, 320, 359 ending QMF session 6 ENLARGE command 330 Entry of long names within an SQL statement 75 equalities 362 error messages HELP command 14 error messages, getting help for 14, 15 European format, date/time edit codes 101 evaluation of expressions, rules 312 example elements 312 table conditions in 316 deleting 328 description 308 drawing 329 enlarging 330 expressions in 316 reducing 333 restrictions on 319 with added columns 314 with example elements 315, 319 with target table 319 example elements 312 example table conditions in 316 deleting 328 description 308 drawing 329 enlarging 330
example table (continued) expressions in 316 reducing 333 restrictions on 315, 319 with added columns 314 with example elements 315, 319 with target table 319 with unnamed columns 314 exercises using QBE 363 exercises for Query-ByExample 363 EXPORT command CICS 247 HTML reports 247 language 262 language parameter 246 TSO 246 exporting DBCS data 272 HTML reports 247 objects into CICS/VSE 247 into CMS 246 into TSO 246 expressions arithmetic 360 definition 45 evaluating 312 in a CONDITIONS box 317 in conditions 317 in example tables 316 numeric data in 314 order of evaluating 313 results with nulls 353 summary functions 45, 46 use of parentheses 313
F
final text, specifying on reports 156 FLOAT scalar function 98 FLOAT scalar function 98 footings adding date, time, page number 147 to reports 139 changing alignment of 147 refining, on reports 145 using global variables in 146 form panel changing column names 315 FORM database object 4 FORM.BREAKn panel 137
406
FORM.CALC panel 159 FORM.COLUMNS panel 123 FORM.CONDITIONS panel 165 FORM.DETAIL panel 154 FORM.FINAL panel 157 FORM.MAIN panel 122 FORM.OPTIONS panel 143 FORM.PAGE panel 139 formats time and date functions 101 formats for time and date functions 101 formatting reports for document type ASIS 281 DCF 280 using QMF forms 119, 174 forms correcting errors on 171 displaying 120 resetting to default values 173 saving 172 using DBCS data in 268 using to create reports 119, 174 FORMS panels, displaying 122 function keys 5, 309, 330, 333 defined 5 enlarging 330 reducing 333 function keys (and synonyms) and remote unit of work 257
GRANT statement 257 graphic data in Prompted Query 42 GRAPHIC data type 264 graphic data with LIKE 347, 348 grouping data 344
H
HEX scalar function 98 High Performance Option 289 HISTOGRAM chart format 177 home panel starting a session 5 Home panel 254 HOUR scalar function 103
interrupt (continued) by the governor 69 ISO format, date/time edit codes 101 ISPF-PDF (Interactive System Productivity Facility-Program Development Facility) 275 accessing from QMF 279 primary option menu panel 279 supported environments 283 used while in QMF 283
J
JIS format, date/time edit codes 101 joining columns in Prompted Query 54 in QBE 321 in SQL 86 multiple tables 58, 86, 321 strings 114 tables in Prompted Query 54
I
I keyword 345 I operator 345 ICU (Interactive Chart Utility) used with editor 275 IMPORT command 248, 249 importing DBCS data 272 objects from CICS 249 from CMS 248 from TSO 248 IN keyword 346 using in QBE 346 with NOT 350 IN with NOT 350 incrementing dates, times, or timestamps 107 inequalities 362 in conditions 362 information, adding or changing in queries 70 input fields 267 inserting a row into a table 345 CMS NOTE 280 GETQMF macro 281 ISPF 280 PROFS 280 PS/TSO 280 QMF report from an editor 280 reports 281, 282 rows into tables 345 USEQMF option 281 XEDIT 280 INTEGER SQL scalar function 98 INTEGER SQL scalar function 98 interrupt a command or query 68
K
keys, program function (PF), on home panel 5 keywords 357, 358, 360 ALL 335 AND 336 AO 336 AVG 338 BETWEEN 339 COUNT 341 D 342 DISTINCT 85 DO 343 G 344 I 345 IN 346 keywords, QBE 359 LIKE 347 MAX 348 MIN 349 NOT 350 NULL 352 OR 354 P 354 UNQ 359 USER 360 keywords, QBE ALL 335 AND 336 AO 336 AVG 338
G
G keyword 344 G literal 267 GETQMF editor macro 280 global variable add 218 change 218 delete 218 display 218 list 217, 219 and the CASE option 219 to add or remove a variable 219 to change or delete a variable 217 location 254 panel 218 remove 220 reset 220 RESET GLOBAL command 220 set 217, 218, 220 SET GLOBAL command 220 governor interrupt routine 69, 254
Index
407
keywords, QBE (continued) BETWEEN 339 COUNT 341 D 342 DO 343 G 344 I 345 IN 346 LIKE 347 MAX 348 MIN 349 NOT 350 NULL 352 OR 354 P 354 SUM 357 U 358
location name global variable for 254 list panel 253 QMF CONNECT prompt panel 253 QMFs governor exit 254 viewing 254 LONG VARGRAPHIC data type 264
M
manipulating character/graphic strings 98 MAX column function 97 in QBE 348 in SQL 97 message line 5 methods of accessing data 3 MICROSECOND scalar function 104 MIN column function 97, 349 minimum unique abbreviations, for commands 7 minus sign () 313, 360 in expressions 360 order of evaluation 313 MINUTE scalar function 103 model queries 323 MONTH scalar function 102 More Help, for error messages 15 more than one table, presenting data from 321 multiple columns, joining 62 conditions 336, 354 under QBE 336, 354 table queries 86 tables, joining 58 multiplication operator (*) 313
L
language operand for Prompted Query 42 LANGUAGE parameter SET PROFILE command 307 LANGUAGE parameter on SET PROFILE command 307 LAYOUT command 144 LENGTH string function 104 LENGTH string function 104 LIKE keyword any number of characters (%) 348 any single character (_) 347 data type dependencies 348 graphic data 348 selecting on conditions 347 with NOT 350 limits for size of chart data 180 LINE chart format 177 linear procedures example 192 guidelines 193 LIST command 32, 308 under QBE 308 List function key 29 command prompt panel 30 QMF CONNECT prompt panel 253 list of database objects displaying 29 listing tables 43 locating data on charts in general 179 on pie charts 179 on the X-axis 179
National Language Feature (NLF) 213 negative conditions 350 NLF (National Language Feature) 213, 262 NOT keyword 350 Notices 385 null definition of 352 in condition with IN keyword 346 passing in expressions 125 replacing with data 125 values defined 352 prints and displays as 352 replacing using the VALUE function 105 results in expressions 353 using the VALUE function 105 with conditions 317 with G 345 with I 345 with NOT 350 numeric constants 315 data 314 in expressions 314
O
object owner 5 objects 4 CHART 4 current location 257 DATA 4 database 4 displaying a list of 29 exporting HTML reports 247 into CICS 247 into CMS 246 into TSO 246 FORM 4 importing from CICS 249 from CMS 248 from TSO 248 listing 43 PROC 4 PROFILE 4 QUERY 4 REPORT 4 retrieving from the database saving in the database 9
N
N literal 267 name column 1, 314 for columns of calculated values 314 for form panels, displaying list of 120 for tables 2 location qualifier 2 owner qualifier 2 query, maximum length 42 tables 1 National Language Feature 262
11
408
objects (continued) sharing with other users 9 operators ALL 335 AO 336 D 342 DO 343 G 344 I 345 P 354 U 358 UNQ 359 option GETQMF macro 280 USEQMF 281 OR keyword 354 OR keyword 354 order evaluating expressions 313 of columns ascending 336 descending 342 reversing 310 rows in a report 52, 85, 336, 342 ascending 336 descending 342 OS/390 (Multiple Virtual Storage) 286, 287
P
P (present) keyword 309, 354 page heading and footing 26 adding to a report 26 page headings adding date, time, page number 147 to reports 139 changing alignment of 147 refining, on reports 145 using global variables in 146 panel CONVERT Command Prompt 326 database status 68 display form panels using the SHOW and DISPLAY commands 120 home 5 Prompted Query dialog 40 QBE QUERY 308 RUN command prompt 325 parentheses in expressions 313 parentheses in expressions 313
PASS NULLS field 125 percent sign (%) with LIKE 348 percent sign (%) with LIKE 348 performance database status panel 68 performance, database status panel 68 PF (program function) keys on home panel 5 PIE chart format 177 placement of cursor 331, 333 plus sign (+) 313, 360 in expressions 360 order of evaluation 313 POLAR chart format 177 presenting all columns of a table 309, 354 certain values in a set 346 data 354 data from more than one table 321, 356 maximum number of specific columns 309 on either of two conditions 354 on part of a value 347 on the opposite of a condition 350 on two conditions 336 rows with a certain value 311 rows with missing entries 352 some columns in a table 355 some rows in a table 355 specific columns of a table 310, 355 specific rows of a table 311 values within a range 339 printing charts 190 DBCS reports 272 reports 173 PROC database object 4 procedures batch errors 215 example for MVS 214 termination 215 using IMPORT/EXPORT commands 214 using the QMF EXIT command 215 writing 213 bilingual command 261 DBCS data 267
procedures (continued) for QMF in CICS environment 191 in CMS environment 191 in TSO environment 191 linear 192 connecting from, to a remote location 208 creating 191 reusable creating 198 running in batch 212 sharing with other QMF users 198 to create queries 209 using global variables 211 using REXX variable values 210 using template SQL statements 210 to run 197 with logic connecting from, to a remote location 208 creating 191 example 194 using REXX variables in 201 processing data and time values 98 order 313 processing date and time values 98 processing order 313 profile saving changes in the database 8 SET PROFILE command 307 setting up 8, 17, 307 viewing 8 PROFILE database object 4 PROFS used with QMF document interface 280 Program Function (PF) keys on home panel 5 QBE initial settings 309 Prompt panel variable data 324 prompt panel for variable data 324 prompted query main panel command line 41 echo area 41 function key area 41 scroll indicator 41
Index
409
Prompted Query and echo areas 40 dialog panels 40 displaying a report 66 eliminating duplicate rows in reports 57 finding comments about tables 43 general rules 42 joining multiple columns in 62 joining tables in 54 listing tables 43 main panel 40 profile requirements 42 running a query 66 selecting tables 42 SQL equivalent of 72 starting 42 substitution variables in 63 PS/TSO, used with QMF document interface 280 PULL statements to specify REXX variables 201
Q
Q.APPLICANT sample table 297 Q.INTERVIEW sample table 298 Q.ORG sample table 299 Q.PARTS sample table 300 Q.PRODUCTS sample table 300 Q.PROJECT sample table 301 Q.STAFF sample table 302 Q.SUPPLIER sample table 304 QBE (Query-By-Example) calculated values in expressions 341, 360 commands 326 keywords 335, 363 Query panel 308 QMF getting acquainted with 1 Home panel 17 objects, definition 4 quick lessons in using 17 session ending 6 qualifiers, to distinguish between columns 87 query 3 adding lines to 70, 86 specifications to 70 calculated values columns of expressions 361 for groups 344
query (continued) calculated values in 344, 361 changing 70 changing saved 69 conditions selecting on 311, 317 converting 326 to SQL 326 creating using Prompted Query 17, 39, 75 creating using SQL 75, 119 data entry 345, 358 insert rows 345 update rows 358 definition 3 deleting DELETE command 328 from database 71, 328 information from 71 lines from 86 rows 342 eliminating duplicate rows 335, 359 erasing from database 71 example elements 312 expressions arithmetic 360 definition 360 in conditions 317 format 76 joining multiple columns in 62 listing 308 LIST command 308 making reusable 63, 116 model 323 multiple table 86 non-displaying, correcting 70 ordering rows in a report 336, 342 Prompted Query 3 Query-by-Example 3 resetting 307 retrieving from database 69 reusing 323 row conditions in 47, 81, 311, 317 rows 317 running 66, 78, 308 under QBE 308 saving 67, 117, 308 select all columns 354 from multiple tables 356 specific columns 310
query (continued) selecting all columns 43, 78, 354 columns for a Prompted Query 20 from multiple tables 53, 88, 356 rows for a Prompted Query 21 specific columns 44, 78, 310 specific rows 47, 80, 311, 355 table for a Prompted Query 17 selecting on conditions BETWEEN 339 IN keyword 346 multiple 336, 354 negative 350 specific columns 355 specific rows 311, 355 values within a range 339 with a certain string of characters 347 with equality and inequality 362 sharing with other users 68, 117, 360 sorting rows in 52, 85 SQL 3 starting 42, 77 substitution variables in 63, 116 with DBCS data graphic strings 267 with substitution variable data 324 QUERY database object 4 Query-by-Example 307, 379 quotation marks when needed 314 with constants 315 with LIKE 347
R
range of values 339 REDUCE command 333 reformatted text, mixing with tabular data 168 remote data access, DB2 environment 2 remote location, connecting from a procedure 208 remote unit of work accessing the current location name 254
410
remote unit of work (continued) connect from DB2 to DB2 258 DB2 to SQL/DS 259 granting privileges to other locations 257 Lost Connection prompt panel 255 QMF objects 257 reconnecting to a location 255 states of QMF when a connection is lost 255 tables and views 256 tips and techniques 257, 258 tips for procedures 258 using QMF with 256, 257 replacing null values using the VALUE function 105 REPORT database object 4 reports adding break segments 148 break text 149 new column to 124 page headings and footings 26 subtotals to 135 calculating values on 158 changing 26 alignment of headings and data 129 column heading 126 column names 26 column order 125 column width 26, 128 columns in 122 default format 121 completing before connecting to remote location 252 correcting errors before display 171 creating 119, 174 default report format 26 definition 26 displaying calculated values in 159 FORMS panels for 122 representative 144 special conditions on 161 edit codes in 130 eliminating duplicate rows from 57 final text in 156 footings in 139, 141, 145, 146, 148
reports (continued) FORM.COLUMNS command 123 FORM.MAIN command 122 formatting with detail blocks 154 headings in 139, 141, 145, 148 mixing tabular data with reformatted text 168 page headings 146 printing 173 SHOW FORM command 122 showing totals across rows 169 specifying fixed columns 141 specifying punctuation for values in columns 130 specifying text for subtotals 137 specifying usage codes 134 using default format 121 RESET GLOBAL command 220 RESET QUERY command 307 resetting forms to default values 173 restrictions AVG 339 COUNT 341 example elements 312 MAX 349 MIN 350 SUM 358 target tables 319 unnamed columns 319 variable names 326 retrieving data from multiple tables 86, 91 with QBE 309 query from database 69 saved query 69 reusable procedures, creating 198 reusing queries 323 reversing order of columns 310 REXX error-handling instructions using messages with the EXIT instruction 205 REXX error-handling statements branching to subroutines 205 REXX EXECs calling from a procedure with logic 207 with substitution variables 207 without substitution variables 207 writing 125
REXX logic in procedures example 194 guidelines 196 REXX variables differences from substitution variables 204 passing values to procedures with logic 203 specifying values, using SAY and PULL statements 201 using in procedures with logic 201 rows adding 345 conditions changing in queries 70 specifying 81 deleting 342 duplicates in reports, eliminating 57 eliminating duplicates 85, 335, 359 from multiple tables 356 inserting 345 ordering 336, 343 select specific 311 select on conditions AND 336 BETWEEN 339 OR 354 selecting both conditions true 83 one of two conditions true 83 specific 47, 80 using character values 81 using conditions 81 using grouped conditions 84 using multiple conditions 83 using multiple OR conditions 84 using multiple row conditions 49 using opposite conditions 81 using selection symbols 82 with no data 80 selecting on conditions 311 selecting some 355 sorting 85 updating 358 with nulls 352 rules for creating a subquery 92 for date/time addition 107
Index
411
rules (continued) for date/time subtraction 107 for location of data on charts 179 RUN command 25, 308, 325 description 308 substitution variables 325 to run a query 25 running 25 a prompted query 25, 66 an SQL query 78
S
sample tables 3, 297, 305 SAVE command 308 under QBE 308 saved query, changing 69 saving chart format 188 queries in the database 67, 117, 308 report forms 172 SAY statements to specify REXX variables 201 scalar functions 98, 99, 106 nesting 106 uses of 98, 99 SCATTER chart format 177 SCRIPT/VS how to insert a QMF report 280 SECOND scalar function 103 select 17 all columns 78, 354 columns for a Prompted Query 20 maximum number of specific columns 309 multiple tables 356 on conditions 311 introduction 311 multiple 336, 354 negative 317, 350 values in a set 346 values within a range 339 with a certain string of characters 347 with equality and inequality 362 rows 21, 47, 80 some columns 78, 355 some rows 355 specific columns 310 specific rows 311 table 17 tables 42, 79
selecting 355, 356, 362 selection symbols 33 SET GLOBAL command creating global variables 220 extended syntax 220 SET PROFILE command 307 LANGUAGE parameter 307 sharing queries 68, 117, 360 shift in delimiter (SI) 262, 267 shift in delimiter character 262 shift out delimiter (SO) 262, 267 shift out delimiter character 262 shortened form panel names 120 SHOW command globals 217, 220 to display forms 120 SHOW FIELD for long expressions 219 SHOW FIELD function key 219 SHOW FORM command 122 SHOW GLOBAL command 218, 220 Show Global Variable panel 219 SHOW GLOBALS command 217, 218 SI character 262 size limits for chart data 180 slash (/) 360 in expressions 360 SO character 262 solutions to exercises for QBE 366 sort order changing in queries 70 specifying 70, 336, 342 sorting sequence AO (ascending order) 336 DO (descending order) 342 special characters in Prompted Query 42 special conditions displaying on reports 161 identifying using expressions 164 identifying using REXX EXEC 161 SQL converting queries to 326 equivalent of prompted query 72 functions, advanced date/time arithmetic 107 joining strings 114 multiple table queries 86 statements 75
SQL (continued) for adding columnns 241 for adding rows 238, 239 for authorizing access to tables 242 for changing rows 239, 240 for copying rows from one table to another 240 for deleting rows 240 using to work with data 119 substitution variables in 116 SQL (Structured Query Language) functions date/time arithmetic 107 joining strings 114 SQL query converting queries from QBE 326 SQL/DS requirement for QMF 1 specific QMF function support in 379 starting Prompted Query 42 QMF 5 status, database panel 68 Stored Procedure Builder 289 string functions LENGTH 104 SUBSTR 105 VALUE 105 string functions 104, 106 string of characters with LIKE 348 subquery rules for creating 92 to retrieve data from multiple tables 91 to retrieve more than one value 92 to satisfy a condition 94 using a correlation name 94 substitution values 326 variable in a query 324, 326 substitution values 326 substitution variables 324 differences from REXX variables 204 in procedures with logic 198 in QBE 326 making queries reusable with 63, 116
412
substitution variables (continued) specifying values for as part of RUN command 64, 116 on RUN Command Prompt panel 65, 117 using global variables 66, 117 supplying values 198 using the RUN command 199 using the RUN command prompt panel 199 using the SET GLOBAL command 199 SUBSTR scalar function 105 SUBSTR string function 105 subtotals adding to reports 135 specifying text for 137 subtraction of dates and times 107, 114 SUM column function 96, 97, 357 SUM column function in QBE 357 in SQL 96, 97 summary conditions 341 summary conditions 341 summary functions 46 SURFACE chart format 177 synonym deleting 227 for table 226 for view 226
T
TABLE chart format 177 table editor search 235 using column defaults 232 using nulls 232 Table Editor ending a session 238 for adding data to long fields 234 for adding rows 234 for changing rows 235, 236 for deleting rows 237 tables adding columns using SQL statements 241
tables (continued) adding rows using SQL statements 238, 239 using the QMF DRAW command 238 using the Table Editor 234 appending to existing 224 authorizing access 242 to add new rows 242 to change rows 242 to delete rows 242 to update columns 243 to view 242 changing rows using SQL statements 239, 240 using the QMF DRAW command 239 using the Table Editor 235, 236 columns, relationship to 1 copying 225, 342 copying rows from one to another using SQL statements 240 creating 223 a view from 225 alias for 226 synonym for 226 using SQL statements 223 deleting 227 deleting rows using QBE 342 using SQL statements 240 using the Table Editor 237 inserting rows using QBE 345 using SQL statements 238 joining 54, 86 joining multiple 58, 86 listing 43 location qualifier 2 multiple joining columns from 86 merging data from 88 retreiving data from 91 used to create a query 86 names changing in queries 70 specifying 1 naming conventions 2 owner qualifier 2 planning to create 223
tables (continued) presenting data from more than one 321 revoking access 243 rows, relationship to 1 sample 3, 297 Q.APPLICANT 297 Q.INTERVIEW 298 Q.ORG 299 Q.PARTS 300 Q.PRODUCTS 300 Q.PROJECT 301 Q.STAFF 302 Q.SUPPLIER 304 saving 224 selecting 42, 79 target 319, 329 updating rows 358 using column defaults with Table Editor 232 with null data 352 tabular data, mixing with reformatted text 168 target table, drawing 319, 329 temporary storage QMF objects in 9 saving to 9 three-part names GRANT statements 257 QMF objects 258 tablename 257 use of an alias 256 TIME scalar function 100 TIME scalar function 100 times sign (*) in expressions 360 timestamp adding or subtracting duration 114 TIMESTAMP scalar function 100 TIMESTAMP data 107 TIMESTAMP scalar function 100 timestamps, adding or subtracting duration 114 tips fixing problems with charts 189 for remote unit of work 257 totals, showing across rows in reports 169 TOWER chart format 177 two conditions on one row 336 two tables, presenting data from 321
Index
413
U
U keyword and operator 358 underscore (_) 312, 347 example element 312 with LIKE 347 UNQ 359 updating rows 358 updating rows 235, 358 USA format, date/time edit codes 101 usage codes definition 134 specifying 134 USEQMF option, GETQMF 281 user ID obtaining from QMF administrator 5 USER variable 326, 360 using scalar functions to avoid null values 98
W
wildcards 33
X
XEDIT editor used while in QMF 275 used with QMF document interface 280
Y
YEAR scalar function 102
Z
zero values suppressing 131
V
VALUE string function 105 values calculated 158 on reports 314, 360 expressions 360 on reports sources 158 specifying calculations for 158 values, calculated 360 with unnamed columns 314 VARGRAPHIC data type 264 scalar function 98 variables 324 data 326 delete 220 reset 220 substituting user ID for 360 substitution 326 USER 326, 360 value 218, 220 view creating alias for 226 creating from a table 225 creating synonym for 226 deleting 227 location name 254 VM editor 284, 286 when QMF is active 286 when QMF is inactive 284
414
Printed in USA
SC18-7445-01
Spine information:
QMF
Version 8 Release 1