64 lines
3.9 KiB
HTML
64 lines
3.9 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 xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-us">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="dc.language" scheme="rfc1766" 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. -->
|
||
|
<meta name="dc.date" scheme="iso8601" content="2005-09-19" />
|
||
|
<meta name="copyright" content="(C) Copyright IBM Corporation 1998, 2006" />
|
||
|
<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="keywords" content="description, collection (see schema), schema" />
|
||
|
<title>Schemas</title>
|
||
|
<link rel="stylesheet" type="text/css" href="ibmidwb.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="ic.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<a id="Top_Of_Page" name="Top_Of_Page"></a><!-- Java sync-link -->
|
||
|
<script language = "Javascript" src = "../rzahg/synch.js" type="text/javascript"></script>
|
||
|
|
||
|
|
||
|
<a name="collex"></a>
|
||
|
<h2 id="collex"><a href="rbafzmst02.htm#ToC_26">Schemas</a></h2><a id="idx26" name="idx26"></a><a id="idx27" name="idx27"></a>
|
||
|
<p>The objects in a relational database are organized into sets called schemas.
|
||
|
A schema provides a logical classification of objects in a relational database.
|
||
|
A <span class="italic">schema name</span> is used as the qualifier of SQL object
|
||
|
names such as tables, views, indees, and triggers. A schema is also called
|
||
|
a collection or library.</p>
|
||
|
<p>Each database manager supports a set of schemas that are reserved for use
|
||
|
by the database manager. Such schemas are called <var class="pv">system schemas</var>. User objects
|
||
|
must not be created in <var class="pv">system schemas</var>, other than SESSION.</p>
|
||
|
<p>The schema SESSION and all schemas that start with 'SYS' and 'Q' are <var class="pv">system schemas</var>. SESSION is always used as the schema name for declared
|
||
|
temporary tables. Users should not create schemas that start with 'SYS' or
|
||
|
'Q'.</p>
|
||
|
<p>A schema is also an object in the relational database. It is explicitly
|
||
|
created using the CREATE SCHEMA statement.<sup class="fn"><a id="wq6" name="wq6" href="rbafzmstcollex.htm#wq7">1</a></sup></p>
|
||
|
<p>An object that is contained in a schema is assigned to the schema when
|
||
|
the object is created. The schema to which it is assigned is determined by
|
||
|
the name of the object if specifically qualified with a schema name or by
|
||
|
the default schema name if not qualified.</p>
|
||
|
<p>For example, a user creates a schema called C:</p>
|
||
|
<pre class="xmp"> <span class="bold">CREATE SCHEMA</span> C </pre>
|
||
|
<p>The user can then issue the following statement to create a table called
|
||
|
X in schema C:</p>
|
||
|
<pre class="xmp"> <span class="bold">CREATE TABLE</span> C.X (COL1 <span class="bold">INT</span>)</pre>
|
||
|
<hr /><div class="fnnum"><a id="wq7" name="wq7" href="rbafzmstcollex.htm#wq6">1</a>.</div>
|
||
|
<div class="fntext">A schema can also be created
|
||
|
using the CRTLIB CL command, however, the catalog views and journal and journal
|
||
|
receiver created by using the CREATE SCHEMA statement will not be created
|
||
|
with CRTLIB.</div>
|
||
|
<br />
|
||
|
<hr /><br />
|
||
|
[ <a href="#Top_Of_Page">Top of Page</a> | <a href="rbafzmstsqlcon.htm">Previous Page</a> | <a href="rbafzmstch1table.htm">Next Page</a> | <a href="rbafzmst02.htm#wq1">Contents</a> |
|
||
|
<a href="rbafzmstindex.htm#index">Index</a> ]
|
||
|
|
||
|
<a id="Bot_Of_Page" name="Bot_Of_Page"></a>
|
||
|
</body>
|
||
|
</html>
|