Skip to Main Content

Infrastructure Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

CREATE DATABASE error on oracle-express

456214Dec 22 2005 — edited Dec 22 2005
Hi,

I use SQLPLUS to try to "CREATE DATABASE" with the commands below. Any
idea about the error?

SQL> CONNECT / AS sysdba
Connected.
SQL> shutdown
ORA-01507: database not mounted

ORACLE instance shut down.
SQL> STARTUP NOMOUNT
ORACLE instance started.

Total System Global Area 146800640 bytes
Fixed Size 1218208 bytes
Variable Size 62916960 bytes
Database Buffers 79691776 bytes
Redo Buffers 2973696 bytes
SQL> CREATE DATABASE test;
CREATE DATABASE test
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-01504: database name 'TEST' does not match parameter db_name 'XE'


TIA
Roberto Colmegna

Comments

VenkatCH

Receive : Accepts message data from a service partner. Optionally begins a process by creating an instance of the process.

Reply : Sends a response to a partner identified in a matching Receive activity

Callback : Asynchronous BPEL Process completes its operations and callback the Client with the response message.

Regards,

Venkat Ch

PuneetRekhade

If you want to receive a response from a service, you should know the type of service - sync or async. "Reply(Sync)" and "Callback(ASync)" are used to send back the response to the caller. Hence, you'll use "Invoke( If external service is Sync)" or "Receive (If external service is ASync)" to get the response.

You can read about activities in deep and experiment via practical examples to make things clear.

VenkatCH

Yeah, Underlining the same

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 19 2006
Added on Dec 22 2005
3 comments
22,805 views