Manual Create Database

Hi,
I have a vm centos 5 on my pc. I'm currently testing on creating a database by just using the plain "create database" command base on Tom's book. But when I try to execute it I get a ORA-01092. Here's what the alert log contains:
Errors in file /u01/app/oracle/product/10.2.0/db10g/rdbms/log/ora10g_ora_6389.trc:
ORA-01501: CREATE DATABASE failed
ORA-01519: error while processing file '?/rdbms/admin/sql.bsq' near line 1740
ORA-00604: error occurred at recursive SQL level 1
ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","insert into ts$ (ts#,nThe trace file contains:
===============================
End 4031 Diagnostic Information
===============================
Warning: out of shared memory loading library cache object [handle=253c8238]
insert into ts$ (ts#,name,online$,contents$,undofile#,undoblock#,blocksize, dflmaxext,dflinit,df
lincr,dflextpct,dflminext,dflminlen,inc#,owner#,scnwrp,scnbas,pitrscnwrp,pitrscnbas,dflogging, a
ffstrength,bitmapped,plugged,directallowed,flags,spare1,spare2) values (:1,:2,:3,:4,:5,:6,:7,:8,
:9,:10,:11,:12,:13,1,:14,:15,:16,:17,:18,:19,0,:20,:21,1,:22,:23,:24)
ORA-00604: error occurred at recursive SQL level 1
ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","insert into ts$ (ts#,n
ame,on...","Typecheck","seg:kggfaAllocSeg")
Offending statement at line 1740
create table bootstrap$
( line#         number not null,                       /* statement order id */
  obj#          number not null,                            /* object number */
  sql_text      varchar2(4000) not null)                    /* statement */
  storage (initial 50K)            /* to avoid space management during IOR I */
ORA-01501: CREATE DATABASE failed
ORA-01519: error while processing file '?/rdbms/admin/sql.bsq' near line 1740
ORA-00604: error occurred at recursive SQL level 1
ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","insert into ts$ (ts#,n
ame,on...","Typecheck","seg:kggfaAllocSeg")I get the hint that its a memory problem. I'm not yet knowledgeable in this part, but looking into some notes I've check this parameters:
SQL> startup nomount;
ORACLE instance started.
Total System Global Area  113246208 bytes
Fixed Size                  1218004 bytes
Variable Size              58722860 bytes
Database Buffers           50331648 bytes
Redo Buffers                2973696 bytes
SQL> show parameter sga
NAME                                 TYPE        VALUE
lock_sga                             boolean     FALSE
pre_page_sga                         boolean     FALSE
sga_max_size                         big integer 108M
sga_target                           big integer 0
SQL> show parameter pool
NAME                                 TYPE        VALUE
buffer_pool_keep                     string
buffer_pool_recycle                  string
global_context_pool_size             string
java_pool_size                       big integer 24M
large_pool_size                      big integer 0
olap_page_pool_size                  big integer 0
shared_pool_reserved_size            big integer 1677721
shared_pool_size                     big integer 32M
streams_pool_size                    big integer 0
SQL> I tried doing some resizing:
SQL> alter system set shared_pool_size=128M
  2  /
alter system set shared_pool_size=128M
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-04033: Insufficient memory to grow poolThis vm has a 700M+ memory allocated. Could someone give me some hints as to how to solve this problem? I get all this erros when I execute the "create database" from sqlplus after the startup nomount command. Thank you very much.
Regards,
Rhani

SQL> startup nomount;
ORACLE instance started.
Total System Global Area  113246208 bytes
Fixed Size                  1218004 bytes
Variable Size              58722860 bytes
Database Buffers           50331648 bytes
Redo Buffers                2973696 bytes
SQL> show parameter sga_target;
NAME                                 TYPE        VALUE
sga_target                           big integer 0
SQL> create spfile from pfile;
File created.
SQL> shutdown;
ORA-01507: database not mounted
ORACLE instance shut down.
SQL> startup nomount;
ORACLE instance started.
Total System Global Area  113246208 bytes
Fixed Size                  1218004 bytes
Variable Size              58722860 bytes
Database Buffers           50331648 bytes
Redo Buffers                2973696 bytes
SQL> alter system set sga_max_size=512M scope=spfile;
System altered.
SQL> shutdown;
ORA-01507: database not mounted
ORACLE instance shut down.
SQL> startup nomount;
ORACLE instance started.
Total System Global Area  536870912 bytes
Fixed Size                  1220460 bytes
Variable Size             482345108 bytes
Database Buffers           50331648 bytes
Redo Buffers                2973696 bytes
SQL> show parameter sga_max_size;
NAME                                 TYPE        VALUE
sga_max_size                         big integer 512M
SQL> alter system set sga_target=500M;
System altered.
SQL> create database;
Database created.
SQL> Thank you very much!

Similar Messages

  • Viewing Manually created Database from EM in 10G

    Hi All
    I have manually created one database in oracle 10g using following script:-->
    create database bally
    user sys identified by oracle
    user system identified by oracle
    logfile group 1 ('D:\oracle\product\10.1.0\oradata\bally\redo01.log') size 10M,
    group 2 ('D:\oracle\product\10.1.0\oradata\bally\redo02.log') size 10M,
    group 3 ('D:\oracle\product\10.1.0\oradata\bally\redo03.log') size 10M
    character set WE8ISO8859P1
    datafile 'D:\oracle\product\10.1.0\oradata\bally\system01.dbf'
    size 100M
    autoextend off
    extent management local
    sysaux datafile 'D:\oracle\product\10.1.0\oradata\bally\sysaux01.dbf'
    size 200M
    autoextend off
    undo tablespace undotbs1
    datafile 'D:\oracle\product\10.1.0\oradata\bally\undotbs01.dbf'
    size 50M
    default temporary tablespace temp
    tempfile 'D:\oracle\product\10.1.0\oradata\bally\temp01.dbf'
    size 50M
    archivelog;
    After that i run post scripts to create data dictionary views.
    Then I created the Listener for the created Database.
    Everythig is running fine including the listener and database but
    How can i view the database from Web Enterprise Manager.
    Kindly Guide
    Regards
    Bally

    You have to create the Enterprise Manager Repository first. You can use DBCA (Database Configuration Assistant) or EMCA (Enterprise Manager Configuration Assistant) for that. Then you can start EM by
    http://<hostname>:<port>/em
    See http://download-uk.oracle.com/docs/cd/B19306_01/em.102/b16242/structure.htm#CACDGDJA and http://download-uk.oracle.com/docs/cd/B19306_01/em.102/b16242/structure.htm#sthref75

  • Errors and Queries regarding manually create database in oracle 9i

    Create database manually with following steps:
    1) Create SID
    C:\> set ORACLE_SID=mynewdb
    2)Create suitable database directories within oracle directory.
    Create folders udump,cdump,bdump within C:\oracle\admin\mynewdb\
    3)Create PFILE
    4)Create a password file using:
    C:\> orapwd file=C:\oracle\ora90\database\PWDmynewdb.ora password=oracle
    5)Create an instance of database
    C:\> oradim -new -sid mynewdb
    6)Start sqlplus:
    C:\> sqlplus\nolog
    7)connect / as sysdba
    8)startup nomount
    9)Run CREATE DATABASE script
    'Database Created' prompt display on screen.
    11) Run two scripts i.e. catalog.sql and catproc.sql
    Following are errors and queries related to database creation. :
    Errors+_
    Following error occur when start database:
    Total System Global Area 336359616 bytes
    Fixed Size 282816 bytes
    Variable Size 234881024 bytes
    Database Buffers 100663296 bytes
    Redo Buffers 532480 bytes
    Database mounted.
    ORA-01092: ORACLE instance terminated. Disconnection forced
    For start database I give following command, but it gives me same error:
    STARTUP OPEN PFILE='c:\ORACLE\ORA90\DATABASE\initmynewdb.ora'
    or
    STARTUP FORCE OPEN PFILE='c:\ORACLE\ORA90\DATABASE\initmynewdb.ora'
    or
    STARTUP OPEN
    or
    STARTUP FORCE OPEN
    Queries_
    *1)There are one databases in my machine name "orcl"*
    when I give commands
    C:\> connect / as sysdba
    C:\> startup nomount
    When I run "connect / as sysdba", in this which database instance connect?
    how the oracle will know to start mynewdb database instance in nomount? although I am not create database.
    *2) Step "startup nomount". In this, which database started in nomount?*
    *3) There is no reference for PFILE in CREATE DATABASE script. How the oracle will know which is the PFILE for database mynewdb?*
    *4) I create password file, how the oracle will know password file for which database (in this case mynewdb database)? How to map password file with particular database?*
    Thanks and Regards,
    Sachin

    Hi,
    not any thing new from the already given answer. But, i hope this examples gives more clarity.
    Answers below:
    1) ORACLE_SID is the answer
    2) see the output below.
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 61785680 bytes
    Fixed Size 730704 bytes
    Variable Size 58720256 bytes
    Database Buffers 2048000 bytes
    Redo Buffers 286720 bytes
    SQL> select instance_name from v$instance;
    INSTANCE_NAME
    mytestdB
    SQL>
    SQL> show parameter db_name
    NAME TYPE
    VALUE
    db_name string
    mytestdB
    3) Check environment variables for ORACLE_HOME variable will let you know the location of the PFILE. By default it will be ORACLE_HOME/database (windows), ORACLE_HOME/dbs (LINUX/UNIX).
    SET command will help you or use widows options.
    In some other cases, the PFILE contains the link to it with IFILE value left in PFILE which should show the location.
    4) Check environment variables for ORACLE_HOME variable will let you know the location of the password file. By default it will be expected in ORACLE_HOME/database (windows), ORACLE_HOME/dbs (LINUX/UNIX).
    Regrds,
    Vasu.

  • How To register The manually Created Database into DBCA

    hi guys .. !! -:)
    using test linux 4 with the vmware , manually i create RAC database , the database is working proper , i planned to delete the RAC database through DBCA , but when i issued $dbca !!! the database can not be see from DBCA to delete it or to manage it
    so i don't know is there is any configuration file belong to DBCA to detect the existing database or there is
    command to register the database into DBCA
    note:-
    i added the instance name into the /etc/oratab
    but it's not working
    also i tried to use this command
    $dbca -silent -adddb database_name also this command is not work perfectly
    so really i don't know what is the step i have to follow to let the DBCA detect my existing database
    with my regard
    Edited by: user12122471 on Oct 28, 2009 2:19 AM

    user12122471 wrote:
    hello guys ,,,, i am waiting ????? >>>This is a forum. It is not chat. It is not instant message. No one is paid or obligated to sit around and monitor this forum. No one is paid to respond to anything posted here. Maybe the only guy with an answer lives 12 time zones away from you . . . .

  • Error while creating database manually

    hi guru's i am getting error while creating database manually
    my sql is SQL>create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
                group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      character set          WE8ISO8859P1
      national character set utf8
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'
                size 50M
                autoextend on
                next 10M maxsize unlimited
                extent management local
      sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf'
                size 10M
                autoextend on
                next 10M
                maxsize unlimited
      undo tablespace undo
                datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'
                size 10M
      default temporary tablespace temp
                tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf'
                size 10M;and i am getting following error
    create database lily
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\LILY\CONTROL01.CTL'
    ORA-27038: created file already exists
    OSD-04010: <create> option specified, file already exists
    code}
    Edited by: CHETAN YADAV on Jul 19, 2011 6:55 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
              group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'  size 150M
    sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf' 150 M
      undo tablespace undo  datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'  size 10M
    default temporary tablespace temp tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf' size 10M;
    remove the SQL> from the a.sql script also change the system datafile size to minimum of 100mb size
    ALSO check/change the undotablespace name with your init parameter file it should match as it is in the init parameter file
    Edited by: rajeysh on Jul 19, 2011 6:59 PM

  • Creating database Manually

    Dear Experts
    I want to create database in oracle 10g manually, without using dbca or create database script on sql. I have been searching google, but not getting any related document. Can you please guide me or provide any link where I get steps to create a database by copying files etc

    user832095 wrote:
    Thanks to all of you for your prompt response. But in all these responses, I have to issue CREATE DATABASE scrip. There is another way in which we do not use CREATE DATABASE statement, and create all files and folders manually. I did this exercise in the past but now lost all the stuff. Anyways, thanks for your replyIf you are asking about creating a database than how it can be possible to do it without issuing Create Database command? How can you create the files and folders manually? May be you should refer to the reply of Pierre where he has mentioned to create a database using a backup.
    Aman....

  • I am not able to create database manually.unexpected error incountered why?

    I am not able to create database manually.unexpected error incountered why?
    Same step is worked in another system
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 97589952 bytes
    Fixed Size 453312 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE DATABASE icici
    2 LOGFILE GROUP 1 ('F:\oracle\oradata\icici\logfile\redo01.log') SIZE 10M,
    3 GROUP 2 ('F:\oracle\oradata\icici\logfile\redo02.log') SIZE 10M,
    4 GROUP 3 ('F:\oracle\oradata\icici\logfile\redo03.log') SIZE 10M
    5 MAXLOGFILES 5
    6 MAXLOGMEMBERS 5
    7 MAXLOGHISTORY 1
    8 MAXDATAFILES 10
    9 MAXINSTANCES 1
    10 CHARACTER SET US7ASCII
    11 NATIONAL CHARACTER SET AL16UTF16
    12 DATAFILE 'F:\oracle\oradata\icici\datafile\system01.dbf' SIZE 100M REUSE
    EXTENT MANAGEMENT LOCAL
    13 DEFAULT TEMPORARY TABLESPACE tempts1 TEMPFILE 'F:\oracle\oradata\icici\d
    atafile\temp01.dbf' SIZE 100M REUSE
    14 UNDO TABLESPACE undotbs DATAFILE 'F:\oracle\oradata\icici\datafile\undot
    bs01.dbf'SIZE 100M REUSE
    15* AUTOEXTEND ON NEXT 5120K MAXSIZE 300M
    SQL> /
    CREATE DATABASE icici
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    SQL>

    Check the alert log. Paste the end of the file over here.
    Yoann.

  • Manual script to create database for Access Manager installation

    Hi,
    Is it possible to perform new installation on OAM Access server in the database using manual methods (By running specific scripts). Without using GUI method to create the component databases?
    The databases for the OAM will be manually created, What are the list of scripts that needs to be run against the database which are responsible for creating the "OAM-Coreid Access" component?
    Does not find the informationin the installation guide.
    thanks in advance.

    Hi Franck,
    I have found the script(rw_server.sql). I want to known who will be the owner of objects which i will create with this script.
    Can you explain me this sentence:"
    alternatively just uncomment the references in rp2rro.pll."
    Thank you for your help.
    TYAG

  • Can I create a non-Unicode database manually via create database segment

    Hi
    As unicode encode use more bytes than 2-bytes encode (for instance, ZHS16GBK), and XE has the limit with 4GB totally. So, can I create a non-Unicode (for instance, ZHS16GBK) database manually via create database segment? or I just could use unicode?
    Thanks.
    Samuel

    Could you load or paste this scripts? Well, the script is (obviously) a shell script, useless on Windows, unless you have some emulator (CygWin, MKS toolkit or similar). The following is the Sql part :
    sqlplus /nolog <<END
    spool xe_createdb.log
    connect sys/oracle as sysdba
    startup nomount pfile=$filedir/init$ORACLE_SID.ora
    whenever sqlerror exit;
    create database
      maxinstances 1
      maxloghistory 2
      maxlogfiles 16
      maxlogmembers 2
      maxdatafiles 30
    datafile '$filedir/system.dbf'
      size 200M reuse autoextend on next 10M maxsize 600M
      extent management local
    sysaux datafile '$filedir/sysaux.dbf'
      size 10M reuse autoextend on next  10M
    default temporary tablespace temp tempfile '$filedir/temp.dbf'
      size 20M reuse autoextend on next  10M maxsize 500M
    undo tablespace undo datafile '$filedir/undots1.dbf'
      size 50M reuse autoextend on next  5M maxsize 500M
    --character set al32utf8
    character set $dbcharset
    national character set al16utf16
    set time_zone='00:00'
    controlfile reuse
    logfile '$filedir/log1.dbf' size 50m reuse
           , '$filedir/log2.dbf' size 50m reuse
           , '$filedir/log3.dbf' size 50m reuse
    user system identified by oracle
    user sys identified by oracle
    -- create the tablespace for users data
    create tablespace users
      datafile '$filedir/users.dbf'
      size 100M reuse autoextend on next 10M maxsize 5G
      extent management local
    -- install data dictionary views:
    @?/rdbms/admin/catalog.sql
    -- run catblock
    @?/rdbms/admin/catblock
    -- run catproc
    @?/rdbms/admin/catproc
    -- run catoctk
    @?/rdbms/admin/catoctk
    -- run pupbld
    connect system/oracle
    @?/sqlplus/admin/pupbld
    @?/sqlplus/admin/help/hlpbld.sql helpus.sql;
    -- run plustrace
    connect sys/oracle as sysdba
    @?/sqlplus/admin/plustrce
    -- Install context
    @?/ctx/admin/catctx oracle SYSAUX TEMP NOLOCK;
    connect CTXSYS/oracle
    @?/ctx/admin/defaults/dr0defin.sql "AMERICAN"
    -- Install XDB
    connect sys/oracle as sysdba
    @?/rdbms/admin/catqm.sql oracle SYSAUX TEMP;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbj.sql;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbdbca.sql 0 8080;
    connect SYS/oracle as SYSDBA
    begin dbms_xdb.setListenerLocalAccess( l_access => TRUE ); end;
    -- Install Spatial Locator
    connect sys/oracle as sysdba
    create user MDSYS identified by MDSYS account lock;
    @?/md/admin/catmdloc.sql
    create spfile='$filedir/spfile.ora' from pfile
    alter user anonymous account unlock
    disconnect
    -- recompile invalid objects
    connect sys/oracle as sysdba
    begin dbms_workload_repository.modify_snapshot_settings(interval => 0); end;
    begin dbms_scheduler.disable('AUTO_SPACE_ADVISOR_JOB', true); end;
    spool off
    exit
    ENDWords prefixed with $ are OS variables, you have to substitute them with your values.

  • Steps to Create Database manually.

    Dear All,
    I need steps to create database manually.
    How to create password file & database.
    Aqeel Nawaz

    Hi,
    yingkuan, given the offical link for you, which is good in understanding things.
    If you want little bit different easy to understand.
    Refer : http://www.gotidea.net/Database/10gcreatedb.html
    http://dba.fyicenter.com/article/Manually_Creating_an_Oracle_Database_on_Windows.html
    - Pavan Kumar N

  • Create database manually

    Hello Everyone,
    I need to create a database manually. It needs to be a data warehouse database. How can I go about doing that? I tried to create a database thru DBCA but it was giving me an error something about AWR. I don't have the excat error but I can get for you. Please any help is appreciated. I am on AIX 5.3 platform.
    Thanks

    I got this error while creating the database. So
    which SYSAUX tablespace am I suppose to extend?If you get this message while creating a database, then the tablespace it refers to would be the one for the database you are creating. Unlike SQLServer, in Oracle the term 'database' is the highest level of organization there is. Except for the possible contention for system level resources, this new database neither knows nor cares a thing about any other databases that may exist anywhere in the universe. In Oracle, every database (and here I use the term 'database' in a broad sense - to include the files and the instance(s)) has its own files, memory, and processes. Multiple databases can communicate with each other, but they don't share anything - not files, not memory, not process, not logical objects within the database.
    Just find the place in the CREATE DATABASE script where it defines the SYSAUX tablespace and adjust the size accordingly.

  • Create database manually.unexpected error incountered

    I am not able to create database manually.unexpected error incountered why?
    Same step is worked in another system
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 97589952 bytes
    Fixed Size 453312 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    SQL> create dtabase;
    create dtabase
    ERROR at line 1:
    ORA-00901: invalid CREATE command
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE DATABASE icici
    2 LOGFILE GROUP 1 ('F:\oracle\oradata\icici\logfile\redo01.log') SIZE 10M,
    3 GROUP 2 ('F:\oracle\oradata\icici\logfile\redo02.log') SIZE 10M,
    4 GROUP 3 ('F:\oracle\oradata\icici\logfile\redo03.log') SIZE 10M
    5 MAXLOGFILES 5
    6 MAXLOGMEMBERS 5
    7 MAXLOGHISTORY 1
    8 MAXDATAFILES 10
    9 MAXINSTANCES 1
    10 CHARACTER SET US7ASCII
    11 NATIONAL CHARACTER SET AL16UTF16
    12 DATAFILE 'F:\oracle\oradata\icici\datafile\system01.dbf' SIZE 100M REUSE
    EXTENT MANAGEMENT LOCAL
    13 DEFAULT TEMPORARY TABLESPACE tempts1 TEMPFILE 'F:\oracle\oradata\icici\d
    atafile\temp01.dbf' SIZE 100M REUSE
    14 UNDO TABLESPACE undotbs DATAFILE 'F:\oracle\oradata\icici\datafile\undot
    bs01.dbf'SIZE 100M REUSE
    15* AUTOEXTEND ON NEXT 5120K MAXSIZE 300M
    SQL> /
    CREATE DATABASE icici
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    SQL>

    I'll lay odds that the problem is that you've asked this database to use an UNDO tablespace called UNDOTBS, but that in your spfile (or init.ora) you've specified UNDO_TABLESPACE=UNDOTBS01 (or something similar).
    If the parameter file specifies an undo tablespace which doesn't exist, the instance blows up.
    The advice to read the alert log would be useful at this point, because the mismatch of undo tablespace names is always recorded properly there (which always makes me annoyed that the original error message can't be a bit more precise!)

  • I am getting this error while creating Database manually.

    SQL> @anupam.sql
    create database anupam
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '?/rdbms/admin/dtxnspc.bsq' near line 20
    ORA-00604: error occurred at recursive SQL level 1
    ORA-19502: write error on file "/home/oracle/anupam/users02.dbf", block number
    24704 (block size=8192)
    ORA-27072: File I/O error
    Linux Error: 25: Inappropriate ioctl for device
    Additional information: 4
    Additional information: 24704
    Additional information: 53248
    Process ID: 21047
    Session ID: 1 Serial number: 3

    is your directory /home/oracle/anupam/ 100% full can you paste df -kh output

  • DBCA and Creating Database Manually

    Hi
    After creatinig the database using Create Database command, we need to run the scripts like catproc.sql,etc. It takes a long time.
    However when we create the database using DBCA, it is faster and we are not required to run those scripts.
    Reasons ?

    In DBCA, if you choose to create a db with the template 'General Purpose or Transaction Processing' including data files, you would put a check mark in the Generate Database Creation Scripts section to produce scripts with the same actions as run by DBCA (including the rman clone of the seed database). With these scripts you don't need to run cat* scripts seperately.
    Time the <db_name>.bat run against the same run "within" DBCA.
    Message was edited by:
    orafad

  • Unable to Load Database/Unable to create database.

    RoboHelp 6.0 on my PC is suddenly unable to open existing
    projects or create new ones. The problem is not in the projects, as
    other people can unzip the same set of files and open them with
    RoboHelp on their PCs.
    The Details:
    When attempting to open an existing project (any project
    whether in version control or not), I get the message " Open
    project was cancelled or the application was unable to load
    database for..."
    I found the article that says to delete the CPD and XPJ files
    and then to use the Edit option to open the HHP file so that
    RoboHelp will recreate the two files. When I try that, I get the
    message "Unable to create database. Check that the directory is not
    read-only." It's
    not read-only.
    When I attempt to create a new project, the application acts
    like it is going to create one, but it just creates a project
    folder without the new first topic and then repeats the New Project
    Wizard window that prompts for title, etc. It will keep creating
    folders and returning to this window in a loop without ever really
    creating a project.
    RoboSource Control is functioning normally, by the way.
    I have uninstalled and reinstalled RH 6 several times, and
    have even uninstalled RH 6 and installed to RH 5 just to see if it
    could open projects, which it does with no problems. After that
    test, I uninstalled RH 5 and reinstalled RH 6, only to encounter
    the same problem all over again.
    This started happening after I uninstalled other unrelated
    software and received a message that some Service Pack 2 files had
    been changed and prompting me to insert the Service Pack 2 CD,
    which I don't have. This is because our IT department pre-builds
    our systems from an image and then distributes job-specific
    applications over the network. IT tried repairing Service Pack 2,
    but that didn't work. I'd like to uninstall and reinstall Service
    Pack 2, but the IT person says it's too risky on a system that was
    built from an image.
    We would like to find out
    which files RoboHelp is looking for when it launches a
    project so we can replace those files manually. Does anyone
    know what they are or have another suggestion that might fix the
    problem?
    Otherwise, I am stuck having to allow IT to rebuild my
    system. That means reinstalling and reconfiguring everything on it,
    just as if I were upgrading to a new PC. This can take a whole work
    week. However, I have already spent close to a work week on this
    problem, so maybe rebuilding would save time in the long
    run.

    Problem Resolution = HHA.dll
    For anyone who might be interested in the resolution to this
    issue, we did rebuild my PC and reinstall all of my software. The
    RoboHelp installation "complained" that I did not have HTML Help
    Workshop on my system and told me to download version 1.4 from
    Microsoft. I did have HTML Help Workshop..it's in my programs list.
    (It's not listed in programs on my co-workers' PCs, and they were
    not having problems, by the way.) But to make RH happy, I
    uninstalled the workshop and tried to install the version from
    Microsoft. But a message informed me that I already had a newer
    version of the workshop on my system, and I was back where I
    started. I could open projects, but there were weird problems.
    Selecting Topic Properties was met with an error message, and when
    the properties window opened, I could only see whatever template
    was assigned (or none if the topic had lost its template), and
    there was an extra section for Oracle help.
    So I started dinking around in the registry to see if I could
    get rid of any traces of the workshop so I could install the
    version RH wanted or to find any other clues to my problem. Under
    HTMLHelpAuthor, there was a reference to an HHA.dll file located in
    C:\WINDOWS\system32...only the file did not exist on my system.
    (Remember that my original problem was that some Service Pack 2
    files were either modified or missing.) So I did a Google search on
    that file name and found out that HTML Help Workshop is included in
    newer Windows operating systems, but that people used to have to
    get HTML Help Workshop from Microsoft, and that some people had
    made the mistake of just putting the HHA.dll file into the
    C:WINDOWS\system32 folder without also installing HTML Help
    Workshop. At this point it was obvious that I needed the HHA.dll,
    so I got it from a co-worker's PC. (Looking at the registry
    entries, I can also see that my system was built with a slightly
    different version of the operating system than my co-workers have.)
    Adding the HHA file to my system solved the problem. All
    projects but one were fine; one was still exhibiting the strange
    behavior. I fixed it by going back to the RoboHelp 5 version of the
    project and re-converting it to RoboHelp 6.
    I suspect that if I had known about the HHA.dll file before
    we rebuilt the PC, I could have solved the problem without going
    through that painful process. That is why I thought I should post
    the solution even though it was after the rebuild.

Maybe you are looking for

  • Can I run CS5 twice?

    I need to run 2 identical versions of CS5 this is so that one can run a batch in the background and yet still edit in the other. Now I have been able to have 2 folders with CS5 on and they both work. However I get this prompt asking "The application

  • Best way to automatically delete multiple duplicate contacts?

    I had Mobile Me go nuts on me a few weeks ago and took my 1,000+ contacts and duplicated them with every sync up to 16,400 before I caught it and shut it down. This happened to my iCal appointments as well, but there is a simple application out there

  • Form 9i http listner

    dear fellows i have installed 9ids on wxp it connects but when i try to run any form it says "FRM-10142 HTTP LISTNER IS NOT RUNNING ON YOUR MACHINE PLEASE START THE LISTNER OR CHECK YOUR RNUTIME PREFRANCE" PLZ HELP ME TO GET OUT OF THIS PROBLEM THANK

  • XMLSocket on Windows Mobile - no data send and onConnect not entered

    Hi, I'm developing a FlashLite 2.1 application and try to communicat with the host device (WiMo) through a XMLSocket to write some data to the disk. I have the following code in the FL-App: xmlSocket = new XMLSocket(); xmlSocket.onConnect = function(

  • How to use wsdl in dynamic client

    In wls 700, I want to know how to write a dynamic client to invoke a webservice by passing wsdl? In the example directory, there is an example, but I would like to know how I can customize to use my own wsdl? clientgen puts wsdl in client jar file wh