The three main reasons to relocate or restructure a table are:
Reading or writing to the table conflicts with other database activities, and moving it to a different physical disk would alleviate the problem.
A table has outgrown its current location and would acquire more free space if it were moved to a different location.
Moving the table would eliminate gaps of wasted space or chained rows, which cause slow response times for queries and other database operations involving the table.
Prior to Oracle, the only method of relocating or restructuring a table was to create a copy of the table, then drop the table, recreate the table structure (including changing the tablespace name if you wanted to relocate the table), and then copying all the data into the table. This series of steps was complex and time-consuming. It also required you to create enough free space in the database to hold two copies of the data while you shuffled things around. In addition, all the issues involved in dropping a table came into play (such as lost grants, indexes, and other related objects).
Oracle solves these problems by allowing you to relocate or restructure a table without dropping it.
The MouseOver below shows you the new syntax of the ALTER TABLE command with the new MOVE keyword.
Choose one of these three options. Choosing the TABLESPACE option relocates the table to the specified tablespace. The other choices reorganize the table
This table is moved to a new location
This table is reorganized.
ALTER TABLE tablename MOVE
[TABLESPACE tablespacename]
[PCTFREE n]
[PCTUSED n];
ALTER TABLE PRODUCT_OBJ_TABLE MOVE
TABLESPACE USER_NEXT;
ALTER TABLE CUSTOMER_OBJ_TABLE MOVE
PCTFREE 15;
Move Relocate Table
The ALTER TABLE… MOVE command allows you to relocate or reorganize a table much more simply.
Stream Record Format
A file is in stream record format when the records are not specified by size; instead SQL*Loader forms records by scanning for the record terminator. Stream record format is the most flexible format, but there can be a negative effect on performance.
The specification of a datafile to be interpreted as being in stream record format looks similar to the following:
INFILE datafile_name ["str terminator_string"]
The terminator_string is specified as either 'char_string' or X'hex_string' where:
'char_string' is a string of characters enclosed in single or double quotation marks
X'hex_string' is a byte string in hexadecimal format
When the terminator_string contains special (nonprintable) characters, it should be specified as a X'hex_string'.
However, some nonprintable characters can be specified as ('char_string') by using a backslash. For example:
\n indicates a line feed
\t indicates a horizontal tab
\f indicates a form feed
\v indicates a vertical tab
\r indicates a carriage return
If the character set specified with the NLS_LANG parameter for your session is different from the character set of the datafile, character strings are converted to the character set of the datafile. This is done before SQL*Loader checks for the default record terminator.
Hexadecimal Strings
Hexadecimal strings are assumed to be in the character set of the datafile, so no conversion is performed. On UNIX-based platforms, if no terminator_string is specified, SQL*Loader defaults to the line feed character, \n.
On Windows-based platforms, if no terminator_string is specified, then SQL*Loader uses either \n or \r\n as the record terminator, depending on which one it finds first in the data file. This means that if you know that one or more records in your data file has \n embedded in a field, but you want \r\n to be used as the record terminator, then you must specify it. Example 5-5 illustrates loading data in stream record format where the terminator string is specified using a character string, '|\n'.
The use of the backslash character allows the character string to specify the nonprintable line feed character. Example 5-5: Loading Data in Stream Record Format
load data
infile 'example.dat' "str '|\n'"
into table example
fields terminated by ',' optionally enclosed by '"'
(col1 char(5),
col2 char(7))
example.dat:
hello,world,|
james,bond,|
Relocate Table - Exercise
Click the exercise link below to test your ability to relocate a table. Relocate Table - Exercise
The next lesson shows you another cool Oracle table trick: creating and using a temporary table.