Java

Java is a set of computer software and specifications developed by Sun Microsystems, which was later acquired by the Oracle Corporation, that provides a system for developing application software and deploying it in a cross-platform computing environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones to enterprise servers and supercomputers.

123

Wednesday, October 30, 2013

Extend the System Tablespace on Oracle

There are two ways to extend the system table space.1. Set the current datafile to AUTOEXTEND2. Add a new datafile1. Set the Current datafile to AUTOEXTENDSELECT 'ALTER database datafile ''' || file_name || ''' ' || ' AUTOEXTEND ON maxsize 2097152000;'FROM dba_data_filesWHERE tablespace_name = 'SYSTEM';ALTER database datafile '/u01/app/oracle/oradata/XE/system.dbf'  AUTOEXTEND ON maxsize 2097152000;database datafile '/U01/APP/ORACLE/ORADATA/XE/SYSTEM.DBF' altered.2. Add a New datafilealter tablespace SYSTEM add datafile '/u01/app/oracle/oradata/XE/system2.dbf'...