Using WLST to export from MDS - strange- perform diff. in two environments

It is very strange that the same WLST command perform differently in tow environment.
1. I did full export MDS from environment A using the following WLST command
2. import all of them into environment B (before that, I delete meta data from environment B).
3. use the same command below to export from environment B
exportMetadata(application='MyApp',server='AdminServer',toLocation='/mds2',docs='/**') However, in step1, export from environment A, I got over 700 documents (both my customizations and base doc). in step 3, export from environment B, I only got 5 documents (which are my customization only).
Is there any configuration in WLS control how the WLST exportMetadata perform?

Hi,
probably best to try this question on a Web Logic Server forum as WLST doesn't belong to JDeveloper
Frank

Similar Messages

  • Can I use the screen/monitor from my G4-iMac-linking the two together?

    Bought a new Mini and am just wondering if I can use the monitor of the iMac if I link the two computers together?
    TIA
    R

    The only real option is a VNC solution like this:http://www.screenrecycler.com/home.html
    cheers
    mrtotes

  • Green frames when using AppleScript to export from QT

    Not sure if this is a QuickTime issue, h.264 issue, or an AppleScript issue, but i thought I'd start here since I know the least about AppleScript and have some clues to the problem.
    I'm creating an Automator workflow that requires a run AppleScript action. My plan is to use applescript to have QuickTime Pro 7.6.6 export an image sequence from a QuickTime movie in h.264, using a QuickTime settings file I've already exported. The script points to the settings file and and exports the sequence to the output folder I've specified. Im looking to export one frame per second. Running the script works well and I'm almost getting the result I want, except that each frame that is exported is entirely green.
    Interestingly, when I run the exact same process manually, using the exact same settings, the export works fine, and the frames are correct. Additionally, exporting via AppleScript brings up a different status bar than when exporting manually, which leads me to believe that AppleScript is the culprit. Perhaps it's running some sort of outdated process? The AppleScript status bar comes down from the top middle of the video frame, while exporting manually, brings up a floating status bar. They look decidedly different.
    Has anyone run into this problem? Can possibly shed light on it? Possible AppleScript work around?  This only seems to effect h.264 videos. If I run the same AppleScript on a prores file, the images export correctly.

    Including the applescript in question could be helpful!
    tell application "QuickTime Player 7"
              export front document as image sequence using settings "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:settings:Sync_QTexport_setting.qtes" to "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:Assets:temp:Sync-"
    end tell

  • How to use one music library from one external hard drive on two different computers

    I have 57 gigs of music in my itunes library on my laptop (Windows Vista).  I backed up the library onto an external hard drive.  I would like to play the music on a second computer (Windows XP) without putting the music on the second computer, just keeping it on the external hard drive. 
    I have the latest version of iTunes and Quicktime installed.  In iTunes on both computers, under Advanced Preferences I changed the iTunes media folder location to the folder on the external hard drive and checked the boxes for "Keep iTunes media folder organized" and "copy files to iTunes media folder when adding to library".  Also under the File tab, "Organize Library", I clicked on "Consolidate Files" and "Reorganize Files in the folder itunes music".
    On the second computer I tried holding SHIFT while launching iTunes until the prompt appears asking to create a new library or point to an existing library.  While attempting to point to the new location, I am only able to open the music folder, not set it as the location.  In advanced preferences when I click "change" for the itunes media folder location, I can locate the folder but the only button I can click on is "open" or "cancel".  "Open" will open the folder showing all my music.  I tried typing in the location.  It shows the correct location.
    I was able to see the songs in the library in itunes on the second computer but it won't play the music.  There are no exclamation points next to the songs.  I am also able to see the playlists but there aren't any songs in the playlists.
    There are no problems with itunes on the first computer.  Everything works as it should.
    Ideally I would like to use the same folder on the external hard drive for both computers if possible.  But for now I want to at least get the music playing with the playlists on the second computer from the external hard drive.
    Please help.

    See this post on making a split library portable.
    tt2

  • Using Test Setting file to run web performance tests in different environments

    Hello,
    I have a set of web performance tests that I want to be able to run in different environments.
    Currently I have csv file containing the url of the load balancer of the particular environment I want to run the load test containing the web performance tests in, and to run it in a different environment I just edit this csv file.
    Is it possible to use the test settings file to point the web performance tests at a particular environment?
    I am using VSTS 2012 Ultimate.
    Thanks

    Instead of using the testsettings I suggest using the "Parameterize web servers" command (found via context menu on the web test, or via one of the icons). The left hand column then suggests context parameter names for the parameterised web server
    URLs. It should be possible to use data source entries instead. You may need to wrap the data source accesses in doubled curly braces if editing via the "Parameterize web servers" window.
    Regards
    Adrian

  • Can I Use OLE2 to export Excel without having excel?

    Dear all,
    Can i use CLIENT_OLE2 to export from a form to an excel sheet without having the Microsoft excel installed on the AS (Application server)?
    Thanks
    $hOoO$h

    Dear SHo0o0sh;
    yes u can run it on client side but the client must have Microsoft office
    like this :
    PROCEDURE init_excel (application in out client_ole2.obj_type ,
    workbooks in out client_ole2.obj_type ,
    workbook in out client_ole2.obj_type ,
    worksheets in out client_ole2.obj_type ,
    worksheet in out client_ole2.obj_type )IS
    args client_ole2.list_type;
    begin
    application:=client_ole2.create_obj('EXCEL.APPLICATION');
    workbooks:=client_ole2.get_obj_property(application,'workbooks');
    args:=client_ole2.create_arglist;
    client_ole2.add_arg(args,1);
    workbook:=client_ole2.get_obj_property(workbooks,'add',args);
    client_ole2.destroy_arglist(args);
    worksheets:=client_ole2.get_obj_property(workbook,'worksheets');
    worksheet:=client_ole2.get_obj_property(worksheets,'add');
    write_cell(worksheet , cell , 1 ,1 ,'your data');
    write_cell(worksheet , cell , 1 ,2 ,'your data');
    release_excel (application,
    workbooks,
    workbook ,
    worksheets ,
    worksheet);
    end;
    PROCEDURE write_cell (worksheet client_ole2.obj_type,
    cell in out client_ole2.obj_type,
    x number , y number , text varchar2) IS
    args client_ole2.list_type;
    BEGIN
    args:=client_ole2.create_arglist;
    client_ole2.add_arg(args,x);
    client_ole2.add_arg(args,y);
    cell:=client_ole2.get_obj_property(worksheet,'cells',args);
    client_ole2.destroy_arglist(args);
    client_ole2.set_property(cell,'value',text);
    client_ole2.release_obj(cell);
    END;
    Hope it works.
    Regards
    Reda El Mitwally

  • Using Multiple Linear Regression from SAP Predictive Analysis within S&OP

    How could I go about using a model exported from SAP Predictive Analysis, say a multiple linear regression model, as a stored procedure in HANA from within S&OP?

    Hi Kevin,
    You cannot use a model exported from SAP Predictive Analysis in S&OP.  S&OP uses the same PAL libraries from HANA for Statistical Forecasting. We enable a few statistical forecasting methods from PAL like exponential smoothing from S&OP.
    Thanks,
    Raghav

  • Using bash to import/export from qt

    i have an operation i perform repeatedly and would like to write
    a bash script to do it automatically.
    what i'd like to do is:
    1. open an image sequence in qtplayer
    2. file--->export
    3. set options (like custom size, what codec)
    4. save the export as the same filename as the first file of the image sequence
    can this be done via bash?
    can anyone point me to some info on passing parameters to qtplayer via bash?
    thanks,
    BabaG

    Have you tried using Applications -> Automator -> Record and then let Automator record steps you want to do. If that works, it would be the easiest way to automate this.
    If you want to invoke the Automator script you can use the open command from within bash
    If Automator -> Record does not work for you needs, then an Applescript is the next thing you should try. If you want to invoke this from bash use the osascript command.
    Applescript questions would be best asked in the Apple Applescript forum <http://discussions.apple.com/forum.jspa?forumID=724>
    If you want/need more bash shell script questions answered, the Apple Unix forum would be the best bet <http://discussions.apple.com/forum.jspa?forumID=735>
    And while I'm mentioning the open command, you can start *QuickTime Player* with a specific file usng open
    open -a /Applications/QuickTime Player.app file.jpg
    Where file.jpg could be any file that *QuickTime Player* knows how to handle.
    Steps 2, 3, & 4 are operations that would be better handled via Automator or Applescript.

  • I would like to use slideshow in lightroom to export my video as a full screen 1920x1080 video with text overlays.  I am using text overlay in lightroom as it reads from the metadata that is easy for me to input in the library screen.  When i export from

    I would like to use slideshow in lightroom to export my video as a full screen 1920x1080 video with text overlays.  I am using text overlay in lightroom as it reads from the metadata that is easy for me to input in the library screen.  When i export from lightroom slideshow and choose the 1920x1080 resolution the end product is a very small video in the middle of a black background.  i have double checked and do not have any borders turned on.  Another option would be to export from the library but lr mogrify does not seem to put text overlays on video either.  Any input would be welcome.

    I dont understand anything you said in your post.
    Do you have a specific question about video production?
    The forums are for individual technical or creative issues that users have with video production. I am sur someone will be able to help you, but and to get a response it is best to ask a specific question.
    Is this about a technical problem you have or something about setting up a web site? If its the latter this is the wrong forum.

  • Is it possible to use certutil to export multiple certificates from a local client machine store, to a .p7b file?

    Is it possible to use certutil to export multiple certificates from a local client machine store, to a .p7b file?
    Scenario: We have a few legacy certificates based on some legacy templates (2012 R2). Some belong to an old SubCA (2008 R2).
    I’ve can manually export them using certmgr mmc on the local machine to a single .p7b e.g.
    cert_backupNEW.p7b. But this is not a practical solution for me and I want to achieve this remotely via certutil or some other util that comes with Windows 7 machines.
    I’ve already worked out how to run a certutil command to add the certs back into the store e.g.
    certutil.exe -addstore -f my cert_backupNEW.p7b
    Is there a way to export multiple certs to a single backup cert, or is what I’m trying to do not possible with multiple certs?
    TC

    Something like this:
    $store = New-Object Security.Cryptography.X509Certificates.X509Store "my","localmachine"
    $store.Open("ReadOnly")
    Set-Content -Path exportedcerts.pfx -Value $store.Certificates.Export("pfx","password")
    $store.Close()
    note that this command will fail, if there are certificates with non-exportable keys. You cannot export certificates with non-exportable keys.
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell FCIV tool.

  • Everytime I export from FCP using comressor I am lose my audio, any ideas as to why this is happening. Or do I have somthing turned off and I am just missing it? Dual 2.7 Ghz PowerPC G5 1.5 GB DDR SDRAM, Mac OS X (10.4.6)

    Everytime I export from FCP using comressor I am lose my audio, any ideas as to why this is happening. Or do I have somthing turned off and I am just missing it? Dual 2.7 Ghz PowerPC G5 1.5 GB DDR SDRAM, Mac OS X (10.4.6)

    Exporting via Compressor may be recommended but it is slow and doesn't fully support all available filters, etc.
    Try exporting the timeline as a QT Movie (the "normal" export) using Current Settings and them submit the resultant clip to Compression. Works for me...

  • Strange quirk (?) with my pdfs exported from Indesign opened in PS

    I have created an 8 page brochure in Indesign and there is plenty of white space (just blank paper) at the top of each page - that's how I've designed it.
    Exported from Indesign and it looks fine, just like any other PDF. Open with Reader and the white space is still there.
    Export pages as Jpegs and teh white space is there.
    Open PDF pages in Photoshop and Photoshop actually crops the white space at the top away! the top of the page becomes the first element on the page (in this case, a text box)
    As an experiment, on two different pages I placed a random vector squiggle near the top of the pages to put something into the white space. Strangely, each page then comes into Photoshop as a different sized (height) page: photoshop seems to be almost (but not quite) taking the frame of each squiggle as the starting point of the top of the page.
    White space at bottom of page comes in fine - it is not chopped off. Entire document is as I would expect except the strange chopping off of the top of the pages!

    Typical!! - I solved the problem right after posting this.
    Works fine in Photoshop when "crop to crop box" is selected in  the menu options.

  • Issue using XSD from MDS

    Hi
    I am having issue when using XSD from MDS. ( AIA 11G)
    I have created MDS connection and tested it and it workds. Through SOA Browser -> Resource Pallet I am able to brouse XSD also. After selecting XSD when i import , I get below mentioned error
    Exception: oracle.mds.exception.MDSException: MDS-02501: cannot load the ORAMDS URL "oramds:/apps/AIAMetaData/AIAComponents/EnterpriseObjectLibrary/Industry/HealthSciences/EBO/SupplierParty/V1/SupplierPartyEBO.xsd" because MDS session could not be created or resolved
    MDS-01330: unable to load MDS configuration document
    MDS-01329: unable to load element "persistence-config"
    MDS-01370: MetadataStore configuration for metadata-store-usage "mstore-usage_2" is invalid.
    MDS-00918: Connection details for the MDS repository are incomplete. The values for "userName, password, jdbcURL" are invalid
    Is there something i am missing?
    Bikash

    i run into the same issue a lot and it seems that everytime i modify the composite or the bpel, somehow all the userid, password, and jdbc-url properties are removed from the adf-config file. i always have to restore to a previous version from history. i have no idea what causes jdeveloper to remove these tags and haven't yet found a remedy for this problem.

  • What is the best settings to use in the export manager when exporting from Aperture 3.5 to Photoshop cc.  tiff? psd? 16bit? dpi?

    What are the best settings to use in the export manager when exporting from Aperture 3.5 to Photoshop cc for editing? 
    Should I use tiff or psd?
    8bit or 16bit?
    How many dpi?

    That will depend on the photometric resolution of your originals. For jpegs it would be a waste of space to convert them to a higher resolution than 8bit, but if your images actually have already more than 8bit, you will want to preserve this quality. Then he 16bit format will help to prevent color clipping.
    Both tiff and psd will preserve the lossless workflow. With Photoshop as external editor I would use he psd format for better support of layers and transparency, e.g., when you want to create watermark files.
    The dpi will only matter, when you export the file for printing.

  • Exporting from FCP and using Compressor at the same time?

    Is it ok to export from FCP and use compressor at the same time? I am exporting a Self-Contained, Current Setting Quicktime Movie, and using Compressor to compress a similar HDV file to Mpeg2?

    Only in FCP 7.

Maybe you are looking for

  • How do I get iMessage and phone to ID proper contact card when caller's appears on multiple cards?

    I'm trying to set up the "ICE" (In Case of Emergency) Contact Card on my iPhone. (As recommended by Emergency Personnel, as it is the card they will look for on your phone in the event you are in an accident.) After inserting my Brother's and my Son'

  • URL IView with parameters having no parameter identifier

    I have created a url iview but the first parameter has no Parameter Identifier after the ?. Is there a way to code for this in the URL Parameters section of the iview. Here is par to of the URL: .../Pages/ReportViewer.aspx?%2fExpress ... if it said s

  • Focus rectangle around jCheckBox

    Hi all, I have a JCheckBox with no label text with it. Usually when the JCheckBox has focus, theres a dotted focus rectangle around the label text, so in this case there never is. Since theres a few checkboxes in the same panel, it gets very confusin

  • Using user_tab_columns on the trigger

    dear all i need to use user_tab_columns on the trigger before delete like ex SELECT a.column_name INTO l_col_name FROM user_tab_columns a WHERE a.table_name = 'EMPLOYEE' AND a.nullable = 'N'; this is not work because the query not retrieve column nam

  • Ownership percentage aggregation

    Greetings to All, I am new to HFM and I have a doubt on ownership % aggregation while performing consolidation. Situation like below. Parent entity "A" has 70% ownership on it's child entity "Aa" and we have given the same percentage for ownership wh