Problem with OWB export ext table from dev to prod not the same

Hi everyone,
I created a lot of external table in dev and everything works fine, but as I did a mdl export in production about half of my ext tables dont work anymore and I found in the script created by the export/import in OWB something strange: here is a exemple of script :
CREATE TABLE TBL_AGENTNOTREADYBREAK_EXT
STARTDATETIME VARCHAR2(23 BYTE),
DSTSTATUS INTEGER,
SWITCHID INTEGER,
AGENTID INTEGER,
NOTREADYREASON INTEGER,
INTERVALDURATION INTEGER,
INTERVALID INTEGER,
NUMBEROFTIMESPRESSED INTEGER,
DURATION INTEGER,
ROLLEDUP INTEGER
ORGANIZATION EXTERNAL
( TYPE ORACLE_LOADER
DEFAULT DIRECTORY SOURCE_FICHIER_LOCATION
ACCESS PARAMETERS
( RECORDS DELIMITED BY NEWLINE
CHARACTERSET UTF16
STRING SIZES ARE IN CHARACTERS
NOBADFILE
NODISCARDFILE
LOGFILE SOURCE_FICHIER_LOCATION:'NOTREADY'
FIELDS
TERMINATED BY '\t'
RTRIM
OWBUNUSED0 CHAR,
OWBUNUSED1 CHAR,
OWBUNUSED2 CHAR,
OWBUNUSED3 CHAR,
OWBUNUSED4 CHAR,
OWBUNUSED5 CHAR,
OWBUNUSED6 CHAR,
OWBUNUSED7 CHAR,
OWBUNUSED8 CHAR,
OWBUNUSED9 CHAR
LOCATION (SOURCE_FICHIER_LOCATION:'Stat_AgentNotReadyBreakdown_I.dat')
REJECT LIMIT UNLIMITED
NOPARALLEL
NOMONITORING;
in dev the OWBUNESED# does not exist it is rather the name of the field between double quote as they are in the first part of the script.
Why is that?, cause when I change the script in the database then my tables are accessing the data correctly. What caused this difference. Am I using the wrong method to deploy in Production?
Database version 10R2
Repository 10.2.0.4.36
Thank you all
Jacques

Hi Oleg,
Yes I did check the box for dependencies, you must note that I have something like 20 file definitons hence external tables and only 5 or 6 that had the problem, solving it by hand, still wandering what went wrong.
Thanks

Similar Messages

  • Transporting standard table from DEV to PROD

    Hi All,
    I have updated a table called T166K and T166P for Purchase Order Printouts.
    I have entered few values in the above mentioned tables in DEV server.
    Now, i would like to move these tables to Production, since i can not create values to these tables in Production server.
    How to move tables from DEV till PROD...??
    NOTE: While updating these tables, system didnt prompt for saving under Transport Request Numbers in DEV server. 
    Regards
    Pavan

    Hi,
    You can use scatt tool to upload the data in the developement server. Prepare a file with data. Do it in developement environment only. then in SCATT you have remote logon facility using which you can run the scatt in developement environment and the result will be placed in the production server.
    Let me know if you what more information on this.
    Pls reward points if helpful
    rgds,
    Harikrishna

  • My exported edited image in TIFF-16bit is not the same as my edited RAWfile

    Hi! First and foremost my problem is not speed. I have learn to deal with Aperture's slowness while editing or exporting images and not real time brush strokes and occassional crashes. It thought me PATIENCE!
    My problem are my exported image from Aperture, The images are not rendered the same exact way as the RAW image I edited (quality-sharpness-saturation-definition-etc.) in Aperture. The rendering is WAY OFF. I even exaggerate in Sharpness and contrast in rendering my RAW images yet my exported (both TIFF -16 bit or JPEG orig. size) are way softer than the one I originally rendered in RAW at Aperture 3.0.2. Even the COLORS are OFF-saturation, luminance, etc. It's not my Monitor or my Eyes, I asked 3 friends to help me validate my concern. After viewing my exported (TIFF or Jpeg) images on an external preview browser, I re-import them to Aperture and put them- (the exported images) in the same Projects where the Original RAW file is located, then I carefully compare them in Full Screen view, I can totally say that they're not the same quality, sharpness, saturation, tonal value!
    It's very frustrating to experience this. I work really hard on every single image, I tolerate the sluggishness, the crashes, All I want are my image output render the way I rendered them in RAW file in regards to sharpness, color value and just the overall look that I wanted in my images. BTW I just downloaded the recent March 22, 2011 update. But still it's still having this problem.
    Please help me all you good knowledgable, compassionate Aperture experts help an Aperture user in distress.
    Thanks for your time. I appreciate any positive feedback and help.
    JC

    Richard,
    You are not going crazy, this is a well documented throughout the web
    Sorry, but the web is not documentation for Aperture.
    I cannot understand why Apple have not resolved this
    For one, it takes time to fix a bug, and the have to know about it. Have you told Apple that this is a problem through Aperture feedback? Second, someone at Aperture has to prioritize what their engineers work on. Since this does not seem to be a problem for very many people (including the well-regarded contributors whom you were trying to offend in your other post on this topic), it may turn out that it has a low priority for Apple.
    Please Apple sort this out!
    Apple does not contribute to this forum and there's no reason to believe they will read this particular message and make a bug report.
    nathan

  • Problem with populating a fact table from dimension tables

    my aim is there are 5 dimensional tables that are created
    Student->s_id primary key,upn(unique pupil no),name
    Grade->g_id primary key,grade,exam_level,values
    Subject->sb_id primary key,subjectid,subname
    School->sc_id primary key,schoolno,school_name
    year->y_id primary key,year(like 2008)
    s_id,g_id,sb_id,sc_id,y_id are sequences
    select * from student;
    S_ID UPN FNAME COMMONNAME GENDER DOB
    ==============================
    9062 1027 MELISSA ANNE       f  13-OCT-81
    9000 rows selected
    select * from grade;
          G_ID GRADE      E_LEVEL         VALUE
            73 A          a                 120
            74 B          a                 100
            75 C          a                  80
            76 D          a                  60
            77 E          a                  40
            78 F          a                  20
            79 U          a                   0
            80 X          a                   0
    18 rows selectedThese are basically the dimensional views
    Now according to the specification given, need to create a fact table as facts_table which contains all the dim tables primary keys as foreign keys in it.
    The problem is when i say,I am going to consider a smaller example than the actual no of dimension tables 5 lets say there are 2 dim tables student,grade with s_id,g_id as p key.
    create materialized view facts_table(s_id,g_id)
    as
    select  s.s_id,g.g_id
    from   (select distinct s_id from student)s
    ,         (select distinct g_id from grade)gThis results in massive duplication as there is no join between the two tables.But basically there are no common things between the two tables to join,how to solve it?
    Consider it when i do it for 5 tables the amount of duplication being involved, thats why there is not enough tablespace.
    I was hoping if there is no other way then create a fact table with just one column initially
    create materialized view facts_table(s_id)
    as
    select s_id
    from student;then
    alter materialized view facts_table add column g_id number;Then populate this g_id column by fetching all the g_id values from the grade table using some sort of loop even though we should not use pl/sql i dont know if this works?
    Any suggestions.

    Basically your quite right to say that without any logical common columns between the dimension tables it will produce results that every student studied every sibject and got every grade and its very rubbish,
    I am confused at to whether the dimension tables can contain duplicated columns i.e column like upn(unique pupil no) i will also copy in another table so that when writing queries a join can be placed. i dont know whether thats right
    These are the required queries from the star schema
    Design a conformed star schema which will support the following queries:
    a. For each year give the actual number of students entered for at A-level in the whole country / in each LEA / in each school.
    b. For each A-level subject, and for each year, give the percentage of students who gained each grade.
    c. For the most recent 3 years, show the 5 most popular A-level subjects in that year over the whole country (measure popularity as the number of entries for that subject as a percentage of the total number of exam entries).
    I written the queries earlier based on dimesnion tables which were highly duplicated they were like
    student
    =======
    upn
    school
    school
    ======
    school(this column substr gives lea,school and the whole is country)
    id(id of school)
    student_group
    =============
    upn(unique pupil no)
    gid(group id)
    grade
    year_col
    ========
    year
    sid(subject id)
    gid(group id)
    exam_level
    id(school id)
    grades_list
    ===========
    exam_level
    grade
    value
    subject
    ========
    sid
    subject
    compulsory
    These were the dimension table si created earlier and as you can see many columns are duplicated in other tables like upn and this structure effectively gets the data out of the schema as there are common column upon which we can link
    But a collegue suggested that these dimension tables are wrong and they should not be this way and should not contain dupliated columns.
    select      distinct count(s.upn) as st_count
    ,     y.year
    ,     c.sn
    from      student_info s
    ,     student_group sg
    ,     year_col y
    ,     subject sb
    ,     grades_list g
    ,     country c
    where      s.upn=sg.upn
    and     sb.sid=y.sid
    and     sg.gid=y.gid
    and     c.id=y.id
    and     c.id=s.school
    and      y.exam_lev=g.exam_level
    and      g.exam_level='a'
    group by y.year,c.sn
    order by y.year;This is the code for the 1st query
    I am confused now which structure is right.Are my earlier dimension tables which i am describing here or the new dimension tables which i explained above are right.
    If what i am describing now is right i mean the dimension tables and the columns are allright then i just need to create a fact table with foreign keys of all the dimension tables.

  • Problem with sap script while transporting from dev to quality server

    Hi experts,
    In dev server i am getting correct output in sap script.But when it is transporting to quality server alignment is different.Printer name is same both in dev and quality.Please give an answer for this query.
    Thanks
    suresh

    Hi Suresh,
    This could be a problem with the Sapscript buffers. Try running the report RSTXDELL on the system to clear the Sapscript buffers?
    To do this you can use RSTXDELL report with default settings except it is better to have * instead of the current client number in the Client field.
    After this, create a new spool and see if the problem is resolved?
    Regards,
    Aidan

  • Problem with iMessage making me open a new screen when texting the same person.

    Just starting having this problem today.  Texting with one person using iMessage (iphone to iphone) and every time they respond to my text, it doesn't appear on the open screen conversation.... it appears as a new message from them.  I'm having to text them and then close my conversation and then reopen the text message to see what they said.  It's like having 20 people text you at the same time.
    Anyone else having this happen to them?

    yes, my imessage was set to go to my iphone number.  Same for the person that I was texting with. 
    It's working now.  As a last ditch effort, I checked to see how many apps I had running in the background. Needless to say, I had about 12 apps open.  I closed them all, and my imessage worked correctly after that..... one conversation.

  • Will there be a problem with connection if there are two apple tv devices connected the same time on two seperate tv's

    my dad has a apple tv device where he watches films from his ipad that is then displayed onto his tv and i was wondering if i buy one for my tv, will there be a problem with the connection and there could be complications?

    You can run several AppleTVs in a house concurrently, at least 5, but this requires a reasonable network set up if it is to handle all local traffic concurrently, especially if using other devices to Airplay as it seems your dad is doing now.
    Usually works but the local network will be the issue if any, assuming internet connection rates are good.

  • Problem with Ribbon when multiple List / Library WebPart are added to the same page

    Hi,
    I'm working on a SharePoint 2013 custom branding (custom master page and layout).
    I added one page layout with several Web Part Zones,
    <div id="cBottomFirst" class="cThreeColumn cThreeColumndMargin" >
    <div data-name="WebPartZone">
    <!--CS: Start Web Part Zone Snippet-->
    <!--SPM:<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <div xmlns:ie="ie">
    <!--MS:<WebPartPages:WebPartZone runat="server" Title="Bottom Left Area" ID="wpz_bottom_left" AllowCustomization="True" AllowPersonalization="False" FrameType="TitleBarOnly" Orientation="Vertical">-->
    <!--MS:<ZoneTemplate>-->
    <!--DC: Replace this comment with default web parts for new pages. -->
    <!--ME:</ZoneTemplate>-->
    <!--ME:</WebPartPages:WebPartZone>-->
    </div>
    <!--CE: End Web Part Zone Snippet-->
    </div>
    </div>
    I have a problem, when I add several List View Web Part to the same page, then when I select one list / library, the ribbon is shown, but it is shown with all option disabled.
    Any idea?
    José Quinto Zamora SharePoint and Search Specialist MCITP and MCPD in SharePoint 2010
    http://joSharePoint.com

    Hi,
    According to your description, I suggest you check as follows:
    1. Please check that whether the ribbon is OK when you use the OOTB feature to add the web part to a page;
    2. What if you do the test in IE, will the issue still occur?
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • I'm having problems with syncing my iphone calendar to my ipad, but not the other way around

    My iPhone 5 will not sync with my iPad calendar.  If I make any changes or add an appointment on my iPhone it will not sync to either iCloud or my iPad, however if I add or change an appointment on my iPad or iCloud it will update my iPhone calendar.  I've read where other's are having the same problems but haven't read anyone's post of where a solution has helped.  Anyone??

    There is no  8/9 pin to 30-pin to adopters that support audio. There are such adopters but they only support charging and syncing, not audio
    http://www.guuds.com/product/iP5-9020__Lightning-8-Pin-Female-to-30-Pin-Male-Ada pter-for-iPhone-4S-iPad-3-iPod-Touch-4-Black.html
    says
    Notice: this converter adapter can not support any audio and video product
    Message was edited by: lllaass got mixed up

  • Just purchased a ipod and trying to import my music collection. When I have imported some artist have duets with others and those are going in seperate folders not the same as the artist. How can I put all the music in the same folder

    have alot of music to import and some of the artist are not in the same folder. like elton john who has duets with others. is there anyway to put all the music in same folder and not have several folders for same artist

    If you right click on a son in iTunes and click Get Info. Under the Sorting tab iyo can change how the songs is sorted in iTunes
    Tips for using song and CD info to organize your music
    You can edit information in the Info window to make it easier to find and sort items in your library. For example, you can:
    Group individual movements on a classical CD into one work by indicating the name of the work (for example, “Piano concerto in A Minor, Op. 54”) in the Grouping field.
    Group songs that are part of a compilation together in your library by clicking Details and selecting the checkbox next to “Album is a compilation of songs by various artists”.
    Identify the individual artists on a tribute album in the Artist field, and type “various” in the Album Artist field.
    Create your own genre category by clicking Details and typing the category in the Genre field.
    Change the order in which tracks on a CD play by changing the numbers in the Track fields.
    Create a Smart Playlist that includes only songs that are just the right speed for your workout by typing the number of beats per minute in the BPM field. For instructions, see Create a Smart Playlist.
    Identify a movie as a music video (click the Options button, and choose Music Video from the Media Kind pop-up menu).
    Identify an item that you imported from a CD as an audiobook, so it appears under Audiobooks instead of Music (click the Options button and choose Audiobook from the Media Kind pop-up menu). If you do this, iTunes also remembers your place in the audiobook.
    Enter custom sorting criteria for an item. Select the item, choose File > Get Info, click Sorting, and enter the custom text.
    Does the non-syncing songs play in iTunes on the computer?
    is there anything different about the songs that do sync and those that do not? Like where they cam from? The format (Get Info>under the File tab).

  • Discoverer report - Output from Discoverer plus is not the same as Discoverer desktop

    As a part of Upgrade project we are migrating the discoverer reports from 11i (11.5.10.2) to R12 (12.1.3) .After migrating to R12, for a custom discoverer report the output given by discoverer desktop is correct (24 rows for a scenario). But the report output from Discoverer plus does not show the credit transactions (2 rows). The output from Discoverer plus shows only 22 rows (24 - 2), which is incorrect. The query is the same in Discoverer desktop and Discoverer plus.
    Please let me know why these transactions that are appearing when the report is run from discoverer desktop are not appearing in discoverer plus. Is there any setup in discoverer plus for this?
    Regards,
    Brajesh

    Pretty hard to answer a question like this.  Best bet would be to copy the existing discoverer plus book and start removing conditions, fields, etc until those two rows from desktop show up and see if you can work it out. 

  • Problems with Whitespace using nested tables from eclipse dtp oracle plugin

    Hi,
    sending from eclipse to oracle xe fails if whitespace is used:
    Example1: Nested table in nested table
    adress_table_typ has another nested table in it
    that works
    CREATE TABLE x (
    i INTEGER PRIMARY KEY,
    adressen adress_table_typ
    ) NESTED TABLE adressen STORE AS adressen_nt (NESTED TABLE tels STORE AS tels_nt);
    inserting a newline fails
    CREATE TABLE x (
    i INTEGER PRIMARY KEY,
    adressen adress_table_typ
    ) NESTED TABLE adressen STORE AS adressen_nt
    (NESTED TABLE tels STORE AS tels_nt);
    Example2:
    Two nested tables
    CREATE TABLE x (
    i INT PRIMARY KEY,
    l_table_typ,
    m_table_typ
    ) NESTED TABLE laptops STORE AS laptop_nt NESTED TABLE interessen STORE AS interessen_nt;
    and then an insert
    INSERT INTO x VALUES (123456,
    l_typ(laptop_typ('123', 'netop'),
    laptop_typ('234', 'thinkpad'),     
    laptop_typ('345', 'iBook')),
    m_typ('a', 'b', 'c')
    which fails. Note that the INSERT works when copy&pasted to sqlplus. It also works if there is
    just one nested table.
    Am I doing somethig wrong or is this a bug in the eclipse data tools plugin?
    Regards
    - Peter
    PS; It is rather difficult to insert whitespace in that forum editor. Any possibility to have ascii?
    For a "whitespace" question rather important...

    A bit of an update on the original post. I was playing around with the plug-in xml file (e.g. eclipse\plugins\org.eclipse.jst.server.generic.oc4j_1.5.100.v20070608\buildfiles\oracle.10.1.3.xml). I changed the following from "deploy" to "redeploy" and it seems to be working once the applicatoin is initial deployed. Of course, I have to change it back to "deploy" if it is the first time the application is being deployed. However; I would still would like to resolve this if there is something out there that fixes this problem. Or if everything points to an enviornment problem, I can continue to play with it.
    <target name="deploy.j2ee.ear" depends="check.skip.ear.deploy" unless="skip.deploy">
    <antcall target="package.module.ear"/>
    <oracle:redeploy
    deployerUri="${deployer.uri}"
    userId="${oc4j.admin.user}"
    password="${oc4j.admin.password}"
    file="${server.publish.dir}/${module.name}.ear"
    deploymentName="${module.name}"
    bindAllWebApps="${oc4j.bind.website}"/>
    </target>

  • CPO licensing - Can dev and prod share the same license ?

    We have used the trial version for about 3month now for my dev VM, we have ordered server and license from cisco, but infortunately the server are not ready yet. Can I use the production license we bought on my dev VM and later on my production VM ?
    Thanks,
    Cendrine.

    PO customer licenses are node locked to a specific server.  You will need a selarate license code for each system you stand up.  This includes trial extensions for customers.
    When you install a fresh system, you get a trial license with the install which is good for 30 days after the initial install. Any licenses after that are node locked.

  • Table at bottom of page (not the same as similiar issues)

    I already know about headers/footers, counting rows, etc. However none of those solutions seem to work for the following issue.
    For our PO, each page has a footer message on it. In addition, after the end of all of the PO lines, they want the total to appear at the bottom of the page. The next page then contains terms and conditions.
    For example with a 4 page PO:
    Page 1 has PO header info, PO lines and there is a standard message in the footer.
    Page 2 has the remainder of the PO lines. There is also a table that has the total (and some other detail) that must appear at the bottom of this page. There is also the standard footer message that appears at the bottom of every page.
    Page 3 and 4 have terms and conditions, as well as the standard footer message.
    The issue we are facing is getting the total table on Page 2 to the bottom of the page, instead of immediately following the PO lines. If anyone has any thoughts, please advise. I can try and provide a screenshot if this is not clear enough.
    Thanks,
    Brett

    Thanks, the last page solution works fine. Take care.
    I just started using this forum and just understood that I had to tag the answer as correct but mis-tagged it helpful, the answer is fact correct. Sorry.
    Edited by: 868628 on 13-Jul-2011 05:19

  • How to use the repository; uploading reports from DEV to PROD...

    Hello...
    I'm fairly new to CR-XIr2 (SP3) but have worked with Crystal Reports since v6.0.  I'm trying to figure out how to create a dynamic parameter list that someone can select an item from, which will get sent as an input parameter to the SQL Server 2005 stored proc that populates the report.  I'm also trying to figure out if there's an easy way to copy reports from a DEV environment into PROD.  We have BOE.
    Basically, I would like to find out resources online or in books on how to use the BOE repository for dynamic and/or cascading parameters (i.e. pulling a list of text values & their associated IDs from a lookup table that won't be used in the report), images (i.e. corporate logo), etc..  What complicates things for us is that IT is now requiring us to use a DEV environmentit was really easy when we had unlimited access in PROD!  We also need to put together a process where reports & other repository objects that are copied from DEV to PROD access the correct db, etc.  (Crystal Report in DEV accesses DEV db/repository/etc.when copied to PROD it accesses PROD db/repository/etc.)
    Anyway, I'm just looking for info on where to begin--whether it be a book, a BO/SAP knowledge base article, in-class training from a specific company, etc.  Thanks!

    Hey Markian,
    Can you let me know the process you have followed to migrate from Dev to Prod.
    We can migrate all the reports and objects and database fields through migrate wizard where you can import all the objects, reports and database fields and users to production enterprise.
    Just follow the above scenario and let us know if you are facing any error.
    Try  publish the reports using import wizard and run it in the crystal designer.
    Regards,
    Naveen.

Maybe you are looking for