create_database_size

Specify a database size that overrides values specified in the service template.

Format

emcli create_database_size -name="<size name>" 
-description="<size description>"        
[-attributes="cpu:<number of cores>;memory:<memory in GB>;processes:<max number of processes>;storage:<Total Storage in GB allocated to database>;"]
[-source_type="Profile Source"]  

[ ]  indicates that the parameter is optional.

Note: Use one or more attributes to specify the database size. The different attributes must be separated by a semicolon (; ). Attributes specified using the database_size verb override values specified in the service template.

Options

  • name

    Creates a name for the database size.

  • description

    Creates a description for the database size.

  • attributes

    Defines the database size. Attributes must be separated by a semicolon(;). You can specify values for the following attributes:

    cpu: Total number of cpu cores.

    memory: Total maximum in GB.

    processes: Total number of processes that can simultaneously connect to the database.

    storage: Total storage that is allocated to the database (in GB)

Example

The following example creates a database size named Small with a maximum of four CPUs, 50 GB of storage, and 4 GB of memory.

emcli create_database_size 
      -name=Small 
      -description="Small size database" 
      -attributes="cpu:4;storage:50;memory:4"      
      -source_type="weblogic_domain"