Deploying rel_time table

Hi all,
I'm trying to do some hands on OWB 10g Release 2, so i used the oracle by example tutorials.
when i reached the deployment lesson I tried to deploy the rel_time table but the depolyment failed
the rel_time table is created but the failure happned when trying to run the scripts on the rel_time_COMMENT.dll that try to add comments to the rel_time table using COMMENT ON COLUMN statements. the error is "ORA-00942: table or view does not exist".
I tried to access the rel_time table by "SELECT * FROM rel_time" using TOAD the same error appeared. and appeared with another table deployed by OWB
I tried to DDL that created the table an error indicating that an object with the same name already exist.
I checked the USER_TABLES view i found an entry for the table "rel_time"... the table also appeared under the Tables node of the objects tree of the toad
the same behaviour repeated in the SQL+
can any one help on this issue please
best of regards
Message was edited by:
Shaimaa

i did so and found the owner of the rel_time table as the expense_wh
I knew that the table exist because it appears in the tables tree on the TOAD and when I try to create a table with the same name an error indicating that an object with the same name exists appears.
i tried to create a test table in the same schema and tried to access this table and i succeded.
I also tried to desc a deployed sequence and had the same error "object doesn't exist" while it's exist in the user_objects view . I tried to create a sequence in the same schema then used its name with DESC command and it's executed successfully ...
there's a problem in the objects created by deployment form the OWB .. !!!!????
Message was edited by:
Shaimaa

Similar Messages

  • Error in Deploying External Table

    Hi,
    I am using OWB 10.2g version to create a database. While deploying the external table, I got the following message:
    "TSS_15MIN_EX     ErrMsgKey     VLD-0180: A default location is required for external tables."
    Could you help me in solving this issue?
    Thanks,
    Vipul

    Hi Sutirtha,
    I tried to double click on the external table (in the Control Center) but nothing happens. I could only right click and select the only highlighted "Configure" option. In the configure option, only the following file locations turn up that all uses default file location:
    Bad File Location
    Discard file location
    Log file location
    To give you a head start, It is the first time that we are deploying these tables as we are in a process of migrating the server to a different machine. In our current server, all these external tables are probably in C:\ or directed in C:\ but we have changed the path to D:\ in the new server. Do you think it has to do something while we import the metadata?
    Thanks,
    Vipul

  • Problem Deploying a Table in not default schema from NWDS

    Hello Experts,
    I've a webService that works on a Table deployed in my Portal DB..
    I deployed it from my NWDS using an archive file created in a Dictionary Project.
    Now I've created a new Datasource (type VendorSQL) with a new Schema..
    How can I deploy my Tables in the NEW custom Schema??
    Could you help me?
    Best Regards
    Alessandro

    Hello Alessandro,
      You will have to manually deploy this. The SQLJ and Java Dictionary capabilities that is used to deploy only is possible in the default database schema as far as I know
    Hope that helps
    Abdul

  • Error deploying external table on database 11.1.0.6

    While deploying external table, I am getting the following error, I am using database ver. 11.1.0.6, has anybody in past encountered this problem, any help will be greatly appreciated.
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_OBJ1) violated
    Thanks,
    Ravi

    Hi Ravi
    Sounds like the instance's data dictionary is screwed up, I would try using a different database instance.
    Cheers
    David

  • Error VLD-0917 (unknown error)  while deploying FACT table

    Hi,
    I keep getting this error while trying to deploy a FACT table:
    VLD-0917: An unknown error occured while generating <fact table name>.
    An unknown error occurred while generating <fact table name>. Error details: java.lang.NullPointerException.
    Do yo know what can it be? This fact table was linked to a Dimension that I modified (added one more level to its hierarchy). Since I did this change, the fact table cannot be validated.
    This happens to all fact tables that use this dimension. I created a new cube with the new definition of the dimension and had no trouble at all. I disassociate the dimension from existing cubes and they validate OK. What could be happening?
    I would appreciate any help you could provide.
    Regards,
    --oswaldo.
    [osantos]

    Hi,
    I realized that I'm getting this error for all fact tables. I cannot deploy any of them. What could be happening? I have a dimension that is linked to all facts which I changed recently: had to redefine its default hierarchy as a value-based one. I don't know if this affected my cubes.
    Any idea what might be happening here?
    Best Regards,
    --oswaldo.
    [osantos]

  • Seam (EJB3/JSF) App Deploys - but tables are not created, populated

    Please let me know if you've run across this or have an inkling of an idea of what is going on here.
    Description: I have created the JDBC Data Source and this deploys successfully. The JNDI Name for this data source is: "seam-jee5-ds".
    I am using this JDNI name as the data source in my persistence.xml for the application. This data source is found when the application deploys. The data source itself is an embedded HSQLDB database, but I have also tried this with H2 and the result is the same.
    The application works, I can open the page...but anytime there is a transaction with the database, the transaction fails. The error is that it can't find the table to query from, and fails w/ this exception:
    javax.el.ELException: javax.ejb.EJBTransactionRolledbackException: EJB Exception: ; nested exception is: javax.persistence.PersistenceException: org.h
    ibernate.exception.SQLGrammarException: could not execute query; nested exception is: javax.persistence.PersistenceException: org.hibernate.exception.
    SQLGrammarException: could not execute query
    +Caused by: java.sql.SQLException: Table not found in statement [select user0_.username as username2_, user0_.name as name2_, user0_.password as passwo+
    +rd2_ from Customer user0_ where user0_.username=? and user0_.password=?]+
    at org.hsqldb.jdbc.Util.throwError(Unknown Source)
    The EJBs are recognized/discovered; example:
    Aug 15, 2009 7:35:29 PM org.hibernate.cfg.annotations.EntityBinder bindTable
    INFO: Bind entity org.jboss.seam.example.booking.Booking on table Booking
    The persistence unit is configured:
    Aug 15, 2009 7:35:29 PM org.hibernate.ejb.Ejb3Configuration configure
    +INFO: Processing PersistenceUnitInfo [+
    name: bookingDatabase
    +...]+
    Problem: When I then check the database (HSQLDB or H2), none of the tables that should be created and populated as a result of the EJBs are there.
    The only two issues/warnings that I see are:
    Aug 15, 2009 7:35:29 PM org.hibernate.impl.SessionFactoryObjectFactory addInstance
    INFO: Not binding factory to JNDI, no JNDI name configured+
    Aug 15, 2009 7:35:29 PM org.hibernate.util.NamingHelper getInitialContext+
    INFO: JNDI InitialContext properties:{}+
    Aug 15, 2009 7:35:32 PM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/seam-jee5-booking'
    Aug 15, 2009 7:35:34 PM org.jboss.seam.servlet.SeamListener contextInitialized
    INFO: Welcome to Seam 2.1.2
    Aug 15, 2009 7:35:34 PM org.jboss.seam.util.Resources getRealFile
    WARNING: Unable to determine real path from servlet context for "/WEB-INF/classes" path does not exist.
    Aug 15, 2009 7:35:34 PM org.jboss.seam.util.Resources getRealFile
    WARNING: Unable to determine real path from servlet context for "/WEB-INF/dev" path does not exist.
    Stack: JDK 1.6_011; WebLogic 10.3.1 (11g); Seam 2.1.2; Windows XP; HSQLDB 1.8
    Any help you can provide would be much appreciated.
    The app's persistence.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence xmlns="http://java.sun.com/xml/ns/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">
    <persistence-unit name="bookingDatabase">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>seam-jee5-ds</jta-data-source>
    <properties>
         <!--<property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>-->
         <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
         <property name="hibernate.transaction.manager_lookup_class"
              value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
    </properties>
    </persistence-unit>
    </persistence>
    Edited by: user447661 on Aug 17, 2009 9:41 AM
    Edited by: user447661 on Aug 17, 2009 9:45 AM
    Edited by: user447661 on Aug 17, 2009 9:47 AM

    Nevermind, the issue was that my persistence.xml did not contain the following property:
    <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
    Therefore, the tables were not being created upon deployment.
    Still, I would expect to see entity beans listed in the WebLogic console.

  • Deployment error:Table, view or sequence reference to ABC is not allowed

    Hi all,
    I have created a mapping in OWB where a table ABC gets loaded from its stage table S_ABC. The mapping validates fine, code generation is fine but when I try to deploy the mapping it gives me a deployment error saying PLS:00357 Table, View or sequence reference ABC is not allowed.
    I used the same logic to one of my other mappings and it gets executed without any problem. If you guys could tell me what is going wrong in this mapping, that would be very helpful.
    Thanks.
    Priya

    if you are using a view or sequence in the mapping or referencing any other object then the owb user needs to have grants to access those objects otherwise the deployment will fail. Please check the object grants.

  • Met error when deploy external table

    I create a file location on one machine and target table on another.
    when i deploy a map there's error. the error message like the following:
    oracle.wh.repos.sdk.exceptions.WBException
    oracle.wh.repos.sdk.exceptions.WBException
    at oracle.wh.ui.runtime.WHRuntimeProgress.notifyInternalError(WHRuntimeProgress.java:177)
    at oracle.wh.ui.runtime.WHRuntimeDeployThread.run(WHRuntimeDeployThread.java:128)
    \nCMPException 消息和堆栈跟踪:\njava.lang.NullPointerException
    at oracle.wh.ui.runtime.WHRuntimeDeployThread.run(WHRuntimeDeployThread.java:49)
    how can i solve this problem?
    thank you!!

    Essentially you will need deploy the following:
    - The target objects
    - The connectors between the targets and sources
    - the mappings
    Are you using a file in this case in the mapping, or are you using an external table?
    I'm a bit worried about the nullpointer exeption. Is there a way you can send me the metadata export of the repository? You can use [email protected] for that.
    JP

  • Deploying external tables with ombplus

    Hi,
    we try to deploy our projects with ombplus. The script breaks at the first external table when we do:
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'SVR_ET'
    foreach ext_tab [OMBLIST EXTERNAL_TABLES] {
    set exttab_path [concat $svr_modul$ext_tab]
    OMBALTER DEPLOYMENT_ACTION_PLAN 'SVR_ET' \
    ADD ACTION '$ext_tab' SET PROPERTIES (OPERATION) VALUES ('CREATE') \
    SET REFERENCE EXTERNAL_TABLE '$exttab_path'}
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'SVR_ET'
    There is one external table that give an "VLD-0917" - error details are:
    java.lang.NullPointerException.
    Beforehand we did the Connectors with such a loop.
    Any ideas?
    Michael

    Hi Michael,
    Try to make it simple first time without a loop. When you have that fixed you try to do it with a loop.
    The example below, witout a loop, works for me.
    /JZ
    --First script deploy to file
    set OMBLOG {c:\tmp_jz\omb_logfile_deploy_test_to_file.log}
    OMBCONNECT owb_o/owb_o@localhost:1521:owbdb USE REPOSITORY 'owbdb'
    OMBCC 'DATAWAREHOUSE'
    OMBCONNECT CONTROL_CENTER owb_o/owb_o@localhost:1521:dw \
    USE REPOSITORY 'owb_o'
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'DEPLOY_TEST' \
    ADD ACTION 'ST_ET_TABELL' \
    SET PROPERTIES(OPERATION) VALUES ('CREATE') \
    SET REFERENCE EXTERNAL_TABLE '/DATAWAREHOUSE/TEST/ET_TABLE'
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'DEPLOY_TEST' \
    AS SPECIFICATION TO 'c:\\tmp_jz\\deploy_test_to_file.xml'
    OMBDISCONNECT CONTROL_CENTER
    OMBDISCONNECT
    exit
    --Second script deploy from file to control center
    set OMBLOG {omb_logfile_deploy_test_to_cc.log}
    OMBCONNECT CONTROL_CENTER owb_ow/owb_o@localhost:dw \
    USE REPOSITORY 'owb_owner'
    OMBDEPLOY SPECIFICATION FROM 'deploy_test.xml'
    OMBDISCONNECT CONTROL_CENTER
    exit

  • Monitoring the SQL Server after deploying schemas (tables)

    Hi,
    I will be deploying 8 schema which will create two tables in two databases. I am required to monitor the server for few days, whether it is performing well or anything is breaking. There will be other tables also which will be in replication chain, but these
    tables will be just at subscriber level. Please, suggest me, how to exactly monitor how the two tables are performing, if that is working fine or it is breaking anything.
    Production Environment.
    Thanks,

    hi Ajay,
    you can try server-side SQL trace.
    http://www.sommarskog.se/sqlutil/sqltrace.html.
    And beta_lockinfo:
    http://www.sommarskog.se/sqlutil/beta_lockinfo.html

  • Deploy view doesn't deploy related tables. why?

    Hello,
    well, actually question is in the subject.
    In detail :
    create table - table_1.
    create table - table_2
    with any columns in Design Center;
    create a view, spec some columns and put a query there too.
    None of the objects exist in the target schema.
    Now click on the view and select "deploy". It will deploy with status "success", but it doesn't bring over the tables of which it based - through the select specified in the "create view".
    What am i missing ?
    thank you.
    P.S. dig around : the manual states that OWB does NOT check the query - so even invalid query will be deployed w/o a problem. But i still can't find how can i "associate" the view with tables, so they can be deployed in a single action.

    Hey Mr. Zsolt.Pentek,
    I am new to the Oracle Spatial, Could you please be kind enough to post all the procedure with queries to load Geotiff in Oracle 11g, i have gone through the above said oracle document but they have declared quries for some steps and not for all the steps.
    As i can understand you have been able to achieve the task, i would try to follow ur steps and probably make it ans it may work as a tutorial for new entrants also.
    I will really appreciate your help.
    Thanks and Regards

  • (OWB10gR2)-Cannot deploy in table, error RPE-01010 ?

    Hi,
    I validates and generates successfully and deploy it marks Error RPE-01010: It is not permitted to deploy database objects directly to the Control Center
    I am in Design Center not in Control Center. Because this happens?
    Any help is appreciated.
    Thanks
    Celia Avila
    (Excuse my English is bad )

    If I understood you right, you did not manage the differnece between design repository and target schema.
    Design Repository holds all your metadata, the Target Schema is the schema you actually load data into.
    You'll have to prepare a target schema using the Repository Assistant. Don't try to load data into your design repository.
    Tobias

  • OMB05602 Error when trying to Deploy Table to an Environment.

    Hi
    I am trying to deploy a table to a development environment from OWB Repository .
    My script contains the following commands and the error I am facing.
    *1. OMB+&gt;* {color:#0000ff}OMBCONNECT user/pwd@host:port:schema{color}
    Connected.
    *2. OMB+&gt;* {color:#0000ff}OMBCC '/DQ/DC_STAGING'
    {color}Context changed.
    *3. OMB+&gt;* {color:#0000ff}OMBCONNECT CONTROL_CENTER user/pwd@host:port:erpdev1 USE REPOSITORY 'repository'{color}
    Control Center connected.
    *4. OMB+&gt;* {color:#0000ff}OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN' ADD ACTION 'TREX_COLL_PLAN' SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE TABLE 'TREX_INV_CUST_ITEMS_CLN2'
    Action plan MY_DEPLOY_PLAN created.
    {color}*{color:#000000}5. OMB+&gt;{color}* OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'MY_DEPLOY_PLAN'
    {color:#ff0000}OMB05602: An unknown Deployment error has occured for Object Type PUB03201 : An
    error has occured with Location EDSDEV9_STAGE_LOCATION. This location is require
    d to be registered by EDSDEV9_STAGE_LOCATION. Please ensure that both are correc
    tly configured..{color}
    {color:#000000}I am not sure where the EDSDEV9 is being picked up.
    The Control Center setup is something like as follows
    - DQ{color}
    - - EDSDEV1_STAGE_LOCATION
    - - - DC_STAGING
    - - - - Tables
    - - - - - TABLE1
    {color:#000000}My guess is that after step 3, I have to do something to change the context to the locations defined in the EDSDEV1 control center.
    (Something like step 2, but I am not sure what.)
    Appreciate any help.
    Thanks and Regards
    Sameer{color}

    Hi David
    I tried the following. It is giving the same error again.
    OMB+&gt; OMBCONNECT --[xxtrex_cnv_rep/[email protected]:1526:TEREXDC2|mailto:xxtrex_cnv_rep/[email protected]:1526:TEREXDC2]--
    OMB+&gt; OMBCC '/DQ/DC_STAGING'
    OMB+&gt; OMBCONNECT CONTROL_CENTER --[xxtrex_dc_rep/[email protected]:1522:erpdev1|mailto:xxtrex_dc_rep/[email protected]:1522:erpdev1]-- USE REPOSITORY 'xxtrex_dc_rep'
    OMB+&gt; OMBREGISTER LOCATION 'EDSDEV1_STAGE_LOCATION' REUSE
    OMB+&gt; OMBCREATE CONNECTOR 'STAGE_LOCATION/DEV1CONN' SET PROPERTIES (DESCRIPTION, BUSINESS_NAME) VALUES ('this is a connector', 'connector') SET REFERENCE LOCATION 'EDSDEV1_STAGE_LOCATION'
    OMB+&gt; OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN' ADD ACTION 'TREX_COLL_PLAN' SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE CONNECTOR 'EDSDEV1_LOCATION/DEV1CONN'
    OMB+&gt; OMBALTER DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN' ADD ACTION 'TREX_TBL_PLAN' SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE TABLE 'TREX_INV_CUST_ITEMS_CLN2'
    OMB+&gt; OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN'
    {color:#ff0000}OMB05602: An unknown Deployment error has occured for Object Type PUB03201 : An
    error has occured with Location EDSDEV9_STAGE_LOCATION. This location is require
    d to be registered by EDSDEV9_STAGE_LOCATION. Please ensure that both are correc
    tly configured..
    {color}
    Basically I want to deploy a table from the repository (STAGE_LOCATION) to the Dev1 Environment (EDSDEV1_STAGE_LOCATION).
    Did I miss something or there is some other setting which is pointing to EDSDEV9_STAGE_LOCATION ?
    Thanks and Regards
    Sameer

  • How do I create a target table with the same PK as the source table?

    I am trying to create a target table in a mapping that will end up with the same primary key as the source table.
    It is a simple map that simply uses a subset of the columns of the source table in the target table. I was wanting to create and bind a new table by dragging the columns I want from the source to the initially blank target table operator, change the column names and create a primary key to match the source table.
    I can't seem to be able to create a constraint on the table in the mapping. I can create the constraint after the table is created and boound to the database object but the PK doesn't carry back into the mapping.
    I need it in the mapping so I can use the UPDATE/INSERT operation and use the 'All Constraints' implementation. The mapping won't let me validate the object without the PK on it in the map.
    Believe it or not folks, I am getting better at this.
    Thanks very much for the guidance.
    Gary

    Hi Gary
    You are close, you are really close... :-))
    You need to do exactly as you propose plus one extra step. Build the map as you describe, binding the new table to the target. Then you edit the table definition to add the primary key and any other constraints you need. After this is the step that you are missing.
    You need to do the following:
    1. Go back and re-edit the map
    2. Right click on the table
    3. From the pop up menu, select Reconcile Inbound
    4. Set any operators that you need for the UPDATE/INSERT
    5. Save the map
    6. Commit your changes
    The first three steps above make the map read in the indexes and constraints that you set on the table. Finally, you need to deploy the table and then deploy the map.
    Hope this helps
    Regards
    Michael

  • How to use error table in mapping level?

    Hi all
    Any one please tell me how to use error table in mapping level or how to handle the errors in mapping.
    I am creating one error table in oracle but i dont know how to use it in mapping.
    Thanks in advance.
    Kumar

    Hi Kumar,
    You need to use Error Table along with the Data Rule .
    Error tables are used with Logical error handlers (Data Rules). Detailed description on using data rules is explained in the following document
    http://www.oracle.com/technology/products/warehouse/pdf/OWB10gR2_ETLandBusinessRules.pdf
    In a nut shell usage of error tables is as follows.
    1. Create a data rule associate it with a table (Target table or table in which you load data).
    2. Use the table in a mapping as target table.
    3. Deploy the table and mapping.
    Now in the target schema one more table will be created with the name <target table name>_ERR. When a mapping is executed the data which violates the data rule gets into this error table.
    The following has to be done to have error table name of customers choice.
    1. Right click on the table and click configure.
    2. Give the table name in "shadow table name" section.
    3. Deploy the table.
    4. Use this table in a mapping. Now in the mapping on this table properties in "Error Table Name" section the name of the table specified in "shadow table name" will be populated.
    Thanks,
    Sutirtha

Maybe you are looking for

  • Oreintation changing from XI to 2008

    we have reports created from Crystal Reports XI and after upgrading to Crystal Reports 2008, those same reports show everything correct in page setup, and it displays correctly in the print preview, but it prints sideways when sending our label print

  • WLC4402 and Symbol MC3090 Handhelds

    Weird issue: I have some handhelds using certificates to connect to the internet in my office. The handhelds can connect in all the complex but inside a warehouse, all the config for the APs is the same, we use 1242s and 1131s (yes inside the warehou

  • Problem in datasource 2LIS_13_VDITM

    Hi, In my datasource 2LIS_13_VDITM, I am facing one problem that in the data some documents have negative value so the quantity is coming negative which is OK. But in some documents the quantity is coming positive even the values are negative. How it

  • ADF 10g  TREE MODEL

    HI Can any one send me a Tree model example how can i made it generate manualy i have this but its not working its just apear the root without any children public Object getDefaultFocusRowKey() { FacesContext context = FacesContext.getCurrentInstance

  • Upgrading from 10.4 to 10.4.6

    When I download the upgrade (10.4.6 from 10.4) and try to install it I get a "You cannot install Mac OSX Update on this volume." I have plenty of space on my main machine drive. I recently did an archive reinstall. What am I doing wrong?