Error while creating database on 10.2 enterprise eidition

Hi,
When i trying to create database through batch file on oracle version 10.2 enterprise edition, its giving error.
ORA-01092: ORACLE instance terminated. Disconnection forced
Following error message logged in log file:
ORA-00604: error occurred at recursive SQL level 2
ORA-00942: table or view does not exist
Offending statement at line 7032
create unique index apply$_conf_hdlr_columns_unq1
on apply$_conf_hdlr_columns(object_number, column_name)
ORA-01501: CREATE DATABASE failed
ORA-01519: error while processing file '%ORACLE_HOME%\RDBMS\ADMIN\SQL.BSQ' near line 7032
ORA-00604: error occurred at recursive SQL level 2
ORA-00942: table or view does not exist
The same script is working fine on Oracle 10.1 Enterprise edition But its giving error on Oracle 10.2 Enterprise edition while creating database.
Please help.
Thanks in advance

Hi,
Content of PFILE:
# Basic Initialization Parameters
cluster_database=false
compatible=10.1.0.2.0
control_files = ("F:/oracle/oradata/DTO/ctrl01.ctl", "F:/oracle/oradata/DTO/ctrl02.ctl")
db_block_size=8192
# db_create_file_dest               # only used in OMF mode
# db_create_online_log_dest_n          # only used in OMF mode
db_domain=""
db_name=DTO
db_recovery_file_dest=F:/oracle/oradata/DTO/flash_recovery_area
db_recovery_file_dest_size=2G
db_unique_name=DTO_01
# instance_number               # RAC parameter
job_queue_processes=10
# log_archive_dest_n               # NOARCHIVELOG mode
# log_archive_dest_state_n          # NOARCHIVELOG mode
# nls_language                    # OS dependant
# nls_territory                    # OS dependant
open_cursors=50
pga_aggregate_target=10M
processes=50
# remote_listener               # RAC parameter
remote_login_passwordfile=EXCLUSIVE
# rollback_segments               # UNDO_MANAGEMENT mode
# sessions                    # derived from processes
sga_target=100M
shared_servers=0
star_transformation_enabled=FALSE
undo_management=AUTO
# undo_tablespace               # first UNDO tablespace
# Other Parameters
background_dump_dest=F:/oracle/admin/DTO/bdump
core_dump_dest=F:/oracle/admin/DTO/cdump
cursor_sharing=SIMILAR
db_file_multiblock_read_count=64          
db_files=400
db_writer_processes=2
instance_name=DTO
log_buffer = 8192
log_checkpoint_interval = 10000
log_checkpoint_timeout = 0
os_authent_prefix=""
service_names=DTO
statistics_level=typical
timed_statistics=true
user_dump_dest=F:/oracle/admin/DTO/udump
utl_file_dir=*
Command in batch script:
CONNECT sys/oracle AS SYSDBA
STARTUP NOMOUNT PFILE=&ADMN_DIR/pfile/init&ORA_INST..ora
CREATE DATABASE &ORA_INST
     CONTROLFILE REUSE
     LOGFILE
          GROUP 1 ('&REDO_DIR_1/redo11.log','&REDO_DIR_2/redo12.log') SIZE 10M REUSE,
          GROUP 2 ('&REDO_DIR_1/redo21.log','&REDO_DIR_2/redo22.log') SIZE 10M REUSE,
          GROUP 3 ('&REDO_DIR_1/redo31.log','&REDO_DIR_2/redo32.log') SIZE 10M REUSE,
          GROUP 4 ('&REDO_DIR_1/redo41.log','&REDO_DIR_2/redo42.log') SIZE 10M REUSE
     DATAFILE
          '&DATA_DIR/syst01.dbf' SIZE 40M REUSE AUTOEXTEND ON NEXT 40M MAXSIZE 2G
          EXTENT MANAGEMENT LOCAL
     SYSAUX DATAFILE
          '&DATA_DIR/saux01.dbf' SIZE 40M REUSE AUTOEXTEND ON NEXT 40M MAXSIZE 2G
     DEFAULT TEMPORARY TABLESPACE temp
          TEMPFILE '&TEMP_DIR/temp01.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 2G
          EXTENT MANAGEMENT LOCAL UNIFORM SIZE 10M
     UNDO TABLESPACE undo
          DATAFILE '&UNDO_DIR/undo01.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 2G,
               '&UNDO_DIR/undo02.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 2G
     CHARACTER SET AL32UTF8
     SET TIME_ZONE = 'Europe/Warsaw';

Similar Messages

  • Error while creating database in classic appln

    Hi All,
    I am getting this error while creating database in classic application.
    com.hyperion.planning.olap.EssbaseException: Failed to create database, error code [%s] (1013221).
    Can anyone please let me know why I am getting it?
    Thanks in advance

    Can you check for a more specific error code in the Application log? There can be various reasons for this:
    1. For data storage and binary installation, Essbase supports the use of any disk array device mounted with a local file system interface (for example, NTFS, HPFS, JFS, VxFS, and UFS). A disk array mounted using NFS or CIFS is not supported.Use any disk array device mounted with a local file system interface (for example, NTFS, HPFS, JFS, VxFS, and UFS).
    2. Error occurs when deploy Planning application with double byte enabled. When the plan name is changed to English, deploy will be successful. This issue can be fixed by setting Correct Essbase ESSLANG system value.
    3. The Essbase User that creates the application and DB folders has default ACL rw-rw-rw which does not allow the essbase app to create files inside the folder.
    HTH-
    Jasmine.

  • 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

  • Error while creating database

    I'm running windows server 2003, with 10g Release 1 (10.1) for Windows, while tring to create my database i get this error:
    instance created
    DIM-00019: create service error
    O/S-Error (OS 1388)A new member could not be added
    to the local group because the member has the
    wrong account type.
    how would i go about fixing this any help would be appreciated

    Shuresh,
    Please read note 271569.1 on metalink. There is a fix for it.

  • Error while creating database instance during PI instalation

    Hi Team,
    I am in the installation phase of SAP PI with MAXDB as back end.In the
    phase "create database instance" i am facing the following issue
    "An error occurred while processing option SAP EHP1 for SAP NetWeaver
    PI/Mobile/Banking 7.1 > MaxDB > SAP Systems > Process Integration >
    Standard System > Standard System( Last error reported by the step:
    Error during execution of command identifier 'ACTIVATE'"
    Can you help me in resolving this issue at the earliest.Also i have attached
    the sapinst_dev log filke in this incident along with the
    error screenshot
    Thanks,
    Satheesh E

    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:08.874 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.1.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.1.xml
    INFO       2014-09-08 16:31:08.905 [synxcpath.cpp:799]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\__instana_tmp.xml.
    TRACE      2014-09-08 16:31:10.796 [cstatisticmanager.cpp:2241]
               CStatisticManager::writeInstallationSlanaFile_Intern
    TRACE      2014-09-08 16:31:10.811 [syxxcfile.cpp:85]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const 
               lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:10.811 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml
    INFO       2014-09-08 16:31:10.811 [synxcfile.cpp:149]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\instslana.xml.
    INFO       2014-09-08 16:31:10.811 [synxcpath.cpp:799]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\instslana.xml.
    TRACE      2014-09-08 16:31:10.889
    SAPInst calls the LogInquirer. The output of the LogInquirer can be found in file sapinst_loginquirer.log.
    TRACE      2014-09-08 16:31:15.669 [iaxxgenimp.cpp:638]
                CGuiEngineImp::showMessageBox()
    <html> <head> </head> <body> <p> An error occurred while processing option <i>SAP EHP1 for SAP NetWeaver PI/Mobile/Banking 7.1 > MaxDB > SAP Systems > Process Integration > Standard System > Standard System( Last error reported by the step: Error during execution of command identifier 'ACTIVATE' : <DBMException -24988 ERR_SQL SQL error
    -2014,Identifier too long>)</i>. You can now: </p> <ul> <li> Choose <i>Retry</i><br>to repeat the current step. </li> <li> Choose <i>Log Files</i><br>to get more information about the error. </li> <li> Stop the option and continue later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS. </p> </body></html>
    TRACE      2014-09-08 16:31:15.669 [iaxxgenimp.cpp:1031]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    INFO       2014-09-08 16:31:19.434 [sixxcstepexecute.cpp:1002]
    An error occurred and the user decided to retry the current step: &quot;|NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_ADA_DB|ind|ind|ind|ind|nw_ada_db|0|SdbPreInstanceDialogs|ind|ind|ind|ind|preinstance_dialogs|0|SdbInstanceDialogs|ind|ind|ind|ind|instance_dialogs|0|SDB_INSTANCE_CREATE|ind|ind|ind|ind|instance_create|0|sdb_instance_activate&quot;.
    INFO       2014-09-08 16:31:19.450 [synxccuren.cpp:887]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS)
               lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS.
    TRACE      2014-09-08 16:31:19.465 [syxxcfile.cpp:85]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const 
               lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:19.465 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml
    TRACE      2014-09-08 16:31:19.497
    Instantiating new NWUsageTypeBasic
    TRACE      2014-09-08 16:31:19.497
    NWUsageTypeBasic() done
    TRACE      2014-09-08 16:31:19.497
      Call block: SDB_INSTANCE_CREATE_ind_ind_ind_ind
        function: SDB_INSTANCE_CREATE_ind_ind_ind_ind_PreStepPhase_sdb_instance_activate_Preprocess
    is validator: false
    TRACE      2014-09-08 16:31:19.543 [sixxcstepexecute.cpp:839]
    Execution of preprocess block of |NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_ADA_DB|ind|ind|ind|ind|nw_ada_db|0|SdbPreInstanceDialogs|ind|ind|ind|ind|preinstance_dialogs|0|SdbInstanceDialogs|ind|ind|ind|ind|instance_dialogs|0|SDB_INSTANCE_CREATE|ind|ind|ind|ind|instance_create|0|sdb_instance_activate returns TRUE
    TRACE      2014-09-08 16:31:19.575
    Instantiating new NWUsageTypeBasic
    TRACE      2014-09-08 16:31:19.575
    NWUsageTypeBasic() done
    TRACE      2014-09-08 16:31:19.575
      Call block: SDB_INSTANCE_CREATE_ind_ind_ind_ind
        function: SDB_INSTANCE_CREATE_ind_ind_ind_ind_PreStepPhase_sdb_instance_activate
    is validator: false
    TRACE      2014-09-08 16:31:19.621
    WorkDir: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS
    TRACE      2014-09-08 16:31:19.621
    SdbOperations.callSdbCmdJar() Use java home : C:/Users/EGSAPI~1/AppData/Local/Temp/sapinst_exe.4716.1410173586/jre
    TRACE      2014-09-08 16:31:19.637
    SDB invoking java call:
    C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_sl_lib.jar;C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_sl_lib_api.jar;C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_core.jar" com.sap.sdb.core.main.cmd.SdbCmdMain
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:275]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Going to call CreateProcess/CreateProcessAsUser for 'C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe' now.
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:575]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Trying to start C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe CSySysLibCallsWrapper::syscallwrapper()->__CreateProcess__(NULL, <command line for executable C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe, NULL, NULL, TRUE, 0x420, NULL, NULL, &StartupInfo, &ProcessInfo)
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:653]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    A child process has been started. Pid = 4956. Executable name: C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe
    TRACE      2014-09-08 16:31:19.637

  • Error while creating database 10g

    Hi,everyone
    I am installing oracle 10g db on Win2k sp4 platform ,while after i have completed software configuration i dicided to use dbca to create database,however i always got the "Ora-03114"error,end of communication channel,anyone have any idea?Thanks in advance.

    At what point in the process does the error occur?
    Kind regards,
    Russ Cannon

  • 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

  • Error while creating database using DBCA

    Hi,
    I installed Oracle10gR2 on my windows machine.Now am creating a database with dbca but just after i click the finish button it gives me the error -
    Cannot create directory "F:\oracle\cfgtoollogs\dbca\ora10g" where F:\oracle is the directory where i have installed Oracle 10g and ora10g is the database name.
    I have full permission on the folders.Can anyone please let me know what is the problem here.
    Regards,
    Somd

    Hi OrionNet,
    At last i could create the database successfully.But these are the issues I faced and am listing down the solution so that it can help others too.
    1.I could not find the Administrative Tools-> Local security Policy --> Local Policies --> User Right Assignment in the Windows Vista Home Premium.I went and checked many blogs and forums on where is it located.It seems it is not included in the home premium and people are having a tough time working out the round abouts.
    2.The problem was that my UAC (User Account Control) in the Windows Security Center was turned on which was not allowing me to create the database.I turned it off,and it created the db smoothly.
    Thanks a lot for your help..I really appreciate it :)
    Regards,
    Somd

  • Error while creating database on 11g

    Hi
    All,
    I have installed oracle database 11g R1 on windows XP. I am trying to create database and getting following error.
    ORA-01031 insufficient privileges.
    I am on ora_dba group on windows.
    please let me know if you have any idea.
    Thanks,
    Vishal

    When all else fails, Read The Fine Manual
    http://www.oracle.com/pls/db111/portal.portal_db?selected=11&frame=#microsoft_windows_installation_guides

  • Can not create directory error while creating database

    i am creating database using dbca in oel but when i try to do so i get an error saying can not create directory pawii
    and pawii is the sid
    actually oracle is installed on u01 and i am creating database in u02
    but this error is not allowing me to create database but when i try to create database in uo1 the database installed successfully but this is not happening when i try to create database in another mount point u02

    987018 wrote:
    so finally i had solved the problem myself as people like rukbat are very unhelpful in nature here
    all we had to do is we had to change the group of the folder to oracle and oinstall where we are going to create our new database :)Actually he tries to be quite helpful. But sometimes the help you need isn't the help you want.
    "When you need me but do not want me, then I must stay. When you want me but no longer need me, then I have to go." (Nanny McPhee)

  • Error while creating database - Cannot load backend library 'oci.dll'

    Hi all,
    I am newbie to Timesten imdb (in memory database). I do not wish to use oracle rdbms.
    I have installed the Timesten IMDB on Win2003.
    E:\TimesTen\tt70_32\bin>ttVersion.exe
    TimesTen Release 7.0.5.0.0 (32 bit NT) (tt70_32:17000) 2008-04-05T00:54:16Z
    Instance admin: m4sadm
    Instance home directory: e:\TimesTen\tt70_32
    Daemon home directory: e:\TimesTen\tt70_32\srv\info
    While installing, I followed the viewlet at: [http://www.oracle.com/technology/products/timesten/viewlets/tt70_install_win_viewlet_swf.html]
    Now, I am planning to create a database, and so following the viewlet at: [http://www.oracle.com/technology/products/timesten/viewlets/tt70_create_db_win_cc_viewlet_swf.html]
    However, when I give the command (according to the viewlet), I get the following error:
    Command> select * from v$version;
    5102: Cannot load backend library 'oci.dll' for Cache Connect. OS error message '<empty>'.
    The command failed.
    Can anyone provide pointers to resolve this?

    I'm guessing you chose No to the install question about using Cache Connect to Oracle? This would cause certain libraries not to be installed at install time, specifically libraries that would enable you to use TimesTen Cache Connect to cache data from Oracle tables.
    The table "v$version" that you use in your select
    select * from v$version
    only exists on an Oracle RDBMS. It doesn't exist on TimesTen. Moreover the second viewlet you refer to is about using the TimesTen Cache Connect feature to cache tables from Oracle RDBMS. If you're not interested in using Oracle RDBMS, as you say, it would be my assumption that you're also not interested in using the TimesTen Cache Connect feature? So I'm a little confused here about your intentions. Are you interested in using TimesTen as a standalone datastore, or do you want to use it to cache data from tables located in an Oracle RDBMS?
    Thanks.

  • Error while creating database user with first.lastname pattern

    I am trying to user the database user management connector to create oracle database user, but when i use first.lastname pattern as the database username i got an ora-01936
    ERROR,07 Jul 2010 17:06:56,370,[OIMCP.DBUM],oracle.iam.connectors.dbum.common.db.util.DBUtil : executeQuery
    ERROR,07 Jul 2010 17:06:56,370,[OIMCP.DBUM],Error occurred while trying to execute query.
    ERROR,07 Jul 2010 17:06:56,370,[OIMCP.DBUM],Description : ORA-01936: cannot specify owner when creating users or roles
    ERROR,07 Jul 2010 17:06:56,370,[OIMCP.DBUM],java.sql.SQLSyntaxErrorException: ORA-01936: cannot specify owner when creating users or roles
    i figured out that when i use fist.lastname as database username i have to add double quotes, so i can create de user properly , but now the add role or grant task fails with ora-01741.
    ERROR,07 Jul 2010 17:18:01,096,[OIMCP.DBUM],================= Start Stack Trace =======================
    ERROR,07 Jul 2010 17:18:01,096,[OIMCP.DBUM],oracle.iam.connectors.dbum.common.db.util.DBUtil : executeQuery
    ERROR,07 Jul 2010 17:18:01,096,[OIMCP.DBUM],Error occurred while trying to execute query.
    ERROR,07 Jul 2010 17:18:01,096,[OIMCP.DBUM],Description : ORA-01741: illegal zero-length identifier
    ERROR,07 Jul 2010 17:18:01,096,[OIMCP.DBUM],java.sql.SQLSyntaxErrorException: ORA-01741: illegal zero-length identifier

    Did u try adding the roles via sqlplus by running a command ?
    Whats the result
    Thanks
    Suren

  • Error while creating database table

    Hi
    I am creating a table with 2 key fields of length 255 chars each. its giving me error Key field is greater than 780. Please suggest.
    Regards
    Aditya

    Hi,
    Since table key can be max of 255 length,we rarely make use of a single key field of 255,
    so, reduce the length of field.
    Constraints
    All the key fields of a table must be stored together at the beginning of the table. A non-key field may not occur between two key fields.
    A maximum of 16 key fields per table is permitted. The maximum length of the table key is 255.
    If the key length is greater than 120, there are restrictions when transporting table entries. The key can only be specified up to a maximum of 120 places in a transport. If the key is larger than 120, table entries must be transported generically.
    A table may not have more than 249 fields. The sum of all field lengths is limited to 1962 (whereby fields with data type LRAW and LCHR are not counted).
    Fields of types LRAW or LCHR must be at the end of the table. Only one such field is allowed per table. There must also be a field of type INT2 directly in front of such a field. The actual length of the field can be entered there by the database interface.
    Edited by: Sreesudha Gullapalli on Feb 6, 2009 8:19 AM

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • ORA-27123 error while creating database

    I am using dbca to attempt to create a database after installing 9i on a dual-CPU linux box running Red Hat 7.3.
    When I click 'finish' on the database creation wizard, everything appeared to be correct, but I receive an error message indicating that Oracle is unable to attach to shared memory segment.
    Additional information is that the machine has 640MB memory and a 40 GB disk drive.
    It seems like I may have received this during the installation process, but can't be sure. Would that indicate that the installation didn't complete successfully?
    Any help would be appreciated.

    Try this one
    *ORA-27123: unable to attach to shared memory segment.
    I saw this error only in connection with Oracle 9i R2 (9.2.0) installation.
    This error message showed up when the Oracle Database Configuration Assistant was running. I executed the following command to temporarely increase the maximum shared memory size:
    As root:
    # cat /proc/sys/kernel/shmmax
    33554432
    # echo `expr 1024 \* 1024 \* 1024` > /proc/sys/kernel/shmmax
    # cat /proc/sys/kernel/shmmax
    1073741824
    Then click "Retry" for the Oracle Database Configuration Assistant.
    It is recommended to increase the shmmax setting permanently for Oracle. So if you want to increase the maximum shared memory size permanently, add the following line to the /etc/sysctl.conf file:
    kernel.shmmax=1073741824
    I'm not quiet sure yet what the maximum size of the shared memory really should be. Also when you combine the Installation Guide with the Release Notes, you will see that other parameter(s) need to be changed as well. As soon as I have taken a
    closer look at these issues, I will post the results here. But the temporary increase of the maximum shared memory size should keep you going to get Oracle9i (9.2.0) installed.

Maybe you are looking for

  • Adobe Camera Raw Update in Photoshop CC

    Problem is my Lightroom 5 is using ACR 8.4 but when I use Ctrl E to send my photo over toe Photoshop CC for editing in TIFF it always says that the ACR is incompatible as a different version with the ACR in Photoshop being only only on version of 8.3

  • Battery updat problems

    this probbly isnt the right place to do this but here goes. bought this laptop from a friend who lost his charger and cant get it back. when i got this thing it was fully dead so i ordered a 60 watt powersafe adapter or whatever its called. now it wo

  • How do we create a bibliography with pages?

    Hello! I'd like to know if there is a tutorial video to explain how to create a bibliography with either Pages or Words for Mac ? If not, can anyone guide me please? Thank you very much

  • How to set proxy for mail with Gmail account

    Hi, I'm using mail and set up a Gmail pop account. My mac is behind a proxy, say 192.168.0.1:808. I set the system http and https with the above address and can browse the internet with safari. But the mail app cannot receive or send any mails from t

  • My iphone is'nt show in itunes

    i restore my iphone 4 from itunes and aftre 2 min he give me a errore message and then in screen iphone is to conect iphone with itunes but when i put is doesnt show in itunes