BUG: Oracle BPR Site Manager- Create New Oracle Database

There is pop up while installing site manager which is blank when i try to create a new database for OBPA repository site manager. it pops up after choosing the password and the database folder. and as soon as i hit next button the pop up comes up which is blank ????
any idea whats thjis pop up or error is all about ?
Message was edited by:
user623280
Message was edited by:
user623280

Hi,
i am not too sure if this will help you, but here is my guess.
Before creating a database in BPA, you gotta execute a procedure (schema_aris_70.new_schema()) in the backend database, please check if you have done this.
check out admininstration guide for more details.
Regards
Ashish

Similar Messages

  • Create new oracle database with JAVA

    Hi!
    I would appreciated it if you could help me to solve a problem that i have.
    I am trying to create a new oracle database by a JAVA 1.4.2 application. I am using the scripts that Oracle 10.g supplies during the creation of a new database from the server (Generate Database Creation Scripts) with the appropriate changes, generated by a java application. Unfortunately, i am unable to connect with the database and the listener. Is there any other way to create a new database by java and how can i solve my current problem with the oracle scripts?
    Thank you.

    A) To create a new schema, you need to be connected as a user that has create schema privilege, or as tyhe user who is to own the schema (remembering that the user has appropriate create privs, as seen in the GRANT command in the SQL Reference manual). Not an issue at all, I think, if you coordinate this with your DBA. Discussed very well in the Administrator's manual.
    B) Alternately, you could create a complete copy of the schema, including all desired objects (tables, views, etc.) in a separate database and simply export the user and schema. Then simply invoke the OS-based import command (imp) to load that entire thing into the target database.
    C) To create a new database, there are 3 simple steps ...
    1) create the appropriate initialization parameter file
    the init{sid}.ora file should be placed in the $ORACLE_HOME/dbs or %ORACLE_HOME%\database directory. (I recommend you do not attempt to create the spfile.) Of critical interest will be setting the block size information, the control file parameters, and using the appropriate memory management parameters, based on the version of the software you will be using to create the database instance.
    2) start an empty instance, pointing to the parameter file
    This will be an OS specific call, and will require that you have the correct OS environment set up as well as access to the ORACLE_HOME which will provide the software that you will invoke. In *nix you will need to call the sqlplus command with sysdba provs and in Windows you will need to call oradim to initialize this as a service.
    3) run the SQL create database command
    You might want to use the dbca to create a template of the create database command, or look in the SQL Reference manual for the variations on the command. Of critical interest will be initializing the redo logs as well as the system, sysaux (if needed), temp and undo tablespaces after which you can set up the regular tablespaces, users and schemas. I highly recommend that you have redundant copies of the control files on separate drives.
    You may want to review the online Concepts manual and the Adminstration Guide for some of the specifics to your needs, but I think I've covered the basics.
    Remember that ideally you will only have one database instantiated on any given server as the memory and CPU overhead of each instance is significant.
    Good luck.

  • Create new oracle database

    I ve installed Oracle 10g Express Edition on mi PC, but I dont know how to create a database, also I m using SQL DEVELOPER, but I dont find any "Create DataBase" option, or I have to do it through sql sentences??
    Another question is : where can I get databases demo (like Northwin and Adventure Works in Sql Server)???
    Joseph

    You posted this in the wrong forum. This is the Oracle Application Express forum not the Oracle Database 10g Express Edition forum. Try posting in: Oracle Database Express Edition (XE)
    Mike

  • BUG:  Advanced Actions duplicated when creating NEW PROJECTS FROM TEMPLATE using Adobe Captivate 8.

    Need:  CREATE NEW PROJECTS FROM TEMPLATE using Adobe Captivate 8. 
    Problem:  NEW PROJECT (.cptx) duplicates the Advanced Actions originally configured within TEMPLATE FILE (.cpt.).
    For example: Template file (.cptl) advanced action "_initializeModule" gets duplicated as "_initializeModule1", "_initializeModule2", "_initializeModule3" within NEW PROJECT.  FYI, the original "_initializeModule" advanced action still appears.
    MAJOR BUG, what the heck is going on?!?!!!  Planning to deploy this template file to use for multiple courses with multiple users, this WILL cause epic confusion across the board.

    Similar problem, think they are working on it as well: when dragging a shared action from an external library to a slide or object event, and that action is using a parameter that was already created for another shared action, there will be a new parameter created which really screws up the shared action contrary to this problem. Tip: for the moment do not drag shared actions from an external library immediately to an event, but drag them first to the Library: Reuse Shared Actions in other Projects - Captivate 7 vs. 8 - Captivate blog

  • Looking to use DG Broker to create new standby database

    Hello,
    I'm looking for a good document that can help me to create another standby database on a new server.
    I'm running Oracle 11.2 EE on Solaris 10.
    We already have one standby database, but now, I want to create another standby database on another server, which ultimately I will make primary and then replace and destroy our current primary/standby databases.
    Also, just for the heck of it, I tried to look in our DB Console, and the "Add standby database" is grey'd out.
    Is this because I am only using DB Console, and not Grid?
    But if that were the case, why would the option even be in DB Console, or perhaps is there a lmiitation to the number of standby databases you can manage with DB Console?

    1) Do not confuse Data Guard Broker and Enterprise Manager: DG Broker is mainly a background process (DMON) that can be controlled by EM or with DGMGRL on the command line
    2) Only the Grid Control flavor of EM can manage Data Guard Configurations - regardless of the number of Primary or Standby Databases
    3) DGMGRL cannot create a new Standby Database - Grid Control can
    Kind regards
    Uwe Hesse
    "Don't believe it, test it!"
    http://uhesse.com

  • How to create new 10gR2 database w/o AWR installed.

    Due to Partitioning licensing restrictions, I do not wish to create new databases with AWR installed but am not able to find a way to turn off EM AWR. Those WRH$_% tables are created as partitioned.
    As is logminer tables.
    Advice is appreciated.

    Due to Partitioning licensing restrictions, I do not
    wish to create new databases with AWR installed but
    am not able to find a way to turn off EM AWR. Those
    WRH$_% tables are created as partitioned.
    As is logminer tables.
    Advice is appreciated.internal use (by Oracle) of partitioning is license free. you have to license partitioning if you use it for your data.
    regards,
    -ap

  • Create new MySQL Database with SQL

    I have a simple question, :-)
    how can I create a new MySQL Database with SQL - (JDBC)
    can you show me a code example?
    tank you ...

    okay ... but how do I use the URL ??? that's the problem
    I tried this:
    Connection con   = null;
            Vector vct       = new Vector();
            try{
                String drv = "org.gjt.mm.mysql.Driver";
                String url = "jdbc:mysql://111.222.333.444:3306";
                String name = "myname";
                String pass = "mypass";
                Class.forName(drv);
                con = DriverManager.getConnection(url,name,pass);
                String statement = "CREATE DATABASE TestDB_Don1";
                Statement stm = con.createStatement();
                stm.execute(statement);
                stm.close();
                con.close();                         
            catch(Exception e){ e.printStackTrace(); }but it doesen't work ............. what is wrong ?

  • Create New Test Database with all permissions

    Hi all,
    We have a Oracle9i database running on Linux platform . Currently 40 users working on it. Now i want to create another test database with giving all permissions to it. Give your valuable suggestions.
    Regards,
    Sudarshanam

    The answer to your question as I understand now would be,
    grant DBA to <user>;
    But I think you mean something else. Please be more clear

  • Oracle 10g enterprise manager create directory

    Hi,
    I am new to using Oracle 10g on Linux and struggle with creating a new directory using the Enterprise Manager "wizard".
    I go to Database Instance > Directory Objects > Create Directory objects
    and try it with \home\oracle , then test the file system it says directory not available.
    pressing OK and continueing with my data dump does not work because I get the error "The directory does not exist"
    I wonder why it has not been created?
    moreover how do I delete the directory objects. I cant find a delete button using the enterprise manager browser ui ?
    Edited by: metalray on 10-Jul-2009 09:12

    metalray wrote:
    Hi EdStevens,
    thanks for your reply.
    I have heard this "read a book" a thousand times and gues what. I am
    reading a book and this is exercise 9.2 and it tells me (as part
    of the ultimate learning path) to use the enterprise manager
    after I have created the directory with sqlplus.
    I also tried the intuitiv DROP DIRECTORY in sqlplus as well but...
    the directory does apparently not exist (altough I can see it clearly there in the list).That could be an ownership issue. Who does the directory belong to? who are you logged on as?
    >
    >
    >
    Hence I came to the conlusion to create a directory using the good old enterprise manager and it did not work too well either.
    whatever I type in there I get file system does not exist. I guess I do something wrong with the PATH written into the textbox right?
    [directory creation does not work|http://metalray.redio.de/dokumente/linux01.jpg]
    Who are you connecting as when you log on to OEM? Try logging on with sysdba authority and you should see some more options available on the directory management page.
    >
    >
    @DMBS direct
    what I cant see is a delete button....
    [no delete button|http://metalray.redio.de/dokumente/linux02.jpg]

  • Created new Oracle db  Now my existing TNS connections dropped?

    Hi, I created a new database using the Oracle8i Database Configuration Assistant. I had previously configured my Net8 to connect to my starter database. After I created my new database my existing connections to my starter database stopped. Can anyone help?
    Andrew
    <!--- TNSNAMES.ORA --->
    # C:\ORACLE\ORA81\NETWORK\ADMIN\TNSNAMES.ORA Configuration File:C:\Oracle\Ora81\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle Net8 Assistant
    ORACLE2 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = PRODUCTIONS)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oracle2.productions2)
    (INSTANCE_NAME = startdb2)
    )

    fixed it... moved the tns entry higher in the file.

  • Create New Oracle R12 Server with multi nodes and migrate the Production Data on it ?

    Good Day,
    I have New Task and I don't know how to start.
    Am working on Oracle Application 12.1.3
    And Database 11.2.3
    OS Redhat Linux 6.1
    My Production Server have the database and the application on the same Server (Single node),
    I want to create another 2 Servers with same Operating system to separate the application and the Database to be each one on separate server (Multi Nodes),
    And Migrate the Production Server Data on It?
    And i need to know how many days it will takes because we are live now ?
    Regards 

    Install the OS on the new servers -- Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (Doc ID 761566.1)
    Use Rapid Clone to move the application/database to the new server.
    Rapid Clone Documentation Resources For Release 11i and 12 (Doc ID 799735.1)
    Cloning Oracle Applications Release 12 with Rapid Clone (Doc ID 406982.1)
    For the duration, it depends on the size of your application/database and how long it takes to copy the files.
    Thanks,
    Hussein

  • Creating New Oracle Database on Windows 2000 server

    These are the steps I am going to take. Are these correct?
    1.) Set the Environment Variable. Do you need to use Oradim or is "SET ORACLE_SID=EGWASDEV" OK?
    2.) Create a INIT.ORA file placed in a separate directory from EGOVDB.
    3.) Create DATABASE Script. (See Attached)
    4.) Create Tablespace Script. (See Attached)
    5.) svrmgr1
    6.) Connect Internal
    7.) startup nomount pfile="E:\oracle\admin\egwasdev\pfile\initegwasdb.ora"
    8.) Run CREATE DATABASE Script
    9.) Connect Internal
    10.) Run Tablespace script
    11.) Run E:\oracle\ora81\Rdbms\admin\catalog.sql
    12.) Run E:\oracle\ora81\Rdbms\admin\catproc.sql
    13.) Change Password for SYS
    14.) Change Password for System.
    15.) Modify Listener
    16.) Modify Tnsnames
    17.) Setup Dbstart (to automate)

    When I connect internal I get a TNS:protocol adapter error. If I reference the SID of the existing database then I will be logged into that database. I thought I shouldn't be connected to any database in order to.....
    startup nomount pfile="E:\oracle\admin\egwasdev\pfile\initegwasdb.ora"
    How should I connect and what do I do to avoid the TNS errror?

  • Training and event management - create new type of attendee

    Hi all,
    For training and event management, I have to create a new type of attendee besides sap existing attendee type such as company, contact person, customer, external person and so on.
    Via IMG -> Training and event management -> basic settings -> object type modeling enhancement -> object type -> define object types, then how can I define OrgObj Type for new object type I want to create?
    Thanks & regards,
    WCC

    S_AHR_61016216 - Cancellations per Attendee , i think there is no standard report for cencelation of business events, type and group.
    for cancellations per attendee reports is available in the system.
    good luck
    Devi

  • Why does the site manager create c:\ folders for files that don't belong to the site via FTP?

    Hello everyone,
    now I've been using Dreamweaver since Ultradev 1.0 and I have just recently upgraded to CS 5.5 Web Edition. Before that I used CS3. I've allways been very satisfied with Macromedia and Adobe products until now
    Now I don't know whats happened in the last few years but I am getting the impression that the quality of Dreamweaver used to be alot more stable.
    Developing for more than half my life I understand that bugs are usual and that not everything can be cared for, but to be quite honest I also know that there are bugs that just should not happen when you ship a product.
    On the other hand I do love some of the enhancements that have come with 5.5, for example the Javascript Framework integration and jQuery code hinting features but what I really cannot understand is why the heck is Dreamweaver automatically uploading files that do not belong to the currently open site to the ftp server? I cannot think of any scenario in which this would be appropriate behaviour. I'd understand it if the files somehow contained links (CSS, JS, PHP, etc.) to the currently open site, but they don't! Dreamweaver simply sets out, every now and again, to creating a totally "dumb" folder structure on my ftp servers when I open a file from outside of the site - which I do very often to copy code I used in other projects.
    It's just frustrating having to cleanup the ftp servers because Dreamweaver created folders like this "c:\localhost_root_folder\client_folder\client_project_folder\www\.... and so on", and saves a file in there that has nothing to do with the currently open site.
    Now I've looked for settings that would supress this behaviour but I could'nt find any.
    Also, I really don't want to stop using the automatic upload function because it speeds up development time significantly.
    Does anyone know how to work around this issue, or even better, does anyone know why this behaviour is happening and what it's purpose is?
    Thanks in advance.
    David

    ... what I really cannot understand is why the heck is Dreamweaver automatically uploading files that do not belong to the currently open site to the ftp server? I cannot think of any scenario in which this would be appropriate behaviour. I'd understand it if the files somehow contained links (CSS, JS, PHP, etc.) to the currently open site, but they don't! Dreamweaver simply sets out, every now and again, to creating a totally "dumb" folder structure on my ftp servers when I open a file from outside of the site - which I do very often to copy code I used in other projects.
    Dreamweaver doesn't "automatically upload" anything unless you have it set to on save. This is a bad practice if you aren't 100% sure of what you're doing. You may see it as a time saver, but if you have to go back two or three times and clean everything up, it isn't. Additionally, you select what is uploaded or not uploaded. If you choose to upload the entire root folder every time, then Dreamweaver will upload everything inside it... not automatically, but because you chose it.
    As to the "dumb folder structure", when you define a site, YOU and YOU ALONE define the folder structure. If you are working in multiple sites at once (bad practice unless your are extremely meticulous about details) odds are you will sooner or later save a file from one site, with another site open in the Files Panel and Dreamweaver will save the file to the open site, not the one you opened it from (see why it's a bad practice to do this?).
    It's just frustrating having to cleanup the ftp servers because
    Dreamweaver created folders like this
    "c:\localhost_root_folder\client_folder\client_project_folder\www\... .
    and so on", and saves a file in there that has nothing to do with the
    currently open site.
    It reads like you have defined a testing server and are using it when  you put files. C:\localhost is a testing server protocol. If you are  testing files and then attempt to put files from the testing server  instead of the root folder, they will have the filepath from the testing  server and not from the root folder file structure. Again a bad  practice unless you are meticulous about details and remember to switch  back to the root folder from the testing server panel BEFORE you put  files.

  • Only oracle object tables to create object oriented database

    Can we use only oracle object tables for a database and if it can be done, can we create pure object oriented database with oracle. How it can be done?
    help..
    thank you..

    PriyashanthaHP wrote:
    I have no my own definitions for OODB. There are lot in the internet. I'm asking, can't we use that OODB concept with oracle. And gave you an example with 'employee' and 'department' tables. I asked that can we create object tables for these two tables keeping their relationship
    thank you..
    There is no way to answer that without knowing what YOU mean by OODB.
    See the database concepts doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28318/schema.htm
    Nested Tables
    You can create a table with a column whose datatype is another table. That is, tables can be nested within other tables as values in a column. The Oracle database server stores nested table data out of line from the rows of the parent table, using a store table that is associated with the nested table column. The parent row contains a unique set identifier value associated with a nested table instance.
      Oracle Database Object-Relational Developer's Guidefor further information on nested tables
      Oracle Database Advanced Application Developer's Guide

Maybe you are looking for

  • Using user-defined transport recording routine with table maintenance view?

    Hi, I have  a table that is maintained through a maintenance view. I need to record the changes to a dedicated transport object (not TABU) with my own recording routine instead of teh standard recording routine.Could someone tell me which/how the eve

  • Probably a stupid question about upgrades...

    I originally bought Adobe CS3 Web Premium and upgraded to CS5.5 Design Premium last year.  I'm wondering if I upgrade, will my price be based on the CS3 license or the CS5.5 upgrade...? I'm guessing it will be based on CS5.5, but I want to make sure.

  • How to view presentation outline in Keynote 09 for iPad?

    Keynote'09 for osx has a outline option in the view menu. Is there such option in keynote for iPad? If not where can I ask this feature? - hopefully for a future patch/update.

  • Javax.naming.AuthenticationException

    Hi : I am getting the following exception when I am trying to lookup a MBeanHome java.lang.IllegalArgumentException: Invalid user name or password, javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: attempting to add

  • Standard reporting : Balance C/F, items, balance EOP

    Hello experts, I'm looking in FI-CO for a standard GL report where I would be able to print, on the same page those three informations : For a period and a G/L account : - Balance C/F at the beginning of selected period - List of items during the per