RE: Create Database ... really dumb question

2002-02-14 Thread Lord, David - CSG

April,

The 'size 1m reuse' should be outside the parentheses: -

logfile ('/admin04/cc1test/redo01.log',
'/admin05/cc1test/redo02.log',
'/admin06/cc1test/redo03.log') size 1m reuse

HTH
--
David Lord

> -Original Message-
> From: April Wells [mailto:[EMAIL PROTECTED]]
> Sent: 14 February 2002 16:33
> To: Multiple recipients of list ORACLE-L
> Subject: RE: Create Database ... really dumb question
> 
> 
> Not per the LESS than Friendly manuals...  
> 
> Admin guide, 2-12
> 
> -Original Message-
> Sent: Thursday, February 14, 2002 10:23 AM
> To: '[EMAIL PROTECTED]'
> Cc: April Wells
> 
> 
> Shouldn't your dbname be in double quotes
> 
> create database "testcc1"
> etc.
> etc...
> 
> 
> HTH
> 
> Lee
> 
> 
> -Original Message-
> Sent: 14 February 2002 14:29
> To: Multiple recipients of list ORACLE-L
> 
> 
> create database testcc1
> controlfile reuse
> logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
> '/admin05/cc1test/redo02.log' size 1m reuse,
> '/admin06/cc1test/redo03.log' size 1m reuse)
> datafile '/data10/cc1test_system.dbf' size 100m reuse
> /
> 
> 
> SQL> @afiedt.buf
> logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
>*
> ERROR at line 3:
> ORA-00907: missing right parenthesis


**
This message (including any attachments) is confidential and may be 
legally privileged.  If you are not the intended recipient, you should 
not disclose, copy or use any part of it - please delete all copies 
immediately and notify the Hays Group Email Helpdesk at
[EMAIL PROTECTED]
Any information, statements or opinions contained in this message
(including any attachments) are given by the author.  They are not 
given on behalf of Hays unless subsequently confirmed by an individual
other than the author who is duly authorised to represent Hays.
 
A member of the Hays plc group of companies.
Hays plc is registered in England and Wales number 2150950.
Registered Office Hays House Millmead Guildford Surrey GU2 4HJ.
**

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Lord, David - CSG
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Gogala, Mladen

Yes. You call your local oracle office and get yourself a support contract.
WARNING:  YOU MAY BE REQUIRED TO SIGN A CHECK IN THE PROCESS 

-Original Message-
Sent: Thursday, February 14, 2002 12:28 PM
To: Multiple recipients of list ORACLE-L


[SARKAR, Samir]
> Check Metalink Note : 56016.999

Is there any way to get access to metalink for those of us not fortunate
enough to have an Oracle support contract?  (Startup life is fun!)
-- 
James Manning <[EMAIL PROTECTED]>
GPG Key fingerprint = B913 2FBD 14A9 CE18 B2B7  9C8E A0BF B026 EEBB F6E4
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: James Manning
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Gogala, Mladen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Mercadante, Thomas F

April,

Sorry about that - I looked at the docs again, and I don't think you can do
it the way you had it originally.

I created my last db like so:

create database WTWU
maxinstances 1
maxlogfiles  32
maxdatafiles 99
noarchivelog
character set WE8ISO8859P1 
datafile
'L:\u0002\WTWU\system\system_01.dbf'  size   100M
logfile
group 1 ('N:\u0010\WTWU\log\redo01a.log',
   'J:\u0011\WTWU\log\redo01b.log') size 10M,
group 2 ('N:\u0010\WTWU\log\redo02a.log',
   'J:\u0011\WTWU\log\redo02b.log') size 10M,
group 3 ('N:\u0010\WTWU\log\redo03a.log',
   'J:\u0011\WTWU\log\redo03b.log') size 10M;

I think you need the "log file group 1" commands for multiple redo logs.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 9:29 AM
To: Multiple recipients of list ORACLE-L


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas


begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Mercadante, Thomas F
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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 w

RE: Create Database ... really dumb question

2002-02-14 Thread Babich , Sergey

Try this:


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log') size 1m reuse,
('/admin05/cc1test/redo02.log') size 1m reuse,
('/admin06/cc1test/redo03.log') size 1m reuse

datafile '/data10/cc1test_system.dbf' size 100m reuse
/

First thing it encounters is the right parenthesis missing, and it shows you
where.
Best,
Sergey


/-Original Message-
Sent: Thursday, February 14, 2002 9:29 AM
To: Multiple recipients of list ORACLE-L

create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas


begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Babich , Sergey
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread James Manning

[SARKAR, Samir]
> Check Metalink Note : 56016.999

Is there any way to get access to metalink for those of us not fortunate
enough to have an Oracle support contract?  (Startup life is fun!)
-- 
James Manning <[EMAIL PROTECTED]>
GPG Key fingerprint = B913 2FBD 14A9 CE18 B2B7  9C8E A0BF B026 EEBB F6E4
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: James Manning
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread April Wells

Not per the LESS than Friendly manuals...  

Admin guide, 2-12

-Original Message-
Sent: Thursday, February 14, 2002 10:23 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


Shouldn't your dbname be in double quotes

create database "testcc1"
etc.
etc...


HTH

Lee


-Original Message-
Sent: 14 February 2002 14:29
To: Multiple recipients of list ORACLE-L


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas




The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971U3L@:70@;6%Y(&%L
M2!P2!A;GEO
M;F4@;W1H97(@=&AA;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!);F,N(&AA2!R96%S;VYA8FQE('!R
M96-A=71I;VX@=&\@96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI
M6]U(&-A
Mhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EM

RE: Create Database ... really dumb question

2002-02-14 Thread April Wells

Sorry... really bad day... another script is eating huge amounts of paging
space on prod server... 

turns out that there was corrupt blocks on disk where control file was...
move control file... rerun script... runs fine.

Thank you!

8-)
April

-Original Message-
Sent: Thursday, February 14, 2002 10:29 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


erm... highly embarrassed, slinks off into the corner. That was a total
brain fart...

Here is one of mine that works OK

create database "BRIT"
maxdatafiles 5000
maxinstances 8
maxlogfiles  32
character set "US7ASCII"
national character set "US7ASCII"
datafile
'/oracle01/oradata/BRIT/system001.dbf'  size 100M
logfile
'/oracle03/oradata/BRIT/redoBRIT01.log' size 25M,
'/oracle03/oradata/BRIT/redoBRIT02.log' size 25M,
'/oracle03/oradata/BRIT/redoBRIT03.log' size 25M;

HTH

Lee


-Original Message-
Sent: 14 February 2002 16:23
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'


Shouldn't your dbname be in double quotes

create database "testcc1"
etc.
etc...


HTH

Lee


-Original Message-
Sent: 14 February 2002 14:29
To: Multiple recipients of list ORACLE-L


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas




The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971U3L@:70@;6%Y(&%L
M2!P2!A;GEO
M;F4@;W1H97(@=&AA;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!);F,N(&AA2!R96%S;VYA8FQE('!R
M96-A=71I;VX@=&\@96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI
M6]U(&-A
Mhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- P

RE: Create Database ... really dumb question

2002-02-14 Thread April Wells

Rick

It was similar to two manuals, a book, and metalink... thus the TREMENDOUS
frustration...

I moved the first control file... and it worked... corrupt block... I AM NOT
AN idiot!!!

Thank you!
April

-Original Message-
Sent: Thursday, February 14, 2002 9:21 AM
To: [EMAIL PROTECTED]; April Wells



April,

Your script sure looks good, you already know that.  The only thing I can
suggest is to specify
character set.  Just guessing

Rick

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse
character set ;




 

April Wells

   
e.com>   cc:

        Sent by:         Subject:     Create Database ...
really dumb question 
root@fatcity.

com

 

 

02/14/2002

08:23 AM

Please

respond to

ORACLE-L

 

 






Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with
this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

(See attached file: InterScan_Disclaimer.txt)
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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).



begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Blake Wilson

I had a similar error to this. What my error turned out to be was the
rollback_segments parameter was not commented out in the initdb.ora
parameter file. The private rollback segments had not been created yet
and oracle could not find them to start the database. I commented out
this parameter until I had created the rollback segments and all was
fine.

Blake

April Wells wrote:
> 
> Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
> life of me see it.  I know there is something REALLY simple wrong with this,
> but I can't find it... ANYWHERE... and the error manual is ever so helpful
> on the errors...  >:\
> 
> THESE are my errors..
> 
> create database testcc1
> *
> ERROR at line 1:
> ORA-01501: CREATE DATABASE failed
> ORA-02084: database name is missing a component
> 
> THIS is my script...
> 
> create database testcc1
> controlfile reuse
> logfile '/admin04/cc1test/redo01.log' size 1m reuse,
> '/admin05/cc1test/redo02.log' size 1m reuse,
> '/admin06/cc1test/redo03.log' size 1m reuse
> datafile '/data10/cc1test_system.dbf' size 100m reuse
> 
> WHAT is wrong with it.  I am really not this inept... really... but I can't
> see what is wrong with the database name.
> 
> Thanks in advance for there not being GAILS of laughter... but tiredness is
> getting to me.
> 
> April Wells
> Corporate Systems
> Amarillo Texas
> 
> begin 666 InterScan_Disclaimer.txt
> M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I M=')I8W1L>2!C;VYF:61E;G1I86P@86YD(&9O M(&]F('1H92!A9&1R97-S964@;VYL>3L@:70@;6%Y(&%L M>2!P M:7,@:&5R96)Y(&=I=F5N('1H870@86YY(&1I M;W!Y:6YG(&]F('1H92!I;F9O2!A;GEO;F4@;W1H97(@=&AA
> M;B!T:&4@:6YT96YD960@ M>2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@ M86=E(&EN(&5R M871E;'D@8GD@7-T96US+"!)
> M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
> M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI M(&)E96X@ M:71Y(&9O M;V9T=V%R92!V:7)U6]U(&-A M(&]W;B!V:7)U %;G0N#0H
> end
> 
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: April Wells
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California-- Public Internet access / Mailing Lists
> 
> 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).

begin:vcard 
n:Wilson;Blake
tel;fax:(519) 661-3486
tel;work:(519) 661-2111 ext 85549
x-mozilla-html:FALSE
adr:;;
version:2.1
email;internet:[EMAIL PROTECTED]
fn:Blake Wilson
end:vcard



RE: Create Database ... really dumb question

2002-02-14 Thread Kevin Bass

I would think that the database name of testccl would need to be in double
quotes.

Kevin Bass
Senior Manager, I.D.E.
Americal Corporation
Phone: (252) 762-2144
E-mail: [EMAIL PROTECTED]


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Kevin Bass
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Robertson Lee - lerobe

Shouldn't your dbname be in double quotes

create database "testcc1"
etc.
etc...


HTH

Lee


-Original Message-
Sent: 14 February 2002 14:29
To: Multiple recipients of list ORACLE-L


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas




The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Robertson Lee - lerobe

erm... highly embarrassed, slinks off into the corner. That was a total
brain fart...

Here is one of mine that works OK

create database "BRIT"
maxdatafiles 5000
maxinstances 8
maxlogfiles  32
character set "US7ASCII"
national character set "US7ASCII"
datafile
'/oracle01/oradata/BRIT/system001.dbf'  size 100M
logfile
'/oracle03/oradata/BRIT/redoBRIT01.log' size 25M,
'/oracle03/oradata/BRIT/redoBRIT02.log' size 25M,
'/oracle03/oradata/BRIT/redoBRIT03.log' size 25M;

HTH

Lee


-Original Message-
Sent: 14 February 2002 16:23
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'


Shouldn't your dbname be in double quotes

create database "testcc1"
etc.
etc...


HTH

Lee


-Original Message-
Sent: 14 February 2002 14:29
To: Multiple recipients of list ORACLE-L


create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas




The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City N

RE: Create Database ... really dumb question

2002-02-14 Thread April Wells

Okay... so it wasn't such a dumb question... there is bad block on the disk
where the contolfile is... changing where I put it fixed the problem...

Thank you all.

-Original Message-
Sent: Thursday, February 14, 2002 7:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas


begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Rick_Cale


April,

Your script sure looks good, you already know that.  The only thing I can
suggest is to specify
character set.  Just guessing

Rick

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse
character set ;




   

April Wells

   
e.com>   cc:   

        Sent by:         Subject:     Create Database ... really dumb 
question 
root@fatcity.  

com

   

   

02/14/2002 

08:23 AM   

Please 

respond to 

ORACLE-L   

   

   






Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with
this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

(See attached file: InterScan_Disclaimer.txt)
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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).





InterScan_Disclaimer.txt
Description: Binary data


Re: Create Database ... really dumb question

2002-02-14 Thread Ruth Gramolini

The db_domain=world should be in the init.ora.   $0.02 more,Ruth
- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, February 14, 2002 8:53 AM


> db_domain = .world same error
> db_domain = ".world" same error
> db_domain = world same error...
>
> Oracle Version 8.1.7.0
>
> -Original Message-
> Sent: Thursday, February 14, 2002 7:45 AM
> To: '[EMAIL PROTECTED]'
> Cc: April Wells
>
>
> Check Metalink Note : 56016.999
>
> Samir
>
> Samir Sarkar
> Oracle DBA - Lennon Team
> SchlumbergerSema
> Email :  [EMAIL PROTECTED]
> [EMAIL PROTECTED]
> Phone : +44 (0) 115 - 957 6217
> EPABX : +44 (0) 115 - 957 6418 Ext. 76217
> Fax : +44 (0) 115 - 957 6018
>
>
> -Original Message-
> Sent: 14 February 2002 13:23
> To: Multiple recipients of list ORACLE-L
>
>
>
> Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
> life of me see it.  I know there is something REALLY simple wrong with
this,
> but I can't find it... ANYWHERE... and the error manual is ever so helpful
> on the errors...  >:\
>
> THESE are my errors..
>
> create database testcc1
> *
> ERROR at line 1:
> ORA-01501: CREATE DATABASE failed
> ORA-02084: database name is missing a component
>
> THIS is my script...
>
> create database testcc1
> controlfile reuse
> logfile '/admin04/cc1test/redo01.log' size 1m reuse,
> '/admin05/cc1test/redo02.log' size 1m reuse,
> '/admin06/cc1test/redo03.log' size 1m reuse
> datafile '/data10/cc1test_system.dbf' size 100m reuse
>
> WHAT is wrong with it.  I am really not this inept... really... but I
can't
> see what is wrong with the database name.
>
> Thanks in advance for there not being GAILS of laughter... but tiredness
is
> getting to me.
>
> April Wells
> Corporate Systems
> Amarillo Texas
>
>
>
>
___
> This email is confidential and intended solely for the use of the
> individual to whom it is addressed. Any views or opinions presented are
> solely those of the author and do not necessarily represent those of
> SchlumbergerSema.
> If you are not the intended recipient, be advised that you have received
> this
> email in error and that any use, dissemination, forwarding, printing, or
> copying of this email is strictly prohibited.
>
> If you have received this email in error please notify the
SchlumbergerSema
> Helpdesk by telephone on +44 (0) 121 627 5600.
>
___
>
>
>






>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: April Wells
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California-- Public Internet access / Mailing Lists
> 
> 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.com
> --
> Author: April Wells
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California-- Public Internet access / Mailing Lists
> 
> 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.com
-- 
Author: Ruth Gramolini
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread April Wells

create database testcc1
controlfile reuse
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse)
datafile '/data10/cc1test_system.dbf' size 100m reuse
/


SQL> @afiedt.buf
logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
   *
ERROR at line 3:
ORA-00907: missing right parenthesis


SQL> 

-Original Message-
Sent: Thursday, February 14, 2002 8:21 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas


begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Ruth Gramolini

Have you set the ORACLE_SID before running the script?  Just a thot... Ruth
- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, February 14, 2002 8:23 AM


>
> Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
> life of me see it.  I know there is something REALLY simple wrong with
this,
> but I can't find it... ANYWHERE... and the error manual is ever so helpful
> on the errors...  >:\
>
> THESE are my errors..
>
> create database testcc1
> *
> ERROR at line 1:
> ORA-01501: CREATE DATABASE failed
> ORA-02084: database name is missing a component
>
> THIS is my script...
>
> create database testcc1
> controlfile reuse
> logfile '/admin04/cc1test/redo01.log' size 1m reuse,
> '/admin05/cc1test/redo02.log' size 1m reuse,
> '/admin06/cc1test/redo03.log' size 1m reuse
> datafile '/data10/cc1test_system.dbf' size 100m reuse
>
> WHAT is wrong with it.  I am really not this inept... really... but I
can't
> see what is wrong with the database name.
>
> Thanks in advance for there not being GAILS of laughter... but tiredness
is
> getting to me.
>
> April Wells
> Corporate Systems
> Amarillo Texas
>
>






>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: April Wells
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California-- Public Internet access / Mailing Lists
> 
> 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.com
-- 
Author: Ruth Gramolini
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Mercadante, Thomas F

April,

I think you need parens around the logfiles like:

logfile ('/admin04/cc1test/redo01.log' size 1m reuse,
 '/admin05/cc1test/redo02.log' size 1m reuse,
 '/admin06/cc1test/redo03.log' size 1m reuse)

Your syntax is correct for one log file.

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, February 14, 2002 8:23 AM
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: Mercadante, Thomas F
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread SARKAR, Samir

Check Metalink Note : 56016.999

Samir

Samir Sarkar
Oracle DBA - Lennon Team
SchlumbergerSema
Email :  [EMAIL PROTECTED]
[EMAIL PROTECTED] 
Phone : +44 (0) 115 - 957 6217
EPABX : +44 (0) 115 - 957 6418 Ext. 76217
Fax : +44 (0) 115 - 957 6018


-Original Message-
Sent: 14 February 2002 13:23
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas



___
This email is confidential and intended solely for the use of the 
individual to whom it is addressed. Any views or opinions presented are 
solely those of the author and do not necessarily represent those of 
SchlumbergerSema. 
If you are not the intended recipient, be advised that you have received this
email in error and that any use, dissemination, forwarding, printing, or 
copying of this email is strictly prohibited.

If you have received this email in error please notify the SchlumbergerSema Helpdesk 
by telephone on +44 (0) 121 627 5600.
___

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: SARKAR, Samir
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread April Wells

db_domain = .world  same error
db_domain = ".world"same error
db_domain = world   same error... 

Oracle Version 8.1.7.0

-Original Message-
Sent: Thursday, February 14, 2002 7:45 AM
To: '[EMAIL PROTECTED]'
Cc: April Wells


Check Metalink Note : 56016.999

Samir

Samir Sarkar
Oracle DBA - Lennon Team
SchlumbergerSema
Email :  [EMAIL PROTECTED]
[EMAIL PROTECTED] 
Phone : +44 (0) 115 - 957 6217
EPABX : +44 (0) 115 - 957 6418 Ext. 76217
Fax : +44 (0) 115 - 957 6018


-Original Message-
Sent: 14 February 2002 13:23
To: Multiple recipients of list ORACLE-L



Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas



___
This email is confidential and intended solely for the use of the 
individual to whom it is addressed. Any views or opinions presented are 
solely those of the author and do not necessarily represent those of 
SchlumbergerSema. 
If you are not the intended recipient, be advised that you have received
this
email in error and that any use, dissemination, forwarding, printing, or 
copying of this email is strictly prohibited.

If you have received this email in error please notify the SchlumbergerSema
Helpdesk by telephone on +44 (0) 121 627 5600.
___


begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-A6]N92!O=&AE
M2!B>2!R971Uhttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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: Create Database ... really dumb question

2002-02-14 Thread Ron Rogers

April,
could quite possible be that you are missing the GROUP # clause for the
logfiles, You list 3 files but not define a group for each of them.
ROR mª¿ªm

>>> [EMAIL PROTECTED] 02/14/02 08:23AM >>>

Okay... I am at a loss.  There is SOMETHING wrong, and I can not for
the
life of me see it.  I know there is something REALLY simple wrong with
this,
but I can't find it... ANYWHERE... and the error manual is ever so
helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cReceived: from CONNECT-MTA by galotterc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I
can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but
tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com 
-- 
Author: April Wells
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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.com
--
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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).



Create Database ... really dumb question

2002-02-14 Thread April Wells


Okay... I am at a loss.  There is SOMETHING wrong, and I can not for the
life of me see it.  I know there is something REALLY simple wrong with this,
but I can't find it... ANYWHERE... and the error manual is ever so helpful
on the errors...  >:\

THESE are my errors..

create database testcc1
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-02084: database name is missing a component

THIS is my script...

create database testcc1
controlfile reuse
logfile '/admin04/cc1test/redo01.log' size 1m reuse,
'/admin05/cc1test/redo02.log' size 1m reuse,
'/admin06/cc1test/redo03.log' size 1m reuse
datafile '/data10/cc1test_system.dbf' size 100m reuse

WHAT is wrong with it.  I am really not this inept... really... but I can't
see what is wrong with the database name.

Thanks in advance for there not being GAILS of laughter... but tiredness is
getting to me.

April Wells
Corporate Systems
Amarillo Texas

begin 666 InterScan_Disclaimer.txt
M5&AE(&EN9F]R;6%T:6]N(&-O;G1A:6YE9"!I;B!T:&ES(&4M;6%I;"!I3L@:70@;6%Y(&%L2!P2!A;GEO;F4@;W1H97(@=&AA
M;B!T:&4@:6YT96YD960@2!B92!I;&QE9V%L+B @268@>6]U(&AA=F4@7-T96US+"!)
M;F,N(&AA2!R96%S;VYA8FQE('!R96-A=71I;VX@=&\@
M96YS=7)E('1H870@86YY(&%T=&%C:&UE;G0@=&\@=&AI6]U(&-Ahttp://www.orafaq.com
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

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).