ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzajq_5.4.0.1/rzajqcrttbl.htm

61 lines
4.2 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="Table" />
<meta name="abstract" content="An SQL table or physical file is the base object for a query. It represents the source of the data used to produce the result set for the query. It is created by the user and specified in the FROM clause (or OPNQRYF FILE parameter)." />
<meta name="description" content="An SQL table or physical file is the base object for a query. It represents the source of the data used to produce the result set for the query. It is created by the user and specified in the FROM clause (or OPNQRYF FILE parameter)." />
<meta name="DC.subject" content="definitions, table create, access method, create table, create table" />
<meta name="keywords" content="definitions, table create, access method, create table, create table" />
<meta name="DC.Relation" scheme="URI" content="rzajqpermobj.htm" />
<meta name="DC.Relation" scheme="URI" content="dsscan.htm" />
<meta name="DC.Relation" scheme="URI" content="rzajqtblprobe.htm" />
<meta name="copyright" content="(C) Copyright IBM Corporation 1998, 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 1998, 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="rzajqcrttbl" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>Table</title>
</head>
<body id="rzajqcrttbl"><a name="rzajqcrttbl"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Table</h1>
<div><p>An SQL table or physical file is the base object for a query. It
represents the source of the data used to produce the result set for the query.
It is created by the user and specified in the FROM clause (or OPNQRYF FILE
parameter).</p>
<div class="section"><p>The optimizer will determine the most efficient way to extract
the data from the table in order to satisfy the query. This may include scanning
or probing the table or using an index to extract the data.</p>
</div>
<div class="section"><p>Visual explain icon: </p>
</div>
<div class="section"><p><img src="rzajq503.gif" alt="Table icon" /></p>
</div>
</div>
<div>
<ul class="ullinks">
<li class="ulchildlink"><strong><a href="dsscan.htm">Table scan</a></strong><br />
A table scan is the easiest and simplest operation that can be performed against a table. It sequentially processes all of the rows in the table to determine if they satisfy the selection criteria specified in the query. It does this in a way to maximize the I/O throughput for the table.</li>
<li class="ulchildlink"><strong><a href="rzajqtblprobe.htm">Table probe</a></strong><br />
A table probe operation is used to retrieve a specific row from a table based upon its row number. The row number is provided to the table probe access method by some other operation that generates a row number for the table.</li>
</ul>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rzajqpermobj.htm" title="The database objects and access methods used by the query engine can be broken down into three basic types of operations that are used to manipulate the permanent and temporary objects -- Create, Scan, and Probe.">Permanent objects and access methods</a></div>
</div>
</div>
</body>
</html>