Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How do I check if a tablespace was create with OPTIMAL keyword?
Tablespaces aren't created with Optimal, Rollback segments are. Run
this:
select NAME, XACTS, EXTENTS,
floor(RSSIZE/1024/1024)||'M' RSSIZE, floor(OPTSIZE/1024/1024)||'M' OPTSIZE, floor(HWMSIZE/1024/1024)||'M' HWMSIZE,
for lots of info on your rollback segments. If the OPTSIZE just says 'M' then Optimal is not set.
Brian Tkatch <SPAMBLOCK_brian.tkatch_at_shopsforme.com_SPAMBLOCK> wrote in message news:<390glug21fe985mr2k7ks5iqj6bkkocb3m_at_4ax.com>...
> How do I check if a tablespace was create with OPTIMAL keyword?
Received on Mon Aug 12 2002 - 17:02:22 CDT
![]() |
![]() |