DROP INMEMORY JOIN GROUP

Purpose

Use the DROP INMEMORY JOIN GROUP statement to remove a join group from the database.

Prerequisites

If the join group is in another user’s schema, then you must have the DROP ANY TABLE system privilege.

Syntax

Semantics

schema

Specify the schema containing the join group. If you omit schema, then the database assumes the join group is in your own schema.

join_group

Specify the name of the join group to be dropped.

You can view existing join groups by querying the DBA_JOINGROUPS or USER_JOINGROUPS data dictionary view. Refer to Oracle Database Reference for more information on these views.

Examples

The following statement drops the join group prod_id1:

DROP INMEMORY JOIN GROUP prod_id1;