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

Similar Messages

  • Manual Standby Database from EE to SE1

    Can I do a Manual Standby Database from Oracle Enterprise edition (EE) to Oracle Standard Edition One (SE1)?

    Hi,
    You can created a manual standby for EE, But you need to purchase a seperate licence for standby database also.
    See oracle licencing manul in oracle documentation.
    Thanks and Regards,
    Satish.G.S

  • How to create database from .sql file

    how to create database from .sql file..?? i put the sintax query in a sql file.. and i want to call it in java code..
    ho to do it..??

    why do you want to do this from java?
    i just don't see the point.
    find your dba and have him/her run it for you

  • 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!

  • 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.

  • Steps to upgrade database from 9i to 10g on 11.5.9

    Hi Guys,
    I hope you are all doing ok.
    please I need to upgrade my database from 9.2.0.6 to
    10G (version 10.2.0.2)
    platform is : 11.5.9
    OS: Solaris
    Please what are the steps to do this and is there a
    documentation or metalink note for this upgrade?
    Thanks in advance

    Follow the latest 10gR2/11i Interoperability Notes (362203.1)
    Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)
    http://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=362203.1
    10.2.0.3 is the latest certified release. On Solaris, there will be many new ORA-00600 errors if you do not apply the following 2 patches (5871314 & 5892355) from this note:
    ORA-600 [22635] and ORA-600 [KOKEIIX1] Reported While Upgrading Or Patching Databases To 10.2.0.3
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=412271.1

  • Can't create database from command prompt

    I am using Oracle 9i over Win XP. I can create new database using OEM wizard without any problem. However, when I try to create new database from command prompt, using following commands, I get an error.
    sqlplus /nolog
    connect / as internal (when I issue this I get message TNS no listener)
    CONNECT SYS/password AS SYSDBA (can't understand how to use this, I don't have password because I've not created the database)
    Can anyone help me how to create new database from command prompt?
    Thanx

    "TNS No Listener" => Start the listener
    To be connected as SYSDBA you dont need a password if your are logged in the DBA group, you just have to :
    PROD_:id
    uid=102(oracle) gid=103(oinstall)
    PROD_:sqlplus "/ as sysdba"
    SQL*Plus: Release 8.1.7.0.0 - Production on Wed Jul 23 11:46:50 2003
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.0 - Production
    SQL> show user
    USER is "SYS"
    SQL>
    Fred

  • How to create database from servlet?

    Hey all,
    I want to create database and store the tables in that database.
    I don't have idea.
    any help..
    the concern is...
    I am using WSAD as a IDE.my backend is Oracle.
    First ,I need to check if user having ms-access in his system.if yes
    then I need to create datbase in that ..and store some tables in that database .
    any sample code snippet helpful for me..

    ok.Thank you.
    I am developing business application.The users enter some data.and I am storing that data into the oracle database.
    for every month...they need to check again that data and validate.
    for that...I want to create MS-access connection and get (oracle ) those data and store in ms-access ,I need to give link for that data to validate them. after that I will update.
    I don't have any idea how to store the data after i am retrieving data from the oracle database.how to generate link to that.
    now...I am trying to create database connection to the MS-ACCESS.I am
    using WSAD 5.1.2 VERSION.and jdk 1.4 version.
    below is my code..for connecting ms-access..
                        System.out.println("start connect");
                        try {
                             Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
                        } catch (Exception e1) {
                             e1.printStackTrace();
                        System.out.println("connected..");
                   Connection con=DriverManager.getConnection("jdbc:odbc:msd","","");
                   Statement stmt=con.createStatement();
                   result=stmt.execute("create table test(col1 char(10))");
                   System.out.println("the success");
    its giving below error. I know that the classpath error.But where I need to give that classpath .I think I need to get driver software from somewhere.please any suggestions......
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.classloader.CompoundClassLoader.findClass(CompoundClassLoader.java(Compiled Code))
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java(Compiled Code))
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code))
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at java.lang.Class.forName1(Native Method)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at java.lang.Class.forName(Class.java(Compiled Code))
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.philips.servlets.DBGenerationServlet.dbCreate(DBGenerationServlet.java:102)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.philips.servlets.DBGenerationServlet.doPost(DBGenerationServlet.java:87)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.philips.servlets.DBGenerationServlet.doGet(DBGenerationServlet.java:73)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [4/7/06 19:32:53:699 SGT] 7f4721ba SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [4/7/06

  • How to create database from scratch using user input

    what I am trying to do is to create database via my java code (using hibernate and my sql) and based on user input.
    The details like the name of table.... or the number of columns in it are all supposed to be determined from user input (only the first time).
    On subsequent run the program should remember the previously created database and hence work with it.
    Can somebody help me through this?
    Suppose I did create it using firing queries from my program then the next problem is how my program would start up next time......?????

    Anuvrat wrote:
    what I am trying to do is to create database via my java code (using hibernate and my sql) and based on user input.
    The details like the name of table.... or the number of columns in it are all supposed to be determined from user input (only the first time).
    On subsequent run the program should remember the previously created database and hence work with it.
    Can somebody help me through this?Presumably because you want to (fun) rather than because you need to (job or project.)
    If the second then don't do it.
    >
    Suppose I did create it using firing queries from my program then the next problem is how my program would start up next time......?????You would start by learning about DDL which is the common name for the languages, which vary by database, used to create the entities that represent the structure of a database. Until you figure out the syntax of that you can't do anything in java.

  • Script to Create Database from an Existing One

    I believe there is way to generate a script for re-creating a database from an existing database. But I forgot how. Anyone can Help. Thanks.

    Hi,
    Run the dbca.bat which in the oracle installer,
    In the last option you will get two options
    1)to create database
    2)create the script
    Here generate the script and run it in sql,
    Before that create the oracleservice and connect to the instance
    and run the script.
    Regards,
    Nirmal

  • How to clone the database from 8i to 10g

    Hi,
    I have oracle 8i(8.1.7.4) on solaris 8 machine with application data.
    and Now I have installed oracle 10g(10.2.0.4) on redhat - 5 on zlinux machine.
    Now I want the same database including all the onject and the data to be available in redhat - 5..
    How shoud I start. Please assist me.
    RB

    user651189 wrote:
    Hi,
    I have oracle 8i(8.1.7.4) on solaris 8 machine with application data.
    and Now I have installed oracle 10g(10.2.0.4) on redhat - 5 on zlinux machine.
    Now I want the same database including all the onject and the data to be available in redhat - 5..
    How shoud I start. Please assist me.As endian formats are different for Solaris 8 and Redhat (solaris has big, but linux has little), then the easiest way is to use exp/imp utiltiy for migration data.
    exp full database from 8i and import it in 10g. You can exp only particular schemas, it really depends, what kind of data you need, how much data You need to import and so on. But exp/imp is the answer how to get data into new database.
    Check metalink note 733205.1.

  • How do I create database from bacpac on new Azure SQL DB Preview (v12)

    Hi, I want to restore a database from a bacpac on the new preview tier, but there is no option in the portal(s) to do it.
    If I try "import data-tier-application" in SSMS I get error: 
    The service objective 'Business' specified is invalid. (Microsoft SQL Server, Error: 40804)
    The only options for edition in ssms is web and business

    The feature is still in preview so I checked if the feature 'Import' is expected to work or not. It's enabled only for few data centers as of today. In the coming days, you should be able to Import as mentioned. If you want this to be confirmed, I suggest
    you contact azure support via "click your account" and "select Contact Microsoft support" on right-top portal page.
    -Karthik (KKB)

  • Utlrp.sql takes very long (8 hours) while upgrade database from 9i to 10g

    1) Follow the note of 369693.1 ; and 362203.1 to upgrade database from 9.2.0.6 to 10.2.0.4 for e-business suite 11i (11.5.10.2)
    2) utlrp.sql takes very long (8 hours), even the job_queue_processes > 20.
    This is not acceptable for the upgrade in production environment which will take a long down time.
    Appreciate that any one can share tips on this, our database is about 400 GB, 4 CPU on production.

    in which our database has about 40,000 packages and 28,000 Virews. With this number of invalid objects, it is ok that utlrp.sql takes this time.
    using parallel worker of 4 for 2 CPUMake this 8 (4 * No. of CPUs).

  • Rename or delete manually created menus from Report and Layout Manager

    Hi All,
    Does anyone know if it's possible to rename or delete a folder manually created during a report import in the Report and Layout manager?
    Kind regards,
    Matt

    Posted the question on the SAP core forum.

  • Not connecting to Oracle Database from Oracle BIEE 10g on Windows 7 machine

    Hi friends,
    I succesfully installed OBIEE 10g on my Windows 7 (Ultimate) machine using the assistance from one of your threads.
    Now I am not able to connect to Oracle 11g database. When I tried to configure through START->Control Panel --> Administrative Tools --> DATA SOURCES (ODBC) ---> ....I am seeing Oracle 11g in System DSN but I am unable to see OBIEE driver in system DSN. After setting manually, I am now seeing OBIEE driver in user DSN. So is all other 32 bitapplications like MS Acess, Excel, etc., are all in user dsn.
    When I open OBIEE Administration tool, I can only see ONLY Analytics Web and nothing else. How do I connect to Oracle database. Please assist me.
    Thanks in advance.
    Din

    Hi,
    Your window os 32bit or 64bit -- Please conform?
    Your Os 64 bit -- http://www.mycabi.net/?p=19 please read this link.
    Your windows os 32 bit :
    Go--> Run--> odbcad32 follow the below step
    In ODBC Administration, on the System DSN tab add a new connection
    1. step : Data Source: "Oracle BI Server" -->"Next"-->Name: "AnalyticsWeb"-->Server: "local"-->(everything else unchecked)-->"Next"-->Give the username for the BI Server-->"Administrator" -->(I think the password can main blanc),Port: "9703 -->(everything else unchecked)-->"Next"-->(everything unchecked)-->"Finish"
    When I tried to configure through START->Control Panel --> Administrative Tools --> DATA SOURCES (ODBC) ---> ....I am seeing Oracle 11g in System DSN but I am unable to see OBIEE driver in system DSN
    A. I don't no why your creating ODBC connection.
    Note: Open your rpd with AnalyticsWeb and give me useranme and password --> go to physical layer select connection pool and give all credntails here.
    http://gerardnico.com/wiki/dat/obiee/ociv -- please refer this link
    Datasource : Your dbname (ORCL,)
    username: your schema name
    Password: your schema password.
    Hope it help's
    Thanks,
    Satya

Maybe you are looking for

  • How can I get passallurlparams to work for url portlets

    I have passallurlparams set to true in my provider.xml and am using URLProviderDefinition. Passing works with DefaultProviderDefinition portlets, but not with URLProviderDefinition portlets. Does anyone have any ideas? Thanks

  • Playing analog audio out to sonos connect from Apple TV

    We have Apple TV playing to our stereo via HDMI, and we have been unsuccessful in getting audio to our Sonos Connect Amp.  We are using the Optical output from the Apple TV and playing into a DAC which converts audio to Analog for the Stereo inputs o

  • Refresh selectOneChoice ListBinding Conditionally

    Hi, I am again asking for help. It stuck me for a while now. Thanks in advance for your inputs. I want 3 list boxes conditionally refreshed depending on a data input. So a data input triggers the refresh of list binding of the dropdown list. The inpu

  • Sculpture morph pad-How do I get the red ball?

    I just worked my way thru the Sculpture tutorial, creating a pad. Everything works except that I'm not getting the red ball in the morph pad. I do see it on other presets, but not with the sound I made from the default patch. How do I get the red bal

  • How to Trasport texts in se43

    Hello, I was asked to add customer folders & transactions to area menu S000. In order to do that I choose to change  the menu (not extend it).  I've added my own area menu and translated it. In dev everything looked fine , but when I transported the