Running Export without file creation

Has anyone come across a situation when running export shows up in the log file as if it is taking place but in fact no physcial file gets created. This is in Essbase 6.x and highter.Asad Ali Qureshi

Check the file hasn't gone somewhere else.Sometimes when exporting, even though you specify a file location, the file may be created elsewhere. Many companies now have home drives for each network user. At my last place my export files were always created in my home drive regardless of the file location I specified in my script.

Similar Messages

  • Folder Actions script no longer runs on new file creation

    Hope this isn't trivial.......first time posting here...hopefully in the right place.I'm not a total Mac OS X newbie...and surely no techie, either. Dabbled a wee bit with Automator and scratchin' my head on this one. Help, please!
    Any idea why folder actions not running when a new file is saved? A simple add-color-label script created in Automator was workin' fine before I did a Snow Leopard-to-Leopard downgrade clean-install & account migration from external HD (TimeMachine) backup. Folder actions are enabled and script runs only if I start it with Automator Runner. Previously, it would label the file as soon as I saved it....now it needs a manual start. Is this default behavior in Leopard? Or am I missing something or doin' something wrong? Or is this a consequence of downgrade? I was sure I had the same script workin ok in my original Leopard install - though possibly un-modified at that time.
    I have no clue why, but the new version I created recently (cpl wks ago?)worked the first time I added a new file but not thereafter...and in that instance it only labelled the file in Finder upon quitting Preview (file is a Grab saved as pdf).
    The reason for the downgrade was compatibility problems with Photoshop CS4 on SL (OS & app all updated yet crashin' at the drop of a hat) - maybe due to lack of RAM? (only 1GB). Saw quite a few posts regarding SL running CS4 problems, so now I'm back to running 10.5.8 ..again.. and PS actually runs smooth like it did before.
    Maybe these console messages are a help......or am I barkin' up the wrong tree?
    6/11/11 7:44:54 PM /System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher[91] CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    6/11/11 7:44:54 PM /System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher[91] CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    6/11/11 7:44:54 PM /System/Library/CoreServices/AppleScript Runner.app/Contents/MacOS/AppleScript Runner[264] CPSGetFrontProcess(): This call is deprecated and should not be called anymore. 
    6/11/11 8:19:12 PM Automator Runner[415] Error while processing arguments
    6/11/11 8:20:31 PM /Applications/AppleScript/Folder Actions Setup.app/Contents/MacOS/Folder Actions Setup[420] CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    6/11/11 8:20:31 PM /Applications/AppleScript/Folder Actions Setup.app/Contents/MacOS/Folder Actions Setup[420] CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    6/11/11 8:20:32 PM [0x0-0x5b05b].com.apple.systemevents[421] com.apple.FolderActions.enabled: Already loaded
    And for that matter....why does Automator throw these messages? All apps (except iWork '08 apps) and OS are up to date.
        - Just a few of the many actions not loaded:
    6/11/11 7:48:25 PM Automator[294] The action “Start iTunes Visuals” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 7:48:25 PM Automator[294] The action “Stop iTunes Visuals” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 7:48:25 PM Automator[294] The action “Update iPod” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 7:56:33 PM Automator[294] name = name was not found
    6/11/11 7:56:33 PM Automator[294] name = name extension was not found
    6/11/11 7:56:33 PM Automator[294] name = file type was not found
    6/11/11 8:00:29 PM Automator Runner[339] Error while processing arguments
    6/11/11 8:00:30 PM Automator Runner[339] The action “Import Files into iTunes” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 8:00:30 PM Automator Runner[339] The action “Add Songs to iPod” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 8:00:30 PM Automator Runner[339] The action “Add Songs to Playlist” could not be loaded because the application “iTunes” is the wrong version.
    6/11/11 8:00:30 PM Automator Runner[339] The action “Apply SQL” could not be loaded because the application “Xcode” was not found.
    Do I need to wipe the drive again and re-install everything?
    Any help is greatly appreciated. Apologies if this seems long-winded.

    Folder Actions are set up a bit differently in Leopard (they use an AppleScript wrapper), and several actions have been updated to use new technologies available in Snow Leopard.  Looking at some of your console logs, it looks like some actions or workflows were just copied over from Snow Leopard.  When changing versions like that, you should rebuild the workflows so that they link to the correct actions, and check added actions for any dependencies (an action won't be loaded if it requires resources that are not available).
    Resaving your Folder Action workflow as a Folder Action Plug-in should do the trick.

  • Send blob strait to user without file creation

    I'm hope to find a way to take a PDF blob from my DB and send it directly to an end user without having to create a temp.pdf file.
         Connection conn = ds.getConnection();
         Statement stmt = conn.createStatement();
         ResultSet rs = stmt.executeQuery("SELECT file FROM tabe");
         if (rs.next()) {
            // retrieve PDF file
            Blob pdf = rs.getBlob("file");
            //stream to user
         }i got the blob to atleast store in a variable easy enough, but the issue is streaming it to the user.
    Blob pdf = rs.getBlob("file");
    // setup the streams to process blob
    InputStream input = pdf.getBinaryStream();
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    // set read buffer size
    byte[] rb = new byte[1024];
    int ch = 0;
    // process blob
    while ((ch=input.read(rb)) != -1) {
      output.write(rb, 0, ch);
    // transfer to byte buffer
    byte[] b = output.toByteArray();
    input.close();
    output.close();

    I'll show the the code I would use:
      public static synchronized int loadBlob( File pix )
        throws NullPointerException {
        if ( pix == null ) {
          System.out.println(FILE_ERR);
          return(0);
        byte            b       = 0;
        byte[]          tempix  = new byte[50000], // change to suite
                        pixels  = null;
        int             idx     = 0,
                        size    = 0,
                        count   = 0;
        String          pixName = pix.getName(),
    // Note - substitute preparedStatement as desired - just an example.
    // Note, in my case the filename is the ID used.
                        sqlS    = "select"
                                + "    my_table_name.blob_thing"
                                + "  from my_table_name"
                                + " where my_table_name.blob_id = "+pixName
                                + "   for update",
                        sqlI     = "insert into my_table_name ("
                                + "    my_table_name.blob_id,"
                                + "    my_table_name.blob_thing )"
                                + "  values ("
                                + "    ?,"
                                + "    EMPTY_BLOB())";
        Statement       stmt    = null;
        PreparedStatement pstmt = null;
        FileInputStream fis     = null;
        OutputStream    os      = null;
        Blob            blob    = null;
        ResultSet       rset    = null;
        try {
    * Insert initial row with empty Blob
          pstmt = conn.prepareStatement(sqlI);
          pstmt.setString(1, pixName);
          count = pstmt.executeUpdate();
    * Reclaim DB row
          stmt = conn.createStatement(); // Connection aquired elsewhere.
          rset = stmt.executeQuery(sqlS);
          if ( rset.next() ) {
            blob   = rset.getBlob(1);
            os     = ((oracle.sql.BLOB)blob).getBinaryOutputStream();
            fis    = new FileInputStream( pix );
            size   = fis.read(tempix);
            pixels = new byte[size];
            for (idx = 0; idx < pixels.length; idx++)
              pixels[idx] = tempix[idx];
            os.write(pixels);
            fis.close();
            os.close();
            conn.commit();/

  • Oracle 9i export error after running catexp.sql file

    After running catexp.sql file in oracle 9i 9.2.0.7.0 as system user,it gives the following error while logging
    ORA-04020: deadlock detected while trying to lock object SYS.DBMS_STANDARD
    please help me..............

    "catexp.sql" is to be run by SYS AS SYSDBA.
    You'd have to cleanup any extra objects that you created in the SYSTEM account.
    Why did you think that you needed to run "catexp.sql" ? Are you exporting using 9i exp against a 10g database or against a 9i database ?

  • Exporting .trx file after running testcases using TFS Inrelease 2013.4

    Hi All,
    Need your inputs in achieving a major blocker in our release process: 
    1) We are running testcases as the part of release process using Inrelease TFS 2013.4 .
    2) Testcases runs fine in a lab environment and the issues come wrt to .trx file.
    3) We couldn't find any .trx file in my RM deployer, after digging into the issue found the PS Script (TCMExec1.PS) has no option to export .trx file rather , it delete the .trx file .
    Look at below highlighted line : 
    If I comment the delete statement , it exports to %appdate%temp../RM../ location , every time I trigger test cases.
    Since it creates a new folder every time I run testcases, I m not able to read trx file to publish a customized report(We have written a login for this)
    Could you please help me with an option/script  to export to one particular location ? Like C:\Report ?  
    (Optional: Environment : TFS 2013.4 , Rm 2013.4, We are using RM Deployer ,MTM (Labcenter) 2013.4 )
    Many Thanks,
    Abraham Dhanyaraj

    Hi Abraham,
    I am glad to hear you resolved the issue. Thanks for sharing your experience here, it is good to other members who experience the same issue in the community.
    Best regards,

  • Open Hub export of file without meta file?

    Hi Gurus,
    I am daily exporting delta files with Open Hub Services to server.
    The name of the files include dates, so every day a new file is created and also a new meta S_ file is created.
    How can I export with Open Hub just data file without meta data file?
    Because every month there will be 30 meta files which will be of no use for me.....
    Regards, Uros

    Hi gurus,
    I've the same problem. I don't need of the S_ file. How can I block this file estraction??
    Thanks in advance & Best Regards,
    Domenico.

  • Can i export without double quotes in data files?

    How can i export without double quotes in data files using dataexport commands in MaxL?

    I don't know of any way to do any formatting in a straight export out of Essbase.  BSO lets you choose between a columnar vs. free form (really Essbase) format.  That lack of formatting includes removing double quotes.
    If you're willing to put up with the limitations (and formatting issues) of an MDX extract to a log file, that approach does not put double quotes around member names.  The same is true in Report Scripts although I have a vague recollection that you can put in double quotes if you want it -- obviously you do not.
    There are limitations to the above two approaches, the biggest being that they they are not as efficient as a true MaxL export.  OTOH, you may want only part of a database to get exported out in which case either approach may be more to your needs.
    If in fact you do want to do a full export, there are lots of OS-level ways of removing double quotes.  Here's a Windows-based approach:
    Removing double quotes in a batch program in Windows 2003 - Stack Overflow
    What would life be without hacks like the above?  Probably not worth living. 
    Regards,
    Cameron Lackpour

  • Quicktime won't export my file without a watermark

    I am trying to convert a wmv file into swf. I have flash and the flash video utility. But I can't bring a wmv file into flash; it has to be converted to something else first. I upgraded to Quicktime Pro today in order to do this part of it, but when I try to export it to a .mov file, I get a message from a completely different program saying I have to purchase the 'flip4mac player' before Quicktime will export without the watermark. Does quicktime not open wmv files? Why is this other program getting involved?
    thanks for any help. I hate to have to buy two programs just to do a conversion.

    http://flip4mac.com
    You must purchase one of the upgrades to export to WMP formats. Right now you're using the "trial" version of the third party component.

  • H.264 export without audio creates files that are not recognized in Quicktime or VLC

    Dear all,
    I need to generate h.264 files with video only. (short clips for use with a "clickable" catalog on an iPad)
    Used the "H.264" category and chose a preset. Unchecked "Audio" so I only get the video exported.
    The resulting .m4v file is not playable in Quicktime or VLC or MPEG streamclip.
    When I leave audio enabled with the same preset, the file is fine, but as soon as I export without audio, the resulting file is unreadable.
    Source material is ProRes 422HQ, audio+video, about 30-40 seconds long.
    Any clues?
    Carl.
    Mac Pro 5,1
    24GB RAM
    Nvidia Quadro4000
    4TB internal RAID0
    OS 10.7.5
    Premiere 6.0.2

    Thanks Jeff, I did get that far ;-)
    I'm sorry, probably my question wasn't very clear. Of course I can find some technical info about the iPad...
    And of course some of the presets in Media Encoder provide basic starting points for encoding.
    But... there is also the first iPad, I couldn't find the specs about it on the Apple site. On everymac.com I found:
    Apple reports that the iPad supports "H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats."
    So if I want to be compatible with all iPads I need to probably stay under 720p30 with [email protected] for H.264
    When I look at
    http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC
    I find (from the example values) that 1280x720@30p is quite near the maximum matrix size. So with 1024x576 I should be ok there. My bandwith of about 2Mbit is also well within range in this case. But what if I want to fill an iPod screen (1024x768) with the highest possible quality video? How do I calculate if this fits the max frame size requirements, where this is expressed in a number of luma samples and macroblocks? What is my max bandwith? The tables says that the "Max video bit rate for video coding layer (VCL) kbit/s" should be <14.000kbps. Does that directly translate to the sliders in my encoding app?
    If you look in the table "AVC software implementations" (under Software encoder feature comparison) you can see that some features that are supported in MainConcept, and not supported in Qt. (8×8 vs. 4×4 transform adaptivity, Quantization scaling matrices, Separate Cb and Cr QP control, etc. What are these exactly?)
    In Streamclip one can choose to have B-frames or not, in AME there is no such control. Does that mean it always encodes with B-frames? Why would one not want to have B-frames?
    A lot of parameters in AME H.264 encoding seem to be set to certain fixed values that are not accessible to the user. Other programs (Sorensen, Telestream) provide the user with access to more parameters. Which parameters in AME are set to what (fixed, non-accessible) values and why?
    As I said earlier, Quicktime reports different codecs for what should be the same format but from different encoders. Why? Is there a program that can analyze a H.264 stream and report about it in more detail than VLC/Quicktime?
    etc. etc. etc....
    If anyone could recommend an online resouce or a book to learn more about the ins and outs of H.264 encoding/decoding that would be great. I have the first edition of Charles Poynton's (brilliant!) book "Digital Video and HDTV", which does talk about MPEG-2 but not H.264. I saw that the second edition goes a bit more into detail about H.264. Does anyone have the second edition? Worth buying just for the relatively small addition about H.264?
    Thanks.
    Carl.

  • Intrastat export file creation

    Hi All,
    There is an issue for France that is related to intrastat export and import declaration file creation.
    When export file is created in positions 62 to 63 (regime) they need value = 21 and for import file value = 11; I donu2019t know where this should be maintained.
    Any body can help me.
    Is their any special configuration settings for this.

    Thanks to all

  • Is it possible to convert Java to EXE and run this EXE file without any JRE

    hello friends
    I have GCC/GCJ for windows but dont know how to work with it... it creates file with .o extension but i m not able to create .exe from that... i installed mingw for that also .. unsuccessful ...
    tell me the solution for it... i want to generate machine dependent exe from java file...on the web i ve seen that GCC/GCJ is used on linux platform..not cleared properly..
    Again i m writing my question
    Is it possible to convert Java to EXE and run this EXE file without any JRE if yes then how... tell me the procedure to do that...

    Vipul wrote:
    Its software now hardware .... some times u need these things ...anyway do u ve solution for my questionSo what? By creating a native executable you are restricting the program to the OS for which that native executable was made, just like removing the engine from a car restricts driving to downhill only. So like the I said, the principle remains the same, "Why would you want to?"
    I am asking you, truthfully, why do you feel the need to negate the largest advantage of using Java by creating a native executable from it?
    What is your rationale?
    I can pretty much guarantee there is a much better way of achieving your wish without "removing the engine".

  • Running X without a config file...

    hi,
    first post, so go easy on me.
    i have a thinkpad t21 with a savage video card that uses 8mb of video ram.
    i've been working my way through the beginners guide wiki, and had some questions about running x without an xorg.conf file. 
    i am able to start x as root and as a regular user without an xorg.conf file present, and all seems fine.  yet when i review my /var/log/Xorg.0.log in nano, i see two (ee) error lines:
    one says dri isn't enabled, and
    the other says insufficient videoram for 3d--try a lower color depth or a smaller desktop.
    do i really need to worry about either of those?  i'm not a gamer, and do not intend to start gaming with this laptop. 
    if i did decide to try to fix those errors, is the only way to make the changes to use a xorg.conf file?  or can i make the changes in some other way?
    i'd really like to not have to use an xorg.conf as when i did try to use one, i had more (ee) lines than what i'm getting without using one.
    should i just procees with installing openbox?
    any and all comments will be appreciated; thanks in advance...

    In my opinion neither error is anything to worry about.  As long as it's running at a resolution that is acceptable to you.  With that card it's not going to be blazing fast, videos might be a tad choppy, but I'll get you by for the basic stuff.

  • Running faces config file without using internet

    hi
    i m new to JSF
    how i can run faces config file without using live internet
    i have put "web-facesconfig_1_1.dtd" file at local path
    while i run the jboss,it will throw exception of fileNotFoundException

    Which version of JBoss are you using? I have successfully run 4.2.x off the grid but I typically use schema:<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
                  version="1.2">Note that I did not need to obtain copies of the files myself for use locally.

  • Recently switched from powermac to mac pro5 2x2.66GHz 6 -core xeon   running FCP 7 on OS 10.6.8  exporting qt files and rendering project files now takes longer than my old machine   looking at activity mon and % of user is aroun 6 and % of idle around 42

    recently switched from powermac to mac pro5 2x2.66GHz 6 -core xeon   running FCP 7 on OS 10.6.8  exporting qt files and rendering project files now takes longer than my old machine   looking at activity mon and % of user is aroun 6 and % of idle around 42  are all the cores being used with FCP7?

    johnnyapplesod wrote:
    exporting qt files and rendering project files now takes longer than my old machine
    It's because the PowerMac G5 had HUGE bandwidth with a fat BUS on each processsor so they could run hard, hot and heavy.
    It's not so with the Intel processors which are multi-core and share a common bus thus bottleneck.
    The newer Intel processors can do more work on the CPU, but when it comes to in/out they are s-l-o-w.
    I've had a wickedly fast dual processor (not dual core) G5, RAID 0 pair of 10,000 RPM drives as boot and a fast video card, I could do a lot very very fast.
    You'll likely have to upgrade to Final Cut X to get more cores utilized, prepare to cry a little bit, Apple is working on the features they stripped out of it to make amends to pro users who complained loudly. (all over TV too)
    http://www.loopinsight.com/2011/09/20/apple-releases-major-update-to-final-cut-p ro-x-release-demo-version/

  • How do you run a .sh file without errors?

    Hi. For any of you who are familiar with the game Minecraft, I'm trying to start making my own mods using Minecraft Forge Source. However, in the installation instructions, it says I have to run the install.sh file. But whenever I run it in Terminal, here's all that comes out in the Terminal window:
    *******-MacBook-Pro:~ *******$ /Users/*******/Downloads/forge/install.sh ; exit;python: can't open file 'install.py': [Errno 2] No such file or directory
    logout
    [Process completed]
    Could somebody tell me how to properly run the .sh file without errors? Any help that anyone gives will be appreciated. Thanks.

    You can try Crossover.
    It isn't free, but it lets you run most common windows apps without having to buy windows. (it only works on intel macs).
    Good luck!

Maybe you are looking for

  • How do I avoid duplicates after signing back in to my current iCloud account on my iPad?

    I had to delete my newer iCloud account and sign in to the App store with my old AppleID to download missing apps on my first generation iPad. I did not delete Contacts or Calendar entries when I deleted the newer account so the data is still on my i

  • I installed the latest update of itunes and now I can't even open itunes. I have Windows 7.

    As seen above. I installed the latest update of itunes, as an admin on my windows 7 and now nothing is working. I already deinstalled itunes. But nothing is working. Could please someone help. It's the 11.1 or 11.2 update I think

  • ENT Linux on intel 965 chipset  based systems

    Hi I am unable to install ENT Linux on my new Box (intel core 2 duo / dg965whmkr MoB / 2 G RAM) . Issue is installer fails to detect CDROM. Anybody succeeded installing ENT linux on a similar config like mine. Please help Regards Reju

  • Proper Audio Monitoring

    I'm looking at taking the next step with my setup, so that means proper audio monitoring. Can I get that just by taking the 1/8" audio out from my MacBook Pro, or do I need to go through an external box like a MXO 2 or AJA Express to get proper audio

  • Settlement rules In Marketing PS

    HI to All,   I would like to know about settlement rules in CRM marekting , Whats the functionality of this rules while creationg of WBS element? Kindly provide some insight on it . Regards, Sanjana