sql - Unexpected output from using "create database" -


my current task create .bat file can manually create oracle database, database configuration assistant no longer necessary.

i following this guide.

i stuck @ "creating database". upon typing:

sql> create database ora10 

i not expected output described on guide:

sql>create database ora10 logfile   group 1 ('d:\oracle\databases\ora10\redo1.log') size 10m,           group 2 ('d:\oracle\databases\ora10\redo2.log') size 10m,           group 3 ('d:\oracle\databases\ora10\redo3.log') size 10m character set          we8iso8859p1 national character set utf8 datafile 'd:\oracle\databases\ora10\system.dbf'            size 50m           autoextend on            next 10m maxsize unlimited           extent management local sysaux datafile 'd:\oracle\databases\ora10\sysaux.dbf'            size 10m           autoextend on            next 10m            maxsize unlimited undo tablespace undo           datafile 'd:\oracle\databases\ora10\undo.dbf'           size 10m default temporary tablespace temp           tempfile 'd:\oracle\databases\ora10\temp.dbf'           size 10m; 

instead bunch of numbered input requests:

sql> create database ora10   2 ,   3   4 doesn't   5 seem   6   7 stop   8 asking   9   10 inputs 

other sources/guides i've googled similar aforementioned guide. far know (i might not using right keywords), output not supposed happen. unable identify going on here.

please note don't know sql or using command prompt. background limited classroom html/css/java/python. have been dared complete number of programming related tasks within period of time (a week) without instruction or preparation - though allowed use internet assistance. far until now.

any assistance appreciated, thank in advance.

all lines in listing create database ora10 size 10m; including last semicolon not output, instead part of one single statement. semicolon terminates , tells command interpreter execute you've written. therefore continuing ask input until tell you're done (with semicolon).

if want create database without specifying other options, can add semicolon. following create database name "ora10" in default configuration:

create database ora10; 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

css - Firefox for ubuntu renders wrong colors -