Tablespace erstellen (UNIX)
Neuen Tablespace erstellen Tablespace einer Größe von 10MB. CREATE TABLESPACE sysaux DATAFILE ‚oracle/SID/sapdata1/sysaux_1/sysaux.data1‘ SIZE 10M; Tablespace einer Größe von 10MB auf...
Tablespace erw. (Win)
Tablespace unter Windows erweitern: -sql alter database datafile ‚<PATH>“ resize <SIZE>M; -Bsp.: alter database datafile ‚Z:\oracle\SID\sapdata5\sr2usr_2\SR2USR.DATA2‘ resize 2000M; Neues Datafile...
Oracle AUTOEXTEND OFF
alter database datafile ‚/oracle/SID/sapdata6/SID700_5/SID700.data5‘ AUTOEXTEND OFF;
Oracle tempfile anpassen
– sqlplus ALTER DATABASE TEMPFILE ‚/oracle/DV1/sapdata3/temp_1/temp.data1‘ OFFLINE; – unix dd if=/oracle/DV1/sapdata3/temp_1/temp.data1 of=/usr/sap/export/SAPTMP/temp.data1.new bs=64k check: du -k /oracle/DV1/sapdata3/temp_1/temp.data1 du -k /usr/sap/export/SAPTMP/temp.data1.new mv...