Enterprise Edition Home |
Express Edition Home |
Previous Page | Next Page SQL Statements > MOVE TABLE >
MOVE TABLE cannot be used if you need to physically move the table data
from one database to another. In this case, you need to perform the following
steps:
- Use CREATE TABLE to create a new table, with an appropriate schema, in
the destination database.
- Use the INSERT INTO .... SELECT FROM statement to transfer the data from
the source table to the destination table
- Use the DROP TABLE statement to drop the original table.
You must also recreate any table objects, including indexes and fragmentation
strategies, and verify that there is sufficient disk space to move the data.
Related Information
Enterprise Edition Home |
Express Edition Home |
[ Top of Page | Previous Page | Next Page | Contents |
Index ]