|
yong posted:
Very sound suggestion, 白鹭! But you seem to be talking to someone that doesn't
listen; szbestway keeps complaining about running out of temp space.
Addition to what you say:
1. If he's afraid of running out of memory (2GB), he can monitor it from OS.
vmstat, top, sar, swap -l (or -s) etc. I'm only familiar with Solaris.
2. 256k*400 users is an overestimate. Sort memory is gradually allocated up to
sort_area_size, not allocated at one shot to that setting. It's absolutely
impossible for all users using sort_area_size to its limit at the same moment.
(Ref. Steve Adams' Nov 2000 Newsletter)
3. You can't change a dictionary-controlled TS to locally managed by ALTER
TABLESPACE. The only way is through
DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_TO_LOCAL and it doesn't support uniform
size, the preferred way to use LMT. So the only way left is drop and recreate
the TS.
4. Never use 4k as db_block_size. If you're not sure which one is the best, use
8k.
Yong Huang |
|