Re: [Q] create tablespace with different block size error???

2004-01-24 Thread Wolfgang Breitling
What amateur of Oracle support engineer are you working with?
Mladen is right. Your syntax is wrong. Read the documentation (and suggest 
to the engineer he do the same):

SQL> create tablespace "INDEX1" logging datafile 
'/u01/ORACLE/ora92/INDEX11.dbf' size 5m
  2blocksize 16384
  3autoextend on
  4next 1280k
  5maxsize unlimited
  6extent management local
  7segment space management auto
  8uniform size 128k
  9  /
  autoextend on
  *
ERROR at line 3:
ORA-02180: invalid option for CREATE TABLESPACE

SQL>
SQL> create tablespace "INDEX1" logging datafile 
'/u01/ORACLE/ora92/INDEX11.dbf' size 5m
  2autoextend on
  3next 1280k
  4maxsize unlimited
  5blocksize 16384
  6extent management local
  7segment space management auto
  8uniform size 128k
  9  /

Tablespace created.

SQL>
At 04:49 PM 1/24/2004, you wrote:
It is NOT true.  I did put db_16k_cache_size on
init.ora file.  I still work with ORACLE support
engineer tried to find problem.
--- Mladen Gogala <[EMAIL PROTECTED]> wrote:
> On 01/23/2004 12:19:26 PM, Kirtikumar Deshpande
> wrote:
> > Because, you left db_16k_cache_size parameter to
> the default value of
> > 0 (zero).
> >
> > - Kirti
>
> He probably has left db_16k_cache_size parameter but
> the problem
> described here is with syntax, not the cache size.
> Parser stops
> looking or file attributes as soon as it encounters
> the first attribute
> that isn't a file attribute, like, for instance,
> block size.
> If he rearranges the statement, he'll get the right
> error.
> --
Wolfgang Breitling
Oracle7, 8, 8i, 9i OCP DBA
Centrex Consulting Corporation
http://www.centrexcc.com 

--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Wolfgang Breitling
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-24 Thread dba1 mcc
It is NOT true.  I did put db_16k_cache_size on
init.ora file.  I still work with ORACLE support
engineer tried to find problem.  

--- Mladen Gogala <[EMAIL PROTECTED]> wrote:
> On 01/23/2004 12:19:26 PM, Kirtikumar Deshpande
> wrote:
> > Because, you left db_16k_cache_size parameter to
> the default value of
> > 0 (zero).
> > 
> > - Kirti
> 
> He probably has left db_16k_cache_size parameter but
> the problem
> described here is with syntax, not the cache size.
> Parser stops
> looking or file attributes as soon as it encounters
> the first attribute
> that isn't a file attribute, like, for instance,
> block size.
> If he rearranges the statement, he'll get the right
> error.
> -- 
> Please see the official ORACLE-L FAQ:
> http://www.orafaq.net
> -- 
> Author: Mladen Gogala
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051
> http://www.fatcity.com
> San Diego, California-- Mailing list and web
> hosting services
>
-
> To REMOVE yourself from this mailing list, send an
> E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of
> 'ListGuru') and in
> the message BODY, include a line containing: UNSUB
> ORACLE-L
> (or the name of mailing list you want to be removed
> from).  You may
> also send the HELP command for other information
> (like subscribing).


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: dba1 mcc
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-23 Thread Mladen Gogala
Comment in-line

On 01/23/2004 11:29:25 AM, dba1 mcc wrote:
I tried to create tablespace with 16K (default on my
init.ora blocksize =8k). I have error happen.  The
database version is 9.2.0.4.
 SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  blocksize 16384
  3  autoextend on
  4  next 1280k
  5  maxsize unlimited
  6  extent management local
  7  segment space management auto
  8  uniform size 128k;
autoextend on
*
ERROR at line 3:
if I take out "blocksize 16384", then it work fine.

SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  reuse autoextend on
  3  next 1280k
  4  maxsize unlimited
  5  extent management local
  6  segment space management auto
  7  uniform size 128k;
Tablespace created.

Does anyone know why??

Because "autoextend" is a datafile attribute, not a tablespace one.
When you enter a tablespace attribute, like blocksize, oracle parser
thinks that you're done describing your datafiles so it finds the
"autoextend" clause out of context.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-23 Thread Mladen Gogala
On 01/23/2004 12:19:26 PM, Kirtikumar Deshpande wrote:
Because, you left db_16k_cache_size parameter to the default value of
0 (zero).
- Kirti
He probably has left db_16k_cache_size parameter but the problem
described here is with syntax, not the cache size. Parser stops
looking or file attributes as soon as it encounters the first attribute
that isn't a file attribute, like, for instance, block size.
If he rearranges the statement, he'll get the right error.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-23 Thread Krishna Kakatur


You may want to define DB_16K_CACHE_SIZE in init.ora, or
use ALTER SYSTEM to set this value.
HTH,
Krishna
~~
NOTICE:  This email message is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information.  Any unauthorized review, use, disclosure or
distribution is prohibited.  If you are not the intended
recipient, please contact the sender by reply email and destroy
all copies of the original message.
~~


dba1 mcc wrote:
I tried to create tablespace with 16K (default on my
init.ora blocksize =8k). I have error happen.  The
database version is 9.2.0.4.
 SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  blocksize 16384
  3  autoextend on
  4  next 1280k
  5  maxsize unlimited
  6  extent management local
  7  segment space management auto
  8  uniform size 128k;
autoextend on
*
ERROR at line 3:
if I take out "blocksize 16384", then it work fine.

SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  reuse autoextend on
  3  next 1280k
  4  maxsize unlimited
  5  extent management local
  6  segment space management auto
  7  uniform size 128k;
Tablespace created.

Does anyone know why??

--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Krishna Kakatur
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-23 Thread Kirtikumar Deshpande
Because, you left db_16k_cache_size parameter to the default value of 0 (zero). 

- Kirti 


--- dba1 mcc <[EMAIL PROTECTED]> wrote:
> I tried to create tablespace with 16K (default on my
> init.ora blocksize =8k). I have error happen.  The
> database version is 9.2.0.4.
> 
>  SQL> create tablespace "index1" logging datafile
> '/u0/oradata/leg92/index1.dbf' size 20m
>   2  blocksize 16384
>   3  autoextend on
>   4  next 1280k
>   5  maxsize unlimited
>   6  extent management local
>   7  segment space management auto
>   8  uniform size 128k;
> autoextend on
> *
> ERROR at line 3:
> 
> 
> if I take out "blocksize 16384", then it work fine.
> 
> SQL> create tablespace "index1" logging datafile
> '/u0/oradata/leg92/index1.dbf' size 20m
>   2  reuse autoextend on
>   3  next 1280k
>   4  maxsize unlimited
>   5  extent management local
>   6  segment space management auto
>   7  uniform size 128k;
> 
> Tablespace created.
> 
> Does anyone know why??
> 


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kirtikumar Deshpande
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: [Q] create tablespace with different block size error???

2004-01-23 Thread Hemant K Chitale
And ... what is the error number that you get ?

Note :  If you are creating a tablespace with the non-standard blocksize,
you must have db_cache_Xk_size  configured and running for your instance
before you create the tablespace.
Hemant
At 08:29 AM 23-01-04 -0800, you wrote:
I tried to create tablespace with 16K (default on my
init.ora blocksize =8k). I have error happen.  The
database version is 9.2.0.4.
 SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  blocksize 16384
  3  autoextend on
  4  next 1280k
  5  maxsize unlimited
  6  extent management local
  7  segment space management auto
  8  uniform size 128k;
autoextend on
*
ERROR at line 3:
if I take out "blocksize 16384", then it work fine.

SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  reuse autoextend on
  3  next 1280k
  4  maxsize unlimited
  5  extent management local
  6  segment space management auto
  7  uniform size 128k;
Tablespace created.

Does anyone know why??

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: dba1 mcc
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Hemant K Chitale
Oracle 9i Database Administrator Certified Professional
http://hkchital.tripod.com  {last updated 22-Jan-04}
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Hemant K Chitale
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: [Q] create tablespace with different block size error???

2004-01-23 Thread DENNIS WILLIAMS
dba1
   I think you must first create a buffer cache for this block size.

http://www.oracle-base.com/Articles/9i/MultipleBlockSizes.php

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, January 23, 2004 10:29 AM
To: Multiple recipients of list ORACLE-L


I tried to create tablespace with 16K (default on my
init.ora blocksize =8k). I have error happen.  The
database version is 9.2.0.4.

 SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  blocksize 16384
  3  autoextend on
  4  next 1280k
  5  maxsize unlimited
  6  extent management local
  7  segment space management auto
  8  uniform size 128k;
autoextend on
*
ERROR at line 3:


if I take out "blocksize 16384", then it work fine.

SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  reuse autoextend on
  3  next 1280k
  4  maxsize unlimited
  5  extent management local
  6  segment space management auto
  7  uniform size 128k;

Tablespace created.

Does anyone know why??


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: dba1 mcc
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


[Q] create tablespace with different block size error???

2004-01-23 Thread dba1 mcc
I tried to create tablespace with 16K (default on my
init.ora blocksize =8k). I have error happen.  The
database version is 9.2.0.4.

 SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  blocksize 16384
  3  autoextend on
  4  next 1280k
  5  maxsize unlimited
  6  extent management local
  7  segment space management auto
  8  uniform size 128k;
autoextend on
*
ERROR at line 3:


if I take out "blocksize 16384", then it work fine.

SQL> create tablespace "index1" logging datafile
'/u0/oradata/leg92/index1.dbf' size 20m
  2  reuse autoextend on
  3  next 1280k
  4  maxsize unlimited
  5  extent management local
  6  segment space management auto
  7  uniform size 128k;

Tablespace created.

Does anyone know why??


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: dba1 mcc
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).