简体   繁体   中英

Linuc Oracle 11g enable partitioning using chopt

I ran the following query:

SELECT VALUE FROM v$option WHERE parameter = 'Partitioning'

And the result is:

false

On directory oracle/product/11.2.3/bin/, I'm trying to run this command to enable the partition option:

chopt enable partitioning

And the error occurs:

-bash: chopt: command not found

I'm not understanding why this command does not work, and on all the sites I've researched ask to do that way.

EDIT

You need oracle enterprise edition to enable partitioning option

chopt still needs the oracle environment set appropriately, eg

[oracle@db19 ~]$ chopt
bash: chopt: command not found

[oracle@db19 ~]$ . oraenv
ORACLE_SID = [db19] ? 
The Oracle base has been set to /u01/app/oracle

[oracle@db19 ~]$ chopt

usage:

chopt <enable|disable> <option>

options:
                 oaa = Oracle Advanced Analytics
                olap = Oracle OLAP
        partitioning = Oracle Partitioning
                 rat = Oracle Real Application Testing

e.g. chopt enable rat

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM