Failed to create MySQL tables. Installation aborted. BOE XI 3.1 Linux

Tried to do a full install of BOE XI 3.1 Linux on Redhat 5 with at least the mimimum requirements and it goes through fine but then in the end errors out with "Failed to create MySQL tables. Installation aborted." Any ideas on what is causing this and how to fix it?

Hello Fred,
I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
It is monitored by qualified technicians and you will get a faster response there.
Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
Best regards,
Falk

Similar Messages

  • Failed to Create RBS tables in Content DataBase when installed RBS

    I'd config RBS for SQL server 2008 R2. But it failed to create rbs tables in content database after I'd run "msiexec /qn /lvx* rbs_install_log.txt /i RBS-x64.msi TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME="WSS_Content"
    DBINSTANCE="DBInstanceName" FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1 "  with powershell.  And the install log file had the
    erro log"Executing op: ActionStart(Name=FixFilestreamStoreConfig,,)
    Información 2769. El instalador ha encontrado un error inesperado.The
    error code is 2769. Custom Action CreateFilesNoUI did not close 21 MSIHANDLEs." I'd found some imformation on this website and was told to enable "name pipes". But it doesn't work for me.
    Is anyone can help solve this problem? Many thanks!

    Finally,I found the solution.
    First make sure you have enable "Name Pipes" , and your sql "RemoteDacEnable" is "TRUE" , then what's the point that when you run command in powershell with"msiexec /qn /lvx* rbs_install_log.txt /i RBS-x64.msi
    TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME="WSS_Content" DBINSTANCE="DBInstanceName" FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1" , if
    your DBINSTANCE is the defult one , then change the name whit "localhost" and not "MSSQLSERVER".
    More importantly, if you had something changed , you must uninstall the RBS first then reinstall it .
    I'd read a blog that if your rbs_install_log.txt is smaller than 1M ,there must be something wrong to your installation even though  it has logged that your RBS has installed successfully.
    Hope this help. Thanks!

  • Can't get JDeveloper/OC4J to auto-create MySQL table

    My EJB 3.0 based application is failing to create the MySQL table specified by the @TableGenerator annotation.
    Following are the details of my setup and application:
    System Setup:
    - JDeveloper 10.1.3.1.0
    - JDK 1.5.0_07
    - Ubuntu Linux kernel 2.6.15-27-k7
    - MySQL 5.0
    - MySQL ConnectorJ 3.1.13
    - Using the embedded OC4J server.
    I have done the following so far:
    1. Created a database in MySQL called, "test". Did not create any tables.
    2. Created a JDeveloper library whose classpath contains the MySQL ConnectorJ JAR file, and tested a database connection from JDeveloper successfully.
    3. Added the MySQL/JDeveloper library to my ejb project, "Test1/Model", and selected the database connection from the project properties EJB panel. The database connector is called, "SmashDB". Selecting the database connector on the EJB panel resulted in JDeveloper setting "SmashDBDS" as the default datasource.
    A JSF managed bean calls an EJB Session Bean, CustomerFacadeBean.persistEntity(Customer customer) with a Customer object as a parameter to save in the database. OC4J successfully connects to the MySQL "test" database, but fails when trying to access the ID_GENERATOR table, which is specified in an @TableGenerator annotation. The class-level annotations in the Customer entity are as follows:
    @Entity
    @NamedQuery(name = "Customer.findAll", query = "select o from Customer o")
    @TableGenerator(name = "BasicIDGen", table = "ID_GENERATOR", pkColumnName = "GEN_KEY",
    pkColumnValue = "CUSTOMER_ID", valueColumnName = "GEN_VALUE")
    public class Customer implements Serializable {
    private Long id;
    private Integer version;
    private String firstName;
    private String lastName;
    private String emailAddr;
    My persistence.xml file contains:
    <?xml version="1.0" encoding="UTF-8" ?>
    <persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="Model">
    <properties>
    <property name="toplink.ddl-generation" value="drop-and-create-tables"/>
    </properties>
    </persistence-unit>
    </persistence>
    With the above definition for Customer and persistence.xml, I expected the ID_GENERATOR and CUSTOMER tables to be created automatically, but this doesn't seem to be happening.
    Instead, I get the following error message and stack trace:
    2006-09-27 12:25:29.564 ERROR J2EE EJB-08006 [CustomerFacade:public java.lang.Object facade.CustomerFacadeBean.persistEntity(java.lang.Object)] exception occurred during method invocation: oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2006.7 (Build 060720)): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: Table 'test.ID_GENERATOR' doesn't existError Code: 1146
    Call:UPDATE ID_GENERATOR SET GEN_VALUE = GEN_VALUE + ? WHERE GEN_KEY = ?
         bind => [50, CUSTOMER_ID]
    Query:DataModifyQuery(); nested exception is:
         Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2006.7 (Build 060720)): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: Table 'test.ID_GENERATOR' doesn't existError Code: 1146
    Call:UPDATE ID_GENERATOR SET GEN_VALUE = GEN_VALUE + ? WHERE GEN_KEY = ?
         bind => [50, CUSTOMER_ID]
    etc.....
    Help would be greatly appreciated. I've gotten to this point, which appears to be one error away from success (I hope) but don't have a clue what this problem is caused by.
    Thanks,
    Rick Horowitz

    darby wrote:
    I can't get this to compile. help!
    You can not issue DDL in PL/SQL. You need to use dynamic SQL for that:
    create or replace
    PROCEDURE CREATE_STAGING_TABLES as
    BEGIN
      -- I CAN'T GET THIS TO WORK BUT I CAN COPY THESE LINES AND RUN THEM AND THEY WORK! WHATUP?
      DBMS_OUTPUT.PUT_LINE('Begin Create Import Tables');
      EXECUTE IMMEDIATE 'Create table FAC_STAGING_PROJECTS As select * from FAC_PROJECTS where 1=2';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PROJECTS add(ERROR_DESCRIPTION VARCHAR2(4000 CHAR))';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PROJECTS add(bImported NUMBER)';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PROJECTS add(dteImported DATE)';
      EXECUTE IMMEDIATE 'Create table FAC_STAGING_PURCHASE_ORDERS As select * from FAC_PURCHASE_ORDERS where 1=2';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PURCHASE_ORDERS add(ERROR_DESCRIPTION VARCHAR2(4000 CHAR))';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PURCHASE_ORDERS add(bImported NUMBER)';
        EXECUTE IMMEDIATE 'alter table FAC_STAGING_PURCHASE_ORDERS add(dteImported DATE)';
      DBMS_OUTPUT.PUT_LINE('End Create Import Tables'); 
      EXCEPTION
       WHEN OTHERS THEN
         raise_application_error(-20022,substr(SQLERRM,1,255));
    END CREATE_STAGING_TABLES;SY.
    P.S. I am not questioning why do you need to create tables from a stored procedure.

  • Trouble creating mySQL tables

    I am running CF9 64bit on windows 7. I created the database on mySQL 5.6 server. I created the datasource, theough the CF Admin, for kalendar and it verified. I then tried using the following code to create 2 table, but I recevied an error that just says "Error!" when I tried running the script. I posted the script on  mySQL forums and was told the code ran fine. What am I not seeing?
    <cfquery name="qCreateTable"  datasource="kalendar">
    CREATE TABLE  tblkalendar (
      EventID varchar(100) NOT NULL,
      CategoryID int(10) NOT NULL,
      IsDeleted tinyint(1) NOT NULL default '0',
      IsPublished tinyint(1) NOT NULL default '0',
      IsFeatured tinyint(1) NOT NULL default '0',
      DateTimeCreated timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
      StartDate datetime NOT NULL,
      EndDate datetime NOT NULL,
      StartTime varchar(50) default NULL,
      EndTime varchar(50) default NULL,
      ContactPhone varchar(50) default NULL,
      ContactName varchar(100) default NULL,
      ContactEmail varchar(50) default NULL,
      Title varchar(150) NOT NULL,
      Location varchar(150) default NULL,
      Teaser varchar(350) default NULL,
      ExternalURL varchar(500) character set utf8 default NULL,
      Description longtext NOT NULL,
      PRIMARY KEY  (EventID),
      KEY IX_tblKalendar (StartDate,EndDate),
      KEY FK_tblKalendar_tblKalendarCategories (CategoryID)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    CREATE TABLE  tblkalendarcategories (
      CategoryID int(10) NOT NULL auto_increment,
      CategoryName varchar(50) NOT NULL,
      CategoryBGColor varchar(7) NULL,
      CategoryTextColor varchar(7) NULL,
      PRIMARY KEY  (CategoryID)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    </cfquery>

    you should rethink whether you need to create a database using java. personally i think it's a bad idea. your database should exist and the schema should be ready to go when your app starts. why do you think you need to create one?
    %

  • MySQL tables

    Hi i would like to ask, there is any diffrent way for creating mySQL tables, rather than do it manualy on server, i mean using some software and then just export tables to the server.

    http://www.mysqlfront.de/
    Mysqlfront is some software you run on your own computer and it connects the mysql database. You can create the tables with a few clicks and some keystrokes. You dont need to write any sql if you dont want to.
    Also something to note is, the username and password you use to connect to the database must have access permissions to connect from your own computer. It's a bit tricky but when it's working its nice.
    Have fun! Think it's free too!
    p.s. I personally use phpmyadmin (http://www.phpmyadmin.net/home_page/), but this requires a webserver with php.

  • Creating FRCommon system failed - in 11g Forms & Report Installation

    Dear all,
    When installing 11g Forms and Reports "*Creating FRCommon system failed - in 11g Forms & Report Installation*".
    I have successfully created the weblogic server 10.3.5 , and continued with 11g forms & reports. First Installed the forms & reports software, and i try to configure. after several steps of configuration i have failed when its place "*Creating FRCommon system failed - in 11g Forms & Report Installation*".
    What it is this Error.
    Kindly help me.
    My OS Windows
    Forms and reports 11gR2
    More info
    When i start the configuration i have chosen Forms & Reports server and Development tools in the configuration page along with OHS.
    Regards
    Hamid

    Hi experts,
    I have the same problem when I try to install oracle Fusion Middleware 11g, is it possible that I forget some steps before, or should I install required something before continue intallation?
    Best Regards.
    Karim.

  • OBIEE 11.1.6 Installation failing at Create Domain

    Hi,
    I am installing OBIEE 11.1.6 in Wndows 7 64bit machine.
    I have installed all pre requisites as below :
    Loopback Adapter
    JDK 1.6.34 -in path C:\Java\Jre and set the same in Environment Variables for Path
    have all memory required for installation
    TEMP - C:\TEMP
    TMP - C:\TMP
    Created RCU and while installing it is failing during Create Domain.. When checked logs it says
    CSF Entries will not be parsed since the AdminServer is unreachable
    and also sometime with
    Nodemanager.Property file not found.
    Tried 2 or 3 times but no success. Kindly advise.
    Database installed : Oracle 11.2.0 R2
    JDK : JDK1_6_34
    Thanks,
    Ckeng

    Assuming you are trying to do Enterprise Install.
    There is a known issue with weblogic10.3.5 with some specific network configuration.
    Try following.
    Download and Install Weblobic 10.3.6 manually. Do BI Software only Install and run configuration.

  • Oracle Business Intelligence Installation failing at Creating ASInstance

    Hello All,
    I'm trying to Install Oracle Business Intelligence Enterprise Edition 11.5 on Centos 6.3 x64 and it is failing at Creating ASInstance.
    Below is some part of the logfile that I believe is the cause of the failure. Please help.
    oracle.as.provisioning.util.ConfigException:
    Error creating ASInstance instance1.
    Cause:
    An internal operation has failed: Error in starting opmn server
    Operation aborted because of a system call failure or internal error
    Action:
    See logs for more details.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv._createInstance(ASInstanceProv.java:317)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstance(ASInstanceProv.java:166)
         ... 18 more
    Caused by: oracle.as.management.opmn.optic.OpticException: Error in starting opmn server
    Operation aborted because of a system call failure or internal error
         at oracle.as.management.opmn.optic.OpmnAdmin.executeCommand(OpmnAdmin.java:310)
         at oracle.as.management.opmn.optic.OpmnAdmin.startOpmnServer(OpmnAdmin.java:87)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv._createInstance(ASInstanceProv.java:254)
         ... 19 more
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Assigning Port: 9503 to: OPMN_LOCAL_PORT
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Assigning Port: 9504 to: OPMN_REMOTE_PORT
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Assigning Port: 9505 to: OPMN_REQUEST_PORT
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Setting valueOf(OPMN_LOCAL_PORT) to:<SECURE>. Value obtained from:USER
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Setting valueOf(OPMN_REMOTE_PORT) to:<SECURE>. Value obtained from:USER
    [2012-10-27T01:33:23.682+03:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Setting valueOf(OPMN_REQUEST_PORT) to:<SECURE>. Value obtained from:USER
    [2012-10-27T01:33:23.704+03:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Executing a Jaxb workflow ...
    [2012-10-27T01:33:23.705+03:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 37] [ecid: 0000JeVB84zFw000jzwkno1GYk7X00000S,0] Begining Oracle Fusion Middleware
    Kind Regards,
    Denis Ojok

    Hi Denis,
    Check these docs
    Installing OBIEE 11g On Linux 64-bit Fails Running The Configuration Assistant With "Step Creating Asinstance Failed" [ID 1304640.1]
    Error: "Oracle.as.provisioning.util.ConfigException: Error While Starting the Domain." Whilst Installing OBIEE 11G [ID 1272906.1]
    -->Try with static IP or loopback adapter.
    Obiee 11g Install Fails During Config - Java Out Of Memory Errors In Logs, PermGen [ID 1278708.1] and [ID 1211573.1]
    If helps pls mark

  • How to create a table in mysql tool kit

    Hello Sir/Madam,
    H                       
                                    How to create a table in mysql using the labview tool kit,,,I need the hyperlink to download this tool kit,
    Thanks and regards
    Jack 
    Jayavel

    quick search
    study and ask if further specific help needed

  • Bootcamp 5 fails to create installation USB drive

    Bootcamp version 5, running on Mountain Lion, keeps failing on creating the Windows 7 Startup disk. I'm using a 8gb USB drive and it formats it without any problems. The process will carry on until around 50% of copying installation files and then fails.
    I've tried 2 different USB Flash drives and I've check the ISO image for Windows 7.
    Can anyone help me with a solution? Or why this is happening.
    Thanks

    It means you must have windows in a file instead of a disk and the file's extension is ".iso". For Example: WIN7INST.iso. .ISO files are the windows counterpart of Mac's .dmg files. How do you create a windows .iso files? I perfectly don't know but surely there's a program such as Disk Utility that can rip a Windows installer CD/DVD into a file with the .iso extension.
    Back to you question: you need Windows in an .iso file format instead than a CD/DVD.
    By the way... I'm not going to suggest you to do what I'm going to say because I'm not sure it always work but I sometimes rip a Windows CD/DVD with Disk Utility in "master" format (no compression) with .cdr extension. Then i just change the .cdr in .iso and it works in windows.
    Why using a .ISO on a USB drive instead a CD/DVD? Becaus installation may be faster or in case you don't have a Superdrive, either internal or external, but necessary for installing Windows in BootCamp. From a generic CD/DVD reader, Windows installer will not start on a Mac, at least on my... dead  late 2011 MacBook Pro.
    Cheers
    Simon

  • OBIEE 11.1.1.5 installation failed at: Create A Sinstance

    hello,
    I am trying to install OBIEE 11.1.1.5 in my Windows 7 laptop. But, it is always failing at Create A Sinstance: while configuring. I did the following things. Please let me know where I am doing wrong.
    1. Ran RCU to create BI_PLATFORM and BI_MDS schemas
    2. Setup Microsoft loop back adaptor and configured it with the static IP.
    3. Changed machine name.
    4. Updated Listener.ora and tnsnames.ora by replacing localhost with custom machine what I gave in step 3.
    5. Change hosts file in network/admin folder with the IP address that gave in microsoft loop back adapter and assigned machine name to it.
    6. Restarted Oracle database and everything is up and running.
    7. Started OBIEE 11.1.1.5 installation.
    8. Everything went well while installing but it is failing at Create ASinstance. I tried to continue but all other steps are failing.
    Please guide me if I am missing something. I tried to create Oracle instance path in environment variables and ran opmnctl start all process manually too. But, still no luck. Please advise.
    my machine configuration:
    OS: Window 7 64 bit (But, I am installing 32 bit obiee 11g)
    RAM: 4GB
    processor: Intel CORE I5

    Hi Krishna,
    Thanks for the link.
    looks like the same way I installed. I think there is something else I am missing. I guess this is causing because of the oracle instance creation for BI services. Please let me know, if you have any more information on the same.

  • Create PHP form from MySQL table structure

    Hi folks
    Not directly DW related, but ....
    Anybody got any recommendations for a utility which would
    create a quick head
    start by creating the php/html code for a basic form using
    the field structure
    of a MySQL table ?
    Thanks for any suggestions.
    Ronnie MacGregor
    Scotland
    Ronnie at
    dBASEdeveloper
    dot co dot uk
    www.dBASEdeveloper.co.uk

    On Sun, 21 Dec 2008 15:08:30 +0000 (UTC)
    Joe Makowiec said :
    > On 21 Dec 2008 in macromedia.dreamweaver, Ronnie
    MacGregor wrote:
    >
    > > Anybody got any recommendations for a utility which
    would create a
    > > quick head start by creating the php/html code for
    a basic form
    > > using the field structure of a MySQL table ?
    > I haven't used it, but it looks like phpmyedit may do
    what you want:
    >
    >
    http://www.phpmyedit.org/
    Hi Joe
    Thanks for this ...
    phpMyEdit looks very good and very useful, and I'm playing
    with it to see just
    how configurable it proves to be.
    It looks good for general admin tasks etc. bet whether it
    proves suitable for
    end user (public) use remains to be seen.
    It is basically a class which generates the page code server
    side at runtime
    using the parameters you set in a calling script, but of
    course you can grab
    the source code for the generated page which may prove to
    satisfy my initial
    request.
    Anyway ... from what I've seen so far I could recommend that
    it is well worth
    some time exploring the possibilities.
    Cheers,
    Ronnie
    Ronnie MacGregor
    Scotland
    Ronnie at
    dBASEdeveloper
    dot co dot uk
    www.dBASEdeveloper.co.uk

  • ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target

    I get this error when trying to run PRD-create-populate-table from Oracle by example ODI
    ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target ORACLE connection ODI_DATA_SERVER.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-02264: name already used by an existing constraint
    ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target ORACLE connection ODI_DATA_SERVER.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-02264: name already used by an existing constraint
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java:665)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3218)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java:1785)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2805)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:662)

    the specified constraints name is still used. Please check if you are having the order correctly ie drop table , create and insert and check if the table is dropped , if still the constraints is there then drop it from database

  • Expdp fail and create table SYS_EXPORT_SCHEMA_20

    Hi Gurus
    I am using Oracle 10.2.0.3 in AIX env
    My database size is around 1600 GB. Sometime my expdp fail and create table like SYS_EXPORT_SCHEMA_20, SYS_EXPORT_SCHEMA_05. As I run expdp from system user , I notice that it create this type of table into system tablespace. It time it consume around 5gb space. Now my system tablespace size is 68 GB.
    Can I drop those table? If I drop these table then it create any problem? This is my production database.
    Regards
    Rabi

    user13134974 wrote:
    Hi Gurus
    I am using Oracle 10.2.0.3 in AIX env
    Regards
    RabiThose tables you were mentioning, SYS_EXPORT_SCHEMA_nn , are the data pump master tables used for data pump jobs;their purpose is to
    hold the info about the job details.
    Once the job has finished table should be droped, but in case of a job failure table remains so every new dp job must create new SYS_EXPORT_SCHEMA_nn table
    with the +1 nn iteration depending on the name of the last master table that was left due to the dp job failure.
    Cleaning those tables can be done with the dbms_datapump STOP_JOB Procedure, check the docs about the details :
    http://download.oracle.com/docs/cd/B12037_01/server.101/b10825/dp_export.htm
    You can also go visit youroracle support to see examples and instructions for cleaning your db from those dismised master tables,
    How To Cleanup Orphaned DataPump Jobs In DBA_DATAPUMP_JOBS ? [ID 336014.1]

  • Is it possible to create nested tables in MySql database?

    I am currently working on a project with my team and I'm in charge of designing the database. It's going to be a service delivery app that's going to have the name of several clients and their respective list services and cost of each service. The problem I'm having right now is finding a way to create separate tables, menus if you will, of their list of services offered since they all have different prices.
    Here's my question, can I create individual tables within a larger table (nested tables) using MySQL or would you recommend a different method?
    Please bear in min this is my first SQL project and I've had no prior experience with it.
    This topic first appeared in the Spiceworks Community

    It seems that the ability to link to a KB article within the WYSIWYG is broken.
    Spiceworks 7.4.00070
    IE 11 and Mozilla 38.0.5
    Can anyone else confirm?-Open the User Portal, edit any page and click the "Knowledge Base Article Link" button. -Chose a KB article and then publish your change.
    -Hover over the newly created KB link and/or click on the link.*screenshots are what I get.

Maybe you are looking for

  • Acrobat Pro 9.5.2 No Updates Available (to 9.5.3)

    Since reading of the release of the January 8, 2013 updates I have been trying to update Acrobat Pro 9.5.2 to 9.5.3 but "Check for Updates" under Help invariably returns "No updates available." I have downloaded the manual update but I am trying to g

  • Error ORA-00604 AND ORA-00036

    How to resolve ora error ORA-00604 and ORA-00036. I am getting this error in alert.log: ORA-00604: ERROR OCCURED AT RECURSIVE SQL LEVEL 51 ORA-00036: MAXIMUM NUMBER OF RECURSIVE SQL LEVELS (50) EXCEEDED.

  • Reinstall a Download from Adobe

    On Feb 7th, I puchased Photoshop 11 as a download from Adobe.  Earlier this week I had to reset my PC and lost all of my installed software.  I am in the process of reinstalling all the software, however, the software that was downloaded is presentin

  • Adobe installer helper will not work

    (Had to create a new forum account to get back on here). Anyway, my Firefox add-ons said that my Adobe Reader 9 was out of date and should be upgraded. So I've downloaded the adobe install helper but the wretched thing won't execute. Just says this p

  • Negative Image - I mac 17"

    I am new to Mac, and lost. I have somehow changed the image on my screeen to be "negative" It looks like a negative of the real colors, as if looking at a negative film strip. The entire display is effected, Back round, desk top...the works. When I c