标签:http 数据 re c html div ar line
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# su oracle $cd $ORACLE_HOME $./sqlplus /nolog > connect / as sysdba; >show parameter sga; (查看内存占用情况) NAME TYPE VALUE ------------------------------------ ----------- ------------- lock_sga boolean FALSE pre_page_sga boolean FALSE sga_max_size big integer 800M sga_max_size big integer 800M > alter system set sga_max_size=2048m scope=spfile; > alter system set sga_target=1024m scope=spfile; |
1
|
alter system set memory_target=2048m scope=spfile; |
标签:http 数据 re c html div ar line
原文地址:http://www.cnblogs.com/zhuor/p/3867451.html