Wrong post ?
What is your db_block_size by:
SQL>SELECT value FROM v$parameter WHERE name='db_block_size';
Look at the chart below (the chart contains common but not all extent sizes). Compare the max_extents value from the object to the value from the chart for the db_block_size.
db_block_size Max Extents
-------------- -----------
2K 121
4K 249
8K 505
16K 1017
32K 2041
You need to recreate with larger initial, next or pctincrease parameters or value 500 is too high
Main Topics
Browse All Topics





by: mattisflonesPosted on 2004-02-26 at 02:05:43ID: 10458696
Here, code and everything:
e}
e}
com/script s/javascri pts/ disabl ebut.htm
<SCRIPT LANGUAGE="JavaScript">
function Disab (val) {
if(val=="1")
{form1.Submit.disabled=tru
if(val=="2")
{form1.Button.disabled=tru
}
</SCRIPT>
</HEAD>
<BODY TEXT="000000" BGCOLOR="FFFFFF">
<FORM name="form1" method="post" action=""
enctype="text/plain">
<input type="submit" name="Submit" value="Submit" onClick="Disab (1)">
<input type="button" name="Button" value="Button" onClick="Disab (2)">
</FORM>
From: http://www.houseofscripts.
Mattis