Entering content frameFunction documentation Oracle Database Storage Parameters in the ABAP Dictionary Locate the document in its SAP Library structure

Use

The Structure linkdatabase utility is the interface between the ABAP Dictionary and the relational database underlying the SAP System. You can use it to create, convert, and delete ABAP Dictionary objects, as well as database table, database views, and other SAP objects. You can do this online or in the background.

In a conversion, the definition of a table in the database is adapted to its changed definition in the ABAP Dictionary. You can also implement various analysis options, for example, to display table and index definitions, or check the consistency of objects.

For some SAP objects, particularly transparent tables, you can set user-specific database parameters, such as INITIAL EXTENT, NEXT EXTENT, MINIMUM EXTENTS, MAXIMUM EXTENTS, TABLESPACE, FREELIST GROUPS, FREELISTS, PCT FREE, PCT USED, INDEX ORGANIZED, PARTITION, COLUMN LIST. You can also set flags to determine which parameters you want to apply the next time a table is created (deleted and created, converted) and which ones you want to take effect immediately. However, you cannot change all the values immediately. You can only change MAXEXTENTS, NEXT, PCTFREE, and PCTUSED immediately (these values are valid if a new storage area is requested for the object).

Prerequisites

To use the database utility, you need an authorization for authorization object S_DDIC_OBJ, such as S_DDIC_ALL. Make sure that the authorizations in your system are set so that only the database administrator is authorized to configure the database parameters. Check the settings and change them if necessary.

Features

Note the following parameters:

This parameter lets you build a table in the same way as an index (that is, using a b*tree), so saving space.

The advantages of index-organized tables are:

The disadvantages of index-organized tables are:

This allows you to partition tables by using a range expression.

The advantages of partitioned tables are:

The disadvantages of partitioned tables are:

For more information on the other parameters, see the Oracle documentation.

Activities

For more information on how to call the database utility and set storage parameters, see:

Leaving content frame