ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzaik_5.4.0.1/rzaikdbdesign.htm

55 lines
3.9 KiB
HTML
Raw Permalink Normal View History

2024-04-02 14:02:31 +00:00
<?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="Database design" />
<meta name="abstract" content="Use the following topics to determine what tables you require in your database and to understand the relationship between those tables." />
<meta name="description" content="Use the following topics to determine what tables you require in your database and to understand the relationship between those tables." />
<meta name="DC.Relation" scheme="URI" content="rzaiksqlperf.htm" />
<meta name="DC.Relation" scheme="URI" content="normalization.htm" />
<meta name="DC.Relation" scheme="URI" content="tablesize.htm" />
<meta name="DC.Relation" scheme="URI" content="indexes.htm" />
<meta name="DC.Relation" scheme="URI" content="matchattrjoinfld.htm" />
<meta name="copyright" content="(C) Copyright IBM Corporation 1999, 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 1999, 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="dbdesign" />
<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>Database design</title>
</head>
<body id="dbdesign"><a name="dbdesign"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Database design</h1>
<div><p>Use the following topics to determine what tables you require in
your database and to understand the relationship between those tables.</p>
</div>
<div>
<ul class="ullinks">
<li class="ulchildlink"><strong><a href="normalization.htm">Normalization</a></strong><br />
Several available design methods allow you to design technically correct databases, and effective relational database structure. Some of these methods are based on a design approach called normalization. Normalization refers to the reduction or elimination of storing redundant data.</li>
<li class="ulchildlink"><strong><a href="tablesize.htm">Table size</a></strong><br />
The size of the tables that your application program accesses has a significant impact on the performance of the application program.</li>
<li class="ulchildlink"><strong><a href="indexes.htm">Use indexes</a></strong><br />
The use of indexes can improve significantly the performance of your applications.</li>
<li class="ulchildlink"><strong><a href="matchattrjoinfld.htm">Match attributes of join fields</a></strong><br />
Columns in tables that are joined should have identical attributes: the same column length, same data type (character, numeric), and so forth. Nonidentical attributes result in temporary indexes being built, even though indexes over corresponding columns may exist.</li>
</ul>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rzaiksqlperf.htm" title="Good application design includes the efficient use of machine resources. To run in a manner that is acceptable to the end user, an application program must be efficient in operation, and must run with adequate response time.">SQL performance</a></div>
</div>
</div>
</body>
</html>