Problem with creating oracle database

I am trying to create a new database in one of customers computers, using Database Administration Assistant. The wizard goes until "Adding Oracle Text" then I get an error message without any description. Then jump out of wizard quickly with no other option.
I am getting mad of it because the deadline is coming and I don't know what to do.
PLEASE HELP ME SOON.
Mehran

Hello,
If DBCA doesnt work you can try to create manually Here are the steps to create manual db on Windows.
## Manual DB creation on Windows
C:\>set ORACLE_SID=JUNK
C:\>oradim -NEW -SID JUNK -STARTMODE auto -SYSPWD testing123 -PFILE d:\oracle\admin\JUNK\pfile\init.ora
Instance created.
C:\>sqlplus sys/testing123 as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Feb 24 14:25:29 2006
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup nomount pfile=d:\oracle\admin\JUNK\pfile\init.ora
ORACLE instance started.
Total System Global Area 293601280 bytes
Fixed Size 1248624 bytes
Variable Size 92275344 bytes
Database Buffers 197132288 bytes
Redo Buffers 2945024 bytes
SQL> create database JUNK
2 maxlogfiles 32
3 maxlogmembers 3
4 maxloghistory 1
5 maxdatafiles 254
6 maxinstances 1
7 character set WE8ISO8859P1
8 datafile 'e:\oradata\JUNK\system01.dbf' size 200m reuse autoextend on next 10240k
9 sysaux datafile 'e:\oradata\JUNK\sysaux01.dbf' size 100m reuse
10 undo tablespace undotbs1 datafile 'e:\oradata\JUNK\undotbs01.dbf' size 100m
11 logfile
12 group 1 (
13 'e:\oradata\JUNK\redo01a.log',
14 'e:\oradata\JUNK\redo01b.log'
15 ) size 100m reuse,
16 group 2 (
17 'e:\oradata\JUNK\redo02a.log',
18 'e:\oradata\JUNK\redo02b.log'
19 ) size 100m reuse,
20 group 3 (
21 'e:\oradata\JUNK\redo03a.log',
22 'e:\oradata\JUNK\redo03b.log'
23 ) size 100m reuse
24 controlfile reuse;
Database created.
# Run Catalog/Catproc as sysdba
@D:\oracle\oracle10g\RDBMS\ADMIN\catalog.sql
@D:\oracle\oracle10g\RDBMS\ADMIN\catproc.sql
# Run Pupbld.sql as system
conn system/manager
@D:\oracle\oracle10g\sqlplus\admin\pupbld.sql
-Sri

Similar Messages

  • Strange problem with an Oracle database link to SQL Server

    Hi gurus,
    Please help me on this problem.
    We have an Oracle 10R2 database link to a SQL Server 2000 database. I can select count(*) from The_SQL_Server_Table@myOracleLink, and I can describe The_SQL_Server_Table@myOracleLink, but I cannot select Column1 from The_SQL_Server_Table@myOracleLink! I am getting the ORA-00904: "COLUMN1": invalid identifier error.
    Could anyone tell me what is wrong here? By the way, the same user name can select all the columns in The_SQL_Server_Table through ODBC from the client app. But I need the DB link to work with some Oracle stored functions.
    Thank you!
    Ben

    myora9i wrote:
    Hi gurus,
    Please help me on this problem.
    We have an Oracle 10R2 database link to a SQL Server 2000 database. I can select count(*) from The_SQL_Server_Table@myOracleLink, and I can describe The_SQL_Server_Table@myOracleLink, but I cannot select Column1 from The_SQL_Server_Table@myOracleLink! I am getting the ORA-00904: "COLUMN1": invalid identifier error.
    Could anyone tell me what is wrong here? By the way, the same user name can select all the columns in The_SQL_Server_Table through ODBC from the client app. But I need the DB link to work with some Oracle stored functions.
    Thank you!
    Bennotice "COLUMN1" is different from "Column1"
    CaSe MaTTerS!

  • Problem with CREATING NEW DATABASE

    Please help...
    When i am creating a new database by using DBCA, i got the error like this " *Cannot create directory"C:\oracle\product\10.2.0\db_2\cfgtoollogs\dbca\COLLEGE* ".
    Edited by: D.S.Reddy on Aug 4, 2012 5:34 PM

    Pl post OS and database versions, along with the last 100 lines from the dbca log file. Does this directory exist ? Are you using an account with administrator privileges ?
    HTH
    Srini

  • Oracle 11g problem with creating shared memory segments

    Hi, i'm having some problems with the oracle listener, when i'm trying to start it or reload it I get the follow error massages:
    TNS-01114: LSNRCTL could not perform local OS authentication with the listener
    TNS-01115: OS error 28 creating shared memory segment of 129 bytes with key 2969090421
    My system is a: SunOS db1-oracle 5.10 Generic_144489-06 i86pc i386 i86pc (Total 64GB RAM)
    Current SGA is set to:
    Total System Global Area 5344731136 bytes
    Fixed Size 2233536 bytes
    Variable Size 2919238464 bytes
    Database Buffers 2399141888 bytes
    Redo Buffers 24117248 bytes
    prctl -n project.max-shm-memory -i process $$
    process: 21735: -bash
    NAME PRIVILEGE VALUE FLAG ACTION RECIPIENT
    project.max-shm-memory
    privileged 64.0GB - deny
    I've seen that a solution might be "Make sure that system resources like shared memory and heap memory are available for LSNRCTL tool to execute properly."
    I'm not exactly sure how to check that there is enough resources?
    I've also seen a solution stating:
    "Try adjusting the system-imposed limits such as the maximum number of allowed shared memory segments, or their maximum and minimum sizes. In other cases, resources need to be freed up first for the operation to succeed."
    I've tried to modify the "max-sem-ids" parameter and set it to recommended 256 without any success and i've kind of run out of options what the error can be?
    /Regards

    I see, I do have the max-shm-ids quite high already so it shouldn't be a problem?
    user.oracle:100::oracle::process.max-file-descriptor=(priv,4096,deny);
    process.max-stack-size=(priv,33554432,deny);
    project.max-shm-memory=(priv,68719476736,deny)

  • Problem with creating virtual column

    Hello,
    We've got problem with creating virtual column.
    There is table R_T that contain columns R_ID and L_ID, we would like to create virtual column RL_ID that contains sth like 'R_ID-L_ID' (R_ID, L_ID and RL_ID are varchars).
    According documentation we've tried:
    alter table R_T add column (RL_ID varchar2(60) generated always as (R_ID||'-'||L_ID) VIRTUAL)
    but getting
    ORA-00904: : invalid identifier
    00904.00000 - "%s: invalid identifier"
    Have no idea where is the problem.
    Table, columns names are little different but contains only capital letters A - Z and underscore "_".
    Has anyone idea?
    Thanks a lot.

    Strange...
    This does work for me :
    Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
    Connected as dev
    SQL>
    SQL> create table r_t (
      2   r_id varchar2(25),
      3   l_id varchar2(25)
      4  );
    Table created
    SQL> insert into r_t (r_id, l_id) values('R','L');
    1 row inserted
    SQL> alter table r_t add (rl_id varchar2(60) generated always as (r_id||'-'||l_id) virtual);
    Table altered
    SQL> select * from r_t;
    R_ID                      L_ID                      RL_ID
    R                         L                         R-L
    SQL>

  • There is a problem with the Outlook database.  Your database could not be rebuilt. [-18000]

    For home use, I recently changed from Windows PC to MacBook Air.  I have an iPhone 4 which I synched without problem to the PC.  Since I have used Outlook for years on Windows and trusted advisors assured me Microsoft Office on the Mac is the same as Microsoft Office on Windows, I decided to continue using Microsoft Office.  Because I cannot get my Outlook calendar to sync reliably to iCal / iPhone and because I have found a small but meaningful number of features I use daily in Outlook Windows do not work on Outlook Mac, I have never been in so much pain!
    The latest problem is Outlook does not complete startup.  I get this error:
    There is a problem with the Outlook database.  To use the database, you must rebuild it using the Database Utility.
    I run the utility but it never completes successfully. 
    Step 1 of 5: Scannning...
    Step 2 of 5: Verifying...
    Step 3 of 5: Copying records to new database...
    Step 4 of 5: Recovering data...
    Your database could not be rebuilt. [-18000]
    I have found many articles about this problem but they all seem to assume that you can successfully start Outlook then you rebuild the database to fix data corruption in Outlook.
    What if I Outlook never completes startup?

    Here are the steps that solved the Outlook data corruption problem.
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macoutlook/your-datab ase-could-not-be-rebuilt/5caff467-3ab2-464a-9fe6-00ad913b5f2e
    The question was:  Your database could not be rebuilt
    The key is to create a new Outlook Identity, remove the database file, then copy your data records into the new identity and use the Outlook database utility to rebuild the database.
    It's a wonderful feeling to see Outlook start up successfully after a few days of downtime!

  • Problem with creating new user in portal = portlet is not visible

    Hi,
    I've got a problem with creating new users in portal. In the Administer tab of the builder is the user portlet not visible.
    How can I make this portlet visible?
    Please Help
    thank you...
    Gilbert

    Hi..my problem slightly similar.
    I created one new user, and didn't select anything from "Public Groups Assignment" and "Privilege Assignment" for him.
    I expect the user will be a public user.
    But, when he try to logged in the portal,
    He cannot see all the PORTLETS related to database values..
    All he can see just LINKS -that all in my portal right now beside the report from database that the user cannot see :)
    So, what did i do wrong?
    Plz Advise, and thanks.

  • Problem with create standby by rman oracle9.2

    I have a problem: until create standby database by rman i have error:
    RMAN-03015: error occurred in stored script opomc_clone
    RMAN-03002: failure of Duplicate Db command at 02/18/2010 12:26:34
    RMAN-03015: error occurred in stored script Memory Script
    ORA-19587:
    ORA-27091: skgfqio:
    ORA-27072: skgfdisp:
    SVR4 Error: 5: I/O error
    Additional information: 349248
    The scripts are ok becouse they work earlier.
    The main database was a standby but now is primary.
    I create new standby base on remote server
    I have in bdump strange error for me until create rman copy for standby:
    Clearing standby activation ID 1004670785 (0x3be20f41)
    The primary database controlfile was created using the
    'MAXLOGFILES 5' clause.
    The resulting standby controlfile will not have enough
    available logfile entries to support an adequate number
    of standby redo logfiles. Consider re-creating the
    primary controlfile using 'MAXLOGFILES 8' (or larger).
    Use the following SQL commands on the standby database to create
    standby redo logfiles that match the primary database:
    ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE 409600000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE 409600000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE 409600000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE 409600000;
    Any suggestions?
    Sorry for my english :)
    Edited by: user12044451 on 2010-02-18 03:56

    can you use like this
    BACKUP DATABASE INCLUDE CURRENT CONTROLFILE FOR STANDBY PLUS ARCHIVELOG;startup nomount;
    duplicate target database for standby nofilenamecheck;
    in detail check
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmstand.htm#1000921

  • Problem with install oracle on OEL5.3 linux

    Hello,
    Have some strange problem with oracle enterpise linux 5.3 32 bit, during install Oracle 10gR2 got link errors,
    after founded what is problem with linking oracle executables:
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    relink oracle
    /usr/bin/ld: cannot find -lskgxn2
    all depended rpms and parameters are set, looks like missing some library, but cannot recognise with one.
    Have somebody spoted souch error ?

    The zipfile on technet has a checksum:
    Oracle Database 11g Release 1 (11.1.0.6.0) for Linux x86
              linux_11gR1_database_1013.zip (1,844,527,800 bytes) (cksum - 1044354138)
    When the zipfile is downloaded, you can check the zipfile on linux with the cksum command, it should be exactly the same as listed on technet, otherwise the zipfile is corrupted.

  • Problem with making a database link.

    Hello All
    I got a problem with making a database link.
    When I execute this query
    CREATE PUBLIC DATABASE LINK DBNAME
    CONNECT TO database IDENTIFIED BY name
    USING 'DBNAME.europe.company.com';
    I am using other names because its private information
    But when I look at the table dba_db_links I see this
    OWNER | DB_LINK | USERNAME |HOST
    PUBLIC| DBNAME.europe.company.com| name| DBNAME.europe.company.com
    So the DB_Link name is changed. And this causes a problem with my asp website. I get the fault message
    ORA-02085: database link DBNAME.europe.company.com connects to DBNAME
    Cause: a database link connected to a database with a different name. The connection is rejected.
    The global_names = true and I prefer to keep it that way.
    So does anyone knows what is wrong about my Query or how I can change the DB_Link name.
    Thanks for the support,
    Remco

    Thanks for the help Mohit
    But thats whats I was doing.
    The query in the first post is the same as what you are posting.
    But by an (for me) unknown reason the database converts DBNAME to DBNAME.europe.company.com

  • Problem with updating oracle DB with java date thru resultset.updateDate()

    URGENT Please
    I am facing problem in updating oracle database with java date through resultset.updateDate() method. Can anybody help me please
    following code is saving wrong date value (dec 4, 2006 instead of java date jul 4, 2007) in database:
    ResultSet rs = stmt.executeQuery("SELECT myDate FROM myTable");
    rs.first();
    SimpleDateFormat sqlFormat = new SimpleDateFormat("yyyy-mm-dd");
    java.util.Date myDate = new Date();
    rs.updateDate("myDate", java.sql.Date.valueOf(sqlFormat.format(myDate)));
    rs.updateRow();

    I believe you should use yyyy-MM-dd instead of yyyy-mm-dd. I think MM stands for month while mm stands for minute as per
    http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    (If this works, after spending so much of your time trying to solve it, don't hit yourself in the head too hard. I find running out of the room laughing hysterically feels better).
    Here is a more standard(?) way of updating:
    String sqlStatement=
    "update myTable set myDate=? where personID=?"
    PreparedStatement p1= connection.prepareStatement(sqlStatement);
    p1.setDate(1,new java.sqlDate());
    p1.setInt(2, personID);
    p1.executeUpdate();

  • The Critical Problems for Creating Standby Database

    The Critical Problems for Creating Standby Database:(I want to create a physical standby database on the same system of the primary database)
    1. Should I copy all the backup datafiles, standby controlfile and password file to a same directory before the first time to mount the standby database?
    2. Before mounting the standby database, Should I change the datafile's name to a new one in the standby controlfile? How to change them?
    3. When issuing the command to mount the standby database, should I specify the controlfile's name.(using which controlfile to mount)
    These problems are not clearly secified in Oracle documentations.

    Can you point us to the Windows specific documentation you refer to?
    The parameter DB_FILE_NAME_CONVERT should take care of the new mapping for your datafiles (and LOG_FILE_NAME_CONVERT for logs), so you should be able to put them where you want and use the parameter to point Oracle to the correct location. You should not need to change the name in the controlfile.
    Place your standby controlfiles where you have the control files defined in your parameter file and Oracle should recofgnise that it is a standby db. You should not need to specify which controlfiles to use (if this is even possible), your CONTROL_FILES init parameter points to them.
    Not sure about the password file....my instances are on separate boxes and the password file has the same name on both primary and standby.

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • Problem with create universe on Business Objects XI 3.1 base on SAP Query

    Hello,
    I have a problem with create universe on Business Objects XI 3.1 base on SAP Query.
    The problem is hierarchy. Massage on Busines Objects is :
       OWBS_ELEMT__ISTKOSZT(cube ICPC01/BEX_ICOC01):Exception condition  "HIERARCHY NOT FOUND" raised.(WIS 10901) 
    Query in BEX run OK.
    Best regards.
    Ela.

    Hello,
    Thanks for response.
    When I run BEX QUERY, all works OK.
    All hierarchies was created and activated  on system BW.
    This situation appears after upgrade BW to SAP NetWeaver 7.3.
    Before upgrade I created universe without any problems.
    Regards Ela

  • There is a problem with the Office database - Office 2011

    Good day!
    I recently installed Office 2011 for Mac and i'm getting the following error message: There is a problem with the Office database. Excel comes up with the error message but i am able to get past the error and open the application, but it freezes when I try on Word. I have to force quit the application to close it completely.
    I've searched online and tried all the suggestions - even those from the discussion board: Problem with Office Mac 2011 database. I've completely removed traces of the software : http://support2.microsoft.com/kb/2398768 and reinstalled using the disc,  as well as followed suggestions to rebuild the database. I also installed the latest Office update: http://www.microsoft.com/en-us/download/details.aspx?id=44026 from Excel (As it was the only one I know of that's functioning after the error message) but to no avail.
    Here are the tech specs:
    OS X
    version 10.9.5
    Office 2011 for Mac
    Version 14.4.4 (140807)
    Update: 14.4.4
    Hope you guys can point me to the right direction. Any suggestions are greatly appreciated.

    Best ask question on one of the Microsoft boards.
    Could try NeoOffice.
    https://www.neooffice.org/neojava/en/index.php

Maybe you are looking for

  • Can I install the latest version of FF on Windows 7 Starter

    Can I upgrade version 6.0.2 to the current version - 22 I believe, on a netbook running Win 7 starter? I have an Atom N450 processor @1.66 gHz and 2 MB RAM with about 40 GB left on my HD. Can I do the upgrade with that configuration? Will it be faste

  • Stop Hardware checking for OS X Update?

    I have a ~2007 Macbook. The ram and HDD have been upgraded to 4gb / 500gb. My mac meets all the physical system requirements for OSX Yosemite, though fails to download / install due to its year of release. Is there a way to change the year of release

  • Half day Loss of pay

    Hi Present LOP (Loss of pay) is on calender day.if an employee on leave say for example from friday to monday his total LOP day are 4. /801 is configured on TKAU(absence in calender dasy) and doing right. but when it comes to half day LOP which is co

  • Problems with Safari 5.1

    Yesterday I installed Safari 5.1 on my PC (With windows vista), and now I have tried to restart my PC, to repair and after that to re-install Safari both the 5.1 version and the older version, but nothing seems to work?!? The Safari browser just open

  • How to subscribe to Cozi calendar

    I'm new to smartphones.  I'm trying to subscribe to the Cozi calendar.  When my iphone asks for the server (myserver.com/cal.ics), what do I put in?