Sunteți pe pagina 1din 1

First check if the database is using Spfile or pfile And check for parameter sga Example : ======== SQL>

show parameter sga NAME -----------------------------------lock_sga pre_page_sga sga_max_size sga_target SQL> show parameter sort NAME -----------------------------------nls_sort sort_area_retained_size sort_area_size TYPE ----------string integer integer VALUE -----------------------------500000 500000 TYPE ----------boolean boolean big integer big integer VALUE -----FALSE FALSE 24G 0

If the database is running on spfile then changes the values dynamically .. alter system set sga_target=' value' scope=both ; alter system set sort_area_siz e='value ' scope =both; if the database is running on pfile make the changes in initparameter file and bounce the database .. third one, add datafiles to the lob_tablespaces, check for previous datafiles sizes and add ed same size to the next datafiles which you will create ..

SELECT DECODE(value, NULL, 'PFILE', 'SPFILE') "Pfile or SPfile" FROM sys.v_$para meter WHERE name = 'spfile';

S-ar putea să vă placă și