Previous Topic: Maintaining Identically-Defined EntitiesNext Topic: Modifying Schema, View, Table, and Routine Definitions


Methods for Modifying

You can use the following methods to change an SQL-defined database:

Choosing a Modification Method

In some cases, you may choose the method to use. In other cases, the method is dictated by database factors such as whether the table contains data or whether it participates in a referential constraint.

Each modification is discussed in detail in the following chapters.

Inform Your Users

Some changes you make to the database will have a direct impact on your users. For example, if you drop a table or a view, users will no longer have access to the data.

Before you make a change such as dropping a table, you can use SELECT statements to determine where the entity to be changed is used. Specifically, look for:

This indicates the potential impact the change may have and provides information about determining the best method to use to make the change.