|
|
Re: Is tablespace size required to increase [message #532025 is a reply to message #532022] |
Sat, 19 November 2011 11:28 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
You seem to be using the terms TABLESPACE and DATAFILE interchangeably. They are not the same thing. If you go back to your post, and consider for each occurance of these words which one you actially mean, I think the answer will become obvious.
|
|
|
|
|
|
|
|
Re: Is tablespace size required to increase [message #532034 is a reply to message #532029] |
Sat, 19 November 2011 12:47 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
OK, you do seem to have worked out the difference between tablespaces and datafiles. But now, think about what you are trying to achieve. You seem to think that "only" 20% unused space is too little. If so, you need to increase the size of one or more datafiles. Do you think it matters which datafile(s) you resize?
|
|
|
|
|
|
|
|
|
|
Re: Is tablespace size required to increase [message #532187 is a reply to message #532183] |
Mon, 21 November 2011 04:34 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
In the original post, the file MAXSIZE is given as about 32G. If OP is using 8K blocks, 32G is the maximum file size possible. So the only option is to add more datafiles.
With regard to performance, when using autoextend it is vital to set the NEXT attribute to a sensible figure. I usually set it to 1G. The default NEXT is tiny, and your database will be crippled by zillions of resizing operations.
|
|
|
|
Re: Is tablespace size required to increase [message #532299 is a reply to message #532298] |
Mon, 21 November 2011 19:13 |
andy huang
Messages: 498 Registered: July 2011
|
Senior Member |
|
|
Thanks Michel,
Can you explain the flowing your answer?
Quote:it will case performance issue when access the datafile?
No.
If the autoextend is set to Y and MAXVAULE is set to 32G,there is a big size datafile,and the size of the datafile is 32G;if the autoextend is set to N,and the big datafile break into 4 datafiles,each size of the smaller datafile is 8G,I think it will decrease I/O when access the 4 smaller datafiles.
|
|
|
|
|
|
|
|
|
|