Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
7 views2 pages

Modificar DB File

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Modificar DB File

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

SQL*Plus: Release 12.2.0.1.

0 Production on Sat Mar 12 13:55:21 2022

Copyright (c) 1982, 2016, Oracle. All rights reserved.

Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> show parameter db_files

NAME TYPE
------------------------------------ --------------------------------
VALUE
------------------------------
db_files integer
600
SQL> alter system set db_files=800 scope=spfile;

System altered.

SQL> shutdown immediate;


Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> exit
Disconnected from Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit
Production
[oracle@ip-10-142-102-7 ~]$ sysdba

SQL*Plus: Release 12.2.0.1.0 Production on Sat Mar 12 13:59:57 2022

Copyright (c) 1982, 2016, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup;
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.

Total System Global Area 1.2885E+11 bytes


Fixed Size 29873376 bytes
Variable Size 5.6908E+10 bytes
Database Buffers 7.1672E+10 bytes
Redo Buffers 238559232 bytes
Database mounted.
Database opened.
SQL> show parameter db_files

NAME TYPE
------------------------------------ --------------------------------
VALUE
------------------------------
db_files integer
800
SQL> select open_mode from v$instance;
select open_mode from v$instance
*
ERROR at line 1:
ORA-00904: "OPEN_MODE": invalid identifier
SQL> ^C

SQL> select INSTANCE_NAME, STATUS from v$instance;

INSTANCE_NAME STATUS
---------------- ------------
PRDAX OPEN

SQL> exit
Disconnected from Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit
Production
[oracle@ip-10-142-102-7 ~]$ sysdba;

SQL*Plus: Release 12.2.0.1.0 Production on Sat Mar 12 14:03:51 2022

Copyright (c) 1982, 2016, Oracle. All rights reserved.

Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> select open_mode from v$database;

OPEN_MODE
--------------------
READ ONLY WITH APPLY

You might also like