Sort output from EXPDP

I'm using expdp on an Oracle 10g database for multiple schemas and would like to know if it's possible to sort the output by schema name. Here is the command:
expdp backup/****@isid schemas=hb_prod, nt_prod, rnelson, mthhc_prod directory=dmpdir dumpfile=ora.exp logfile=ora.log parfile=scn.par
The par file contains an SCN number for the export
I had tried using the QUERY option with no success.
This is what part of the output looks like:
+. . exported "RNELSON"."EUL5_QPP_STATS" 2.726 GB 3707346 rows+
+. . exported "RNELSON"."EUL5_DOCUMENTS" 75.32 MB 1737 rows+
+. . exported "RNELSON"."DARTBOARD" 53.79 MB 282633 rows+
+. . exported "NT_PROD"."NT_AUDIT" 40.57 MB 797896 rows+
+. . exported "RNELSON"."EMP_FILE_ECF" 32.84 MB 224575 rows+
+. . exported "RNELSON"."CM_REVIEW_RESTORED" 17.03 MB 40451 rows+
+. . exported "RNELSON"."DIS_DOCS_" 9.060 MB 449 rows+
+. . exported "RNELSON"."EUL4_DOCUMENTS" 7.926 MB 408 rows+
+. . exported "RNELSON"."EUL_QPP_STATISTICS" 5.724 MB 11936 rows+
+. . exported "RNELSON"."KARI_TEST" 3.644 MB 22375 rows+
+. . exported "RNELSON"."EUL5_EXPRESSIONS" 1.964 MB 10508 rows+
+. . exported "HB_PROD"."HB_ABR" 8.414 KB 2 rows+
+. . exported "HB_PROD"."HB_AUDIOGRAM" 8.578 KB 5 rows+
+. . exported "HB_PROD"."HB_DGI" 9.328 KB 28 rows+
+. . exported "HB_PROD"."HB_ECOG" 8.468 KB 3 rows+
+. . exported "HB_PROD"."HB_ENG" 8.773 KB 9 rows+
+. . exported "HB_PROD"."HB_MDSSCALE" 8.5 KB 4 rows+
+. . exported "HB_PROD"."HB_PATIENT" 229.8 KB 855 rows+
+. . exported "HB_PROD"."HB_PHYSICIAN" 11.46 KB 60 rows+
+. . exported "HB_PROD"."HB_TECH" 8.859 KB 15 rows+
+. . exported "HB_PROD"."HB_VAT" 8.460 KB 3 rows+
+. . exported "RNELSON"."EUL4_QPP_STATS" 1.035 MB 10831 rows+
+. . exported "RNELSON"."RCN" 7.125 KB 1 rows+
+. . exported "RNELSON"."EUL5_SEGMENTS" 651.0 KB 654 rows+
+. . exported "RNELSON"."EUL5_ELEM_XREFS" 544.5 KB 7777 rows+
+. . exported "RNELSON"."EUL4_EXPRESSIONS" 443.2 KB 2255 rows+
+. . exported "RNELSON"."HR170_CURRENT" 445.4 KB 2336 rows+
+. . exported "RNELSON"."HR170_PREV" 14.39 KB 22 rows+
+. . exported "MTHHC_PROD"."MTHHC_CC" 9.312 KB 10 rows+
+. . exported "MTHHC_PROD"."MTHHC_DEST" 9.085 KB 15 rows+
+. . exported "MTHHC_PROD"."MTHHC_EMP" 12.92 KB 91 rows+
+. . exported "NT_PROD"."LOCATION" 11.67 KB 435 rows+
+. . exported "NT_PROD"."LOGIN" 35.53 KB 1296 rows+
+. . exported "NT_PROD"."SHIFT_TURNOVER" 264.6 KB 404 rows+
+. . exported "NT_PROD"."XLATE" 5.812 KB 41 rows+
+. . exported "RNELSON"."EUL5_HI_NODES" 383.5 KB 3525 rows+
As you can see, the schemas are not in order. The export is useable but it would be better sorted for readability.
Thanks!

Have you tried using sort command? like this
[oracle@wissem daily]$ expdp wissem/wissem schemas=orawiss, wissem directory=DATAPUMP_TST dumpfile=ora.exp logfile=ora.log | sort -n -k1
Export: Release 11.2.0.1.0 - Production on Fri Jan 20 20:34:27 2012
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "WISSEM"."SYS_EXPORT_SCHEMA_01":  wissem/******** schemas=orawiss, wissem directory=DATAPUMP_TST dumpfile=ora.exp logfile=ora.log
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 576 KB
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/COMMENT
Processing object type SCHEMA_EXPORT/PROCEDURE/PROCEDURE
Processing object type SCHEMA_EXPORT/PROCEDURE/ALTER_PROCEDURE
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
. . exported "ORAWISS"."TEST_1"                          5.007 KB       1 rows
. . exported "ORAWISS"."TEST_2"                          5.007 KB       1 rows
. . exported "WISSEM"."CCE_O_DETAILS"                25.30 KB      66 rows
. . exported "WISSEM"."CCE_P_DETAILS"           34.10 KB      62 rows
. . exported "WISSEM"."CHILD"                            5.914 KB       2 rows
. . exported "WISSEM"."PARENT"                           5.476 KB       2 rows
. . exported "WISSEM"."T1"                               5.023 KB       2 rows
. . exported "WISSEM"."TEST_BACK_NBBS"                   5.062 KB       4 rows
. . exported "WISSEM"."TEST_DEC"                         5.054 KB       3 rows
. . exported "WISSEM"."T2"                                   0 KB       0 rows
. . exported "WISSEM"."TEMP_A"                               0 KB       0 rows
Master table "WISSEM"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
Dump file set for WISSEM.SYS_EXPORT_SCHEMA_01 is:
  /home/oracle/exportdp_script/daily/ora.exp
Job "WISSEM"."SYS_EXPORT_SCHEMA_01" successfully completed at 20:35:33
[oracle@wissem daily]$

Similar Messages

  • Sort output data in MDX queries

    Hi,
    I wuold obtain a sorted output from my MDX query.
    Follow an extract from my mdx code:
    the sorted list will be ordered by char APF000050 and APF00048 descendant.
    who can help my ?
    Thanks in advance
    SELECT
    { [Measures].MEMBERS} ON columns ,
    NON EMPTY [APF000050].[LEVEL01].MEMBERS
    [APF000048].[LEVEL01].MEMBERS
    [APF000063].[LEVEL01].MEMBERS
    [APF000068].[LEVEL01].MEMBERS
    [APF000088].[LEVEL01].MEMBERS
      *[APF000069].[LEVEL01].MEMBERS 
    PROPERTIES [APF000088].[2APF000088],[APF000069].[2APF000069]
    on rows
    FROM [APF_MP_01/AP]
    WHERE     (  [APF000001].[AP06  0000090106], [APF000095].[2004] )
    Message was edited by: Luca Di Benedetto
    Solved.

    hi sundar
    follow working code:
    SELECT
    { [Measures].MEMBERS} ON columns ,
    NON EMPTY
    {ORDER({ [APF000048].[LEVEL01].MEMBERS}, (APF000048),ASC) }
    {ORDER({ [APF000050].[LEVEL01].MEMBERS}, ([APF000050].[2APF000050]),ASC) }
    {ORDER({[APF000063].[LEVEL01].MEMBERS},(APF000063),ASC)}
    [APF000068].[LEVEL01].MEMBERS
    [APF000088].[LEVEL01].MEMBERS
    [APF000069].[LEVEL01].MEMBERS
    PROPERTIES [APF000088].[2APF000088],[APF000069].[2APF000069]
      ON ROWS
    FROM [APF_MP_01/MA]    
    WHERE     ( [APF000001].[MAG0460000100043],[APF000048].[datadoc])

  • Openshot + Blender: No frame was found in the Output from Blender

    Can't get this to work. Anyone know why?
    Using  OpenShot version 1.4.0
    blender -v
    Blender 2.61 (sub 0)
    build date: 2012-01-05
    build time: 10:31:02
    build revision: unknown
    build platform: Linux
    build type: Release
    build c flags: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fopenmp -msse2 -msse -pipe -fPIC -funsigned-char -fno-strict-aliasing -Wall -Wcast-align -Werror=declaration-after-statement -Werror=implicit-function-declaration -Werror=return-type -Wstrict-prototypes -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wno-error=unused-but-set-variable
    build c++ flags: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -D__STDC_CONSTANT_MACROS -fopenmp -msse2 -msse -pipe -fPIC -funsigned-char -fno-strict-aliasing -Wall -Wno-invalid-offsetof -Wno-sign-compare
    build link flags: -pthread
    build system: CMake
    Blender command: blender -b '/usr/lib/python2.7/site-packages/openshot/blender/blend/blur.blend' -P '/home/user/.openshot/blender/fdd1c574-44dd-11e1-bf0d-54e6fc88c972/blur.py'
    Traceback (most recent call last):
    File "/home/user/.openshot/blender/fdd1c574-44dd-11e1-bf0d-54e6fc88c972/blur.py", line 150, in <module>
    bpy.context.scene.render.file_format = params["file_format"]
    AttributeError: 'RenderSettings' object has no attribute 'file_format'
    No frame was found in the output from Blender
    Blender render thread finished
    Last edited by whoops (2012-01-22 09:47:37)

    yes, that is correct that it crashes with the new code when i have both made it a separate library function node and when i incorporated it into an existing code.  the odd thing is that it actually seems to work now.  i believe that i was using the wrong environment to call the new codes, which is why whenever i tried to revert to the original code previously, it still crashed.  it seems that in order to be called, i need to use Deployment rather than Development and ppc instead of i386 in the active configuration and architecture in Xcode, respectively.  while playing around with the iphone app, it must have reset my defaults to a non-labview friendly form.  so now that i've got that part of the code working, i need to find out why it's still crashing on me.  at first, i thought it must be the random number generator, but testing that separately in the code works just fine, so there must be something internal in the code.  probably a memory allocation fault.  but now that i can actually get everything running once more, i should be able to sort that issue out myself.
    thank you very much for the help.  sorry i didn't actually have anything to fix, unfortunately.  i'm going to spend some time trying to debug this section of code to find where the fault lays.  i may come back if i cannot find it in there, but hopefully it will not come to that.
    take care and many thanks,
    justin 

  • Problem - Sort output in table (multiple columns)

    Dear all,
    First of all - Best wishes for 2008.
    I probably have an easy matter, but i can't figure it out, and on this forum very little is mentioned about the sort operator, so therefore this new post.
    I have a dashboard with some input fields (dropdown boxes).
    I have a table (as result of query) and this works fine. The table consists of several columns. (so far no rocket science).
    Generally the structure of the table is like:
    IM SBU | App. Request key | App. Request | etc....
    I want the IM SBU colum to be sorted (assending or decending doenst matter).
    But somehow the second column is the one where the data is sorted (standard).
    My guess this happends because its a key value? or its because it starts with an A (and the other with and I).
    So i insert the sort opperator, add an object (IM SBU) and select up. Then from that opperator i create a table.
    This results in a table with just 1 column (IM SBU).
    So i tried several things.
    I tried to sort on the IM SBU key (this gives the same result).
    I added all colums as an object of the sort opperator...but this still gives the same result of just 1 column.
    Any ideas?
    Regards.
    Bart

    Dear all.
    I'm wondering if  anybody else experienced errors with the sort and the amount of columns shown in a table????
    In general i have a query and want a table as output with 8 columns (sorted by 1 object). I figured out the following and will demonstrate it with 4 situations.
    Situation1 (auto fit table without sort)
    In the properties of the table i select 'frame style'= 'Primary frame' and "fit content" = 'auto'. I run the dashboard and the content of the query is good. All columns are shown and the chart width is auto determined.
    Situation 2 (auto fit table with sort)
    I want to sort on 1 object, so from query i insert a sort (select object), and from sort i create table. Then i select 'frame style'= 'Primary frame' and "fit content" = 'auto'. I run the dashboard and the content of the query is NOT good. I just get to see 1 column. But i selected 8 columns.
    Situation 3 (actual fit table with sort)
    I want to sort on 1 object, so from query i insert a sort, and from sort i create table. Then i select 'frame style'= 'Primary frame' and select "fit content" = 'actual size'. I run the dashboard and the content of the query is good (but not what i want). I get to see all 8 columns. But the table is smaller than i want. I doenst auto fit.
    Situation 4 (fit width table with sort)
    I want to sort on 1 object, so from query i insert a sort (select object), and from sort i create table. Then i select 'frame style'= 'Primary frame' and "fit content" = 'fit width'. I run the dashboard and the content of the query is NOT good. I just get to see 1 column (again). But i selected 8 columns.
    Any suggestions?
    Any known work arounds?
    Or is this an error in VC and should i request a note?
    Regards.
    Bart

  • Sorting properties from get-mailbox on a single mailbox, how?

    get-aduser username -Properties *  gives a nicely sorted list of the properties for a user's AD account. 
    get-mailbox username | fl * gives a nicely
    unsorted list of the properties for a user's Exchange mailbox.
    Anything more elegant for sorting the get-mailbox output?
    Get-Mailbox username | fl * | Out-File -FilePath c:\username-mailbox.txt
    Get-Content C:\username-mailbox.txt | sort
    What is the technical terminology for the type of output produced by get-mailbox username?
    Thank you for your time, Joe
    -Joe

    Hear ya Bill.  But I'm only returning a single PSObject (Microsoft.Exchange.Data.Directory.Management.MailEnabledOrgPerson), and I'm attempting to sort the properties on the single object.  Sorry I'm not explaining this well.
    Example Output from: get-mailbox
    Name                   Alias                ServerName      
    ProhibitSendQuota
    kcarael               kcarael               svrwmail     unlimited
    cuqt3                  cuqt3                  svrwmail     unlimited
    lsren                  lsren                  exchange03   unlimited
    roreerb                roreerb                      exchange03   unlimited
    pacffsdfs              pacffsdfs                       exchange03  
    unlimited
    beon                  beon                  exchange03   unlimited
    Not a problem to sort:  get-mailbox | sort alias
    Output from: get-mailbox someuser
    Name                   Alias                ServerName      
    ProhibitSendQuota
    someuser              someuser              mbxn04    12.6 GB (13,529,147,392 bytes) 
    Example Output from: get-mailbox someuser | fl * (or get-mailbox someuser | Select-Object *)
    RoleAssignmentPolicy                   : Default Role Assignment Policy
    SharingPolicy                          : Default Sharing Policy
    RemoteAccountPolicy                    :
    MailboxPlan                            :
    ArchiveDatabase                        : EX-DAG01-DB08
    ArchiveGuid                            : 587bdddd-f651-4e11-87d0-88ae31dc24db
    ArchiveQuota                           : 50 GB (53,687,091,200 bytes)
    ArchiveWarningQuota                    : 45 GB (48,318,382,080 bytes)
    ArchiveDomain                          :
    ArchiveStatus                          : None
    RemoteRecipientType                    : None
    DisabledArchiveDatabase                :
    DisabledArchiveGuid                    : 00000000-0000-0000-0000-000000000000
    QueryBaseDNRestrictionEnabled          : False
    MailboxMoveTargetMDB                   :
    MailboxMoveSourceMDB                   :
    MailboxMoveFlags                       : None
    MailboxMoveRemoteHostName              :
    MailboxMoveBatchName                   :
    MailboxMoveStatus                      : None
    IsPersonToPersonTextMessagingEnabled   : False
    IsMachineToPersonTextMessagingEnabled  : True
    UserSMimeCertificate                   : {}
    I'm not sure what to sort on...  I've tried just: get-mailbox someuser | Select-Object * | sort
    The output looks the same as output from: get-aduser someuser 
    This doesn't work either: get-aduser someuser | sort -descending
    Thank you, Joe 
    -Joe

  • Aud2 ZS platnm I get I/O from front panel, but no output from REAR OF CA

    I had a Audigy2 in my Dell, worked fine. I needed MORE I/O ports. I got a Audigy2 ZS platinum for the front panel (extra I/O) front panel works fine, sound card sounds fine, all is well - except I get no output from the back of the card. (certainly this isn't a "front OR rear" sort of thing?)
    About ready to return it.

    I DO get digital output from the front and back (front panel on front of Dell) and back of card. I don't get ANALOG output from card. I thought I recall a selecti've click box in the software that said "digital only" where is that. (I HATE creatives software - SO MANY LITTLE UTIL PROGRAMS THAT DO LITTLE OR NOTHING EACH) you have to HUNT through them all to find the option you need.

  • I keep losing volume output from one of my tracks (Strings) in GarageBand. The volume has gone completely from the whole track when I send the song to iTunes-can you help?

    I keep losing volume output from one of the Tracks from my Song Project. The Strings volume, at first, was there but, when I sent the Song to my iTunes Library the strings volume was absent. Can any help? I've experience this before on another project, where for some unknown reason I've lost the Orchestral Choir volume. Sometimes, if the volume on a track disappears, I close everything down & then restart-this temporarily sorts it out but losing a track in the final mix is a different problem...please help!
    Many thanks!!

    soulkiss wrote:
    I need the vocals to be the same volume throughout.
    a good tool for that would be one of the compressors (a web search on "audio mixing compressor" will yield tons of information on using them)
    soulkiss wrote:
    It always exports at the audio level no matter what.
    http://www.bulletsandbones.com/GB/GBFAQ.html#tooloud
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Slow perfromance on sort output?

    we have a partitioned table that is range partitioned by month. It has partitions starting from feb_2010 to feb_2011
    we forgot to split the overflow partiton since february and now I was running the alter table commmand to split the partition at mar_2011 and it has been running for a really long time (30 hours)? This is oracle 10.2.0.3 on rhel4. This is a pretty powerful server with 4 dual core cpu's and 96 gb of ram and also a dedicated emc cx4-240 disk sub system with 60 drives dedicated to thiss database. We are also using asm for our datatfiles.
    I started the alter table command to split the partition yesterday at noon time so this has been running for bout 30 hours?
    There are about 5 to 7 millions rows in each of the monthly partitions and then there was 30million rows in the overflow partition. The column width is small with only 6 columns and avg row length of 101.
    i have been watching the process run and it ran a sort output for over 24 hours and i cant figure out why it is taking this long for only the amunt of rows the table has in it. it is now running another sort and it is dragging as well.
    Could my temp file be corrupted? Other processes seem to be running fine as this is a data warehouse system and all other jobs are completing ontime?
    The system has been more than 50% idle most of the time while this process has been running.
    i dont want to kill the session and caue further problems.
    Any thoughts on why this process could be taking soo long?
    Thanks.

    user520056 wrote:
    HI I have been looking at sesssion long ops and it has been runnning sort output for really long times and when one of them finishes it just kicks off another one? This process has been running for 3 days now and I am reluctant to kill the session?
    To make matters worse the putty session that I used to initially kickoff the alter table statement has been killed but the session is still alive on the server? Coulod this be part of the problem?
    The wait events keeps moving between latch free and db file sequential read.
    Any help is greatly appreciated.
    Do you know what will happen if I kill the session since this is a ddl command?
    for speeding your statement
    _ use parallel option along with the alter table split
    _ also you can check disabling the logging option for the particular table , also enhances performance (skip redo log writing) , but prepare your next backup after .
    Edited by: akhalaf on Jun 27, 2011 7:12 PM

  • No sound output from iPod classic

    I have an iPod classic (5th generation).  Suddenly, I have no sound output from earphones, iHome, speakers or AUX.  Reset did not fix the issue and I have not done a restore.  I saw something referring to a "logic board" issue so thinking there is a hardware issue.  Any thougths?

    A complete restore of the device in iTunes would rule out any sort of software error/glitch or data corruption on the device.  So if you haven't done that yet, I would go ahead and do so now.
    Restoring iPod to factory settings
    And if the problem still continues, it's likely hardware related with the iPod's logic board as you have already noted.
    B-rock

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

  • Unable to output from FCP to Canon XL1.

    I have an eMac with Final Cut Pro 4.5 HD. I also have a Canon XL1 3 CCD camcorder.
    I have no problem capturing footage from my camcorder to my eMac on FCP. I can also connect my Canon to my VCR and record off my camcorder to my TV, as well as play the tape on my camcorder to watch it on TV.
    However, I cannot output from FCP to my camcorder. The 4 to 6 FireWire is attached to both the camera and the eMac and I checked the Log and Capture feature and FCP does recognize a camera or deck is attached. I've been trying to output it using manual record in which I press record on my camcorder and play the playhead on FCP. As I record, there is no picture on my viewfinder, nor any audio being recorded and when I play it back, I just get this blank blue screen, but the timecode is recorded.
    Am I missing something here?

    ensure the following are set
    View>Video Playback>Firewire Apple 720x480 (NTSC or PAL - whatever is appropriate)
    View>Audio Playback>Audio follows video
    View>External Video>All Frames
    If this isn't what you are set to do, you won't be sending video out to your recorder.
    x

  • How to Generate CSV Output from JD Edwards BI Publisher

    Hi All,
    I have a report "Critical Date Report" - R15611 in JD Edwards 8.11. This report has to be generated as CSV output from BI Publisher which is embedded to JDE.
    The purpose we want use BI Publisher is to move some of the data displaying to different place in the page(ex: Move the company address from top left corner to Bottom right corner).
    In order to achieve this
    1.We created blank rtf template and upload to XML repository using P95600 application
    2.Create report definition using P95620 application
    3.Here I see the available output types as PDF,RTF,HTML,EXCEL,POWERPOINT and XML,ETEXT(GRAYED OUT)
    Which output type we can use for CSV ?
    4.Execute the report definition of the critical date report from P95620 to get the XML source
    5.This XML source will be loaded into the blank rtf template
    6.From this point no idea how to design the rtf template in order to get the CSV output.
    7.We did design and output type as excel - but the result data is not in good formatting and alignment*(Headers and footers are repeating).*
    If any one has worked on similar type of requirement,let us know how to do or send a sample XML source,rtf template and how the CSV output will be. Or any document link present in Oracle site will be helpful. Please let me know if you need more details.
    Thanks in Advance.
    Vijay

    Hi Vijay,
    For CSV output, you need an E-text template (not RTF) that's why its grayed out! You can use Excel as output type and have (No headers and footers) , then you can open the file in Excel and store it as CSV. Does not always display correctly though.
    Why are you compelled to use BI publisher? you can use the JDE standard csv output report, (as is used by most EDI systems) of course this may involve a bit of customization if you wants the fields arranged differently.
    -Domnic

  • Error message by periodic weekly: No output from the 1 file processed

    Hi there,
    since four weeks, I got a problem with the maintenance script periodic weekly. Up to December 22nd, the script did, what it should do: rebuilding the database of locate and whatis, rotating log-files. Since one week later, I got the error message: No output from the 1 file processed.
    Normally, I use Anacron to do the job. When I noticed the problem, I tried to start the script with Tinker Tool System getting the same result. Another try using the Terminal (sudo periodic weekly) also failed. The commands locate and whatis are working, locate.updatedb and makewhatis also. I'm running 10.4.8; in the past, I did not have such problems. Anyone with an idea or solution?
    Thanks
    Klaus
    MacBook Pro   Mac OS X (10.4.8)  

    Hi Gary,
    here is the output you were asking for:
    Last login: Thu Jan 25 20:03:55 on console
    Welcome to Darwin!
    DeepThought:~ dirk$ sudo /private/etc/periodic/weekly/500.weekly; echo $?
    Password:
    Sorry, try again.
    Password:
    Rebuilding locate database:
    Rebuilding whatis database:
    find: /usr/local/man: No such file or directory
    makewhatis: /usr/share/man/man1/fetchmailconf.1.gz: No such file or directory
    Rotating log files: ftp.log lpr.log mail.log netinfo.log ipfw.log ppp.log secure.log
    access_log error_log
    Running weekly.local:
    Rotating psync log files:/etc/weekly.local: line 17: syntax error near unexpected token `)'
    /etc/weekly.local: line 17: `if [ -f /var/run/syslog.pid ]; then kill -HUP 0 80 79 81 0cat /var/run/syslog.pid | head -1); fi'
    2
    DeepThought:~ dirk$ ls -loe /private/etc/periodic/weekly/500.weekly
    -r-xr-xr-x 1 root wheel - 2532 Jan 13 2006 /private/etc/periodic/weekly/500.weekly
    DeepThought:~ dirk$
    It seems, Rogers idea, PsynX respectively the deficient uninstalling by me is responsible for my problems, is correct. Should I remove the whole file weekly.local or should I only remove the content? I prefer removing the whole file, because it was created while installing PsyncX. The date of creation is the same as the date of installing the app (December 25).
    Klaus
    By the way: it seems to me, the solution of my problem is in sight. So I want to thank you all for the amazing aid I got from you!

  • Changing the seeded rdf report output from text to PDF

    Hi All,
    I am trying to change the seeded report "Print Requisition Report" output from text to PDF. I changed the output format in the concurrent program definition from text to pdf. The report is now getting displayed in pdf format, but the alignment of the fields are changed. The output is not printing as it was printing while in the text output format. The output looks very sloppy, with uneven fonts and too much of text wrapping.
    I tried some formatting and fields are somehow getting displayed but doesnt look in proper format. I am not able to change the font style in the report builder 6i, even if i change it is printing in the same font style with uneven font size. I think reducing the font size might help, but i am unable to change.We are on 11.5.10.2. Please provide your valuable suggestions on how to go about.
    Thanks
    Sarvesh

    Hi Hussein,
    Thanks for the information. After the adjustments in the layout and the font change the report is now getting displayed without any clipping when clicked on view output. But when the same report is printed some characters on the left and and right side is getting clipped. Please help on how to solve this issue.
    Thanks,
    Sarvesh

  • How to capture graphical outputs from other programs

    Does anyone know how we capture the graphical outputs from the other programs and show them
    on the swing?
    I'd like to use a java program to run gnuplot, capture the outputs, and show them using swing.

    Depends on what you mean by "graphic outputs".
    Taking a quick glance at the gnuplot homepage, it looks as if you can output to PNG files, so just run the app, and load the png file.

Maybe you are looking for

  • Having trouble setting up Distributed Processing / Qmaster

    Hey Guys, I was able to (at one point) use Compressor 3 via Final Cut Pro Studio with Qadministrator to allow Distributed processing either via managed clusters or QuickCluster - both worked on both macs (a 2007 2.6Ghz Core 2 Duo iMac and a 2009 3.06

  • HT4967 how do i add an ical to my icloud

    How do i add an ical to my icloud? Thanks, Todd

  • Connecting TV to internet

    I want to connect my 61" tv to internet via Ethernet. My tv has this option but don't know how to do it. Can someone help. 

  • Error: ORA-01861: literal does not match format string

    Hi, I am doing a RFC-XI-JDBC scenario. In the CC monitoring , i am getting this error for the reciver CC: "Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc

  • Error in Business Rule Decision Service's wsdl

    Hi, Getting strange error which i am unable to sort out. Pleaseeee help. Error message is "Error Message: {http://xmlns.oracle.com/OrderPORules/OrderPORules_DecisionService_1}operationErroredFault Fault ID default/OrderBooking!1.0*soa_e118292f-eb55-4