Smart Export without topology

Hello

I use Oracle Data Integrator 12.1.3. I'm doing a smart export in which I don't want to have information of topology (physical). Is it possible to do? If this isn't the case, in this version, do you know if it is possible in 12.2.1?

Thank you.

Yes there are actually

https://docs.Oracle.com/middleware/1221/ODI/reference-Java-API/index.html?Oracle/ODI/core/service/deployment/package-summary.html

Tags: Business Intelligence

Similar Questions

  • Is there a way to create a smart playlist without several songs from the same album?

    I would like to create a smart playlist without several songs of his same albums.  Is this possible?

    Timo,

    Unfortunately not.

    Smart playlist logic analyzes each song individually and includes those who correspond to rules.  There is no way to write a rule that depends on other songs in the same album.

  • Run a smart camera without computer

    What is the procedure to run a smart camera without a PC?  I would like to turn it on and it runs automatically.  The software was developed on the device itself, and it emits signals of success/failure in a continuous loop.  But if I do not have the program grew up on the host PC, or if the ethernet cable is disconnected, it does not work - even if the ACQ IMG light flashes as if it is running a program.

    I have a 1722 smart camera.

    Hi jblc,

    Assuming that you have developed your inspection in VBAI, the following KB should describe how to get it to run automatically at startup.

    How can I configure my Inspection VBAI to run at startup on my CV, EVS or smart camera?
    http://digital.NI.com/public.nsf/allkb/F79D691691FE564A86257141007A1B93?OpenDocument

  • Download smart print without the bing toolbar?

    Download smart print without the bing toolbar?

    It seems that you can only download the smart printing if you have the bing toolbar. The bing toolbar has the button print on it. So to answer your question without you cannot download the smart printing without the bing toolbar.

  • How to make a smart export a package with JAVA?

    Hello! And sorry for my bad English.

    I just want to know how to make a smartExport of a package in JAVA. I already write code, but it has exported all my project and not only my package.

            final String folderPath = fonctionDiverses.pathFolder();
            final String smartExportFileName = fonctionDiverses.xmlName();
            
            // Set the encoding of XML file
            final EncodingOptions expeo = new EncodingOptions ("1.0", "ISO8859_9",  "ISO-8859-9");
            
            Locale locale = new Locale ("en", "US");
            Locale.setDefault (locale);
    
            //
            // From which Project will be exported the Integration Interfaces? Set below the Project code
            final String srcOdiProjectCode = fonctionDiverses.projectName();
            
            //
            // Export the Integration Interfaces from the Project
            final List<ISmartExportable> expIntegrationInterfaces = new LinkedList<ISmartExportable> ();        
    
                     
                    // Allocate an odisinstance of the name
                    final OdiInstance odiInstance = odiInstanceHandle.getOdiInstance();
                    try
                      {
                         TransactionTemplate tx = new TransactionTemplate(odiInstance.getTransactionManager());
                         tx.execute(new TransactionCallbackWithoutResult()
                            {
                             protected void doInTransactionWithoutResult(ITransactionStatus pStatus)
                             {
                     
                            /*
                             * 
                             *  <<  ODI SDK Codes goes here >>
                             *  
                             */
                                 
                                // OdiProject project =  ((IOdiProjectFinder) odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder( OdiProject.class)).findByCode(srcOdiProjectCode); //$NON-NLS-1$
                    
                      
                                    Collection<OdiInterface> odiInterfaces = ((IOdiInterfaceFinder)odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder (OdiInterface.class)).findByName(fonctionDiverses.packageName(), srcOdiProjectCode, fonctionDiverses.folderName()); //$NON-NLS-1$
                                            
                                    for (OdiInterface pop : odiInterfaces) 
                                    {
                                        expIntegrationInterfaces.add( (ISmartExportable) pop);
                                        System.out.println("pop : "+ pop.getName ());
                                    }
                                
                                            
                                    ISmartExportService esvc = new SmartExportServiceImpl (odiInstanceHandle.getOdiInstance ());
                                    try {
                                        esvc.exportToXml (expIntegrationInterfaces, folderPath, smartExportFileName, true, false, expeo, false, null);
                            
                                    } catch (IOException e) {
                                        e.printStackTrace ();
                                    }
                        
                                    
                     
                              } });
                         }
                     
                    finally
                            {
                             odiInstanceHandle.release();
                            }
        }
    
    }
    
    

    I got my answer that I post here to help someone else.

    package truc;
    
        import java.io.IOException;
    
        import java.util.Collection;
        import java.util.LinkedList;
        import java.util.List;
        import java.util.Locale;
    
        import oracle.odi.core.OdiInstance;
        import oracle.odi.core.persistence.transaction.ITransactionStatus;
        import oracle.odi.core.persistence.transaction.support.TransactionCallbackWithoutResult;
        import oracle.odi.core.persistence.transaction.support.TransactionTemplate;
        import oracle.odi.domain.project.OdiInterface;
        import oracle.odi.domain.project.OdiPackage;
        import oracle.odi.domain.project.OdiProject;
        import oracle.odi.domain.project.finder.IOdiInterfaceFinder;
        import oracle.odi.domain.project.finder.IOdiPackageFinder;
        import oracle.odi.domain.project.finder.IOdiProjectFinder;
        import oracle.odi.impexp.EncodingOptions;
        import oracle.odi.impexp.smartie.ISmartExportService;
        import oracle.odi.impexp.smartie.ISmartExportable;
        import oracle.odi.impexp.smartie.impl.SmartExportServiceImpl;
        import oracle.odi.publicapi.samples.SimpleOdiInstanceHandle;
    
        public class ClassName {
    
            public static void main(String args[]){
    
                final FonctionParamExport fonctionDiverses = new FonctionParamExport();
    
                //Paramètre de connexion à ODI et au repo
    
                final SimpleOdiInstanceHandle odiInstanceHandle = SimpleOdiInstanceHandle.create
                        ("jdbc:oracle:thin:@localhost:1521:EXEMPLE",
                        "oracle.jdbc.OracleDriver",
                        "Repo_User",
                        "Repo_Password",
                        "WORKREP",
                        "ODI_user",
                        "ODI_password");
    
                //
                // Set the location, and name of the Smart Export .xml file (the file which will be created during the Smart Export operation, and which will hold the exported objects)
                final String folderPath = fonctionDiverses.pathFolder();
                final String smartExportFileName = fonctionDiverses.xmlName();
    
                // Set the encoding of XML file
                final EncodingOptions expeo = new EncodingOptions ("1.0", "ISO8859_9",  "ISO-8859-9");
    
                Locale locale = new Locale ("en", "US");
                Locale.setDefault (locale);
    
                //
                // From which Project will be exported the Integration Interfaces? Set below the Project code
                final String srcOdiProjectCode = fonctionDiverses.projectName();
    
                //
                // Export the Integration Interfaces from the Project
                final List expIntegrationInterfaces = new LinkedList ();        
    
                // Allocate an odisinstance of the name
                final OdiInstance odiInstance = odiInstanceHandle.getOdiInstance();
                try
                  {
                     TransactionTemplate tx = new TransactionTemplate(odiInstance.getTransactionManager());
                     tx.execute(new TransactionCallbackWithoutResult()
                        {
                         protected void doInTransactionWithoutResult(ITransactionStatus pStatus)
                         {
    
                             OdiProject project =  ((IOdiProjectFinder) odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder( OdiProject.class)).findByCode(srcOdiProjectCode); //$NON-NLS-1$
    
                                Collection odiPackages = ((IOdiPackageFinder)odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder (OdiPackage.class)).findByName(fonctionDiverses.packageName(), srcOdiProjectCode, fonctionDiverses.folderName()); //$NON-NLS-1$
    
                                for (OdiPackage pop : odiPackages)
                                {
                                    expIntegrationInterfaces.add( (ISmartExportable) pop);
                                    System.out.println("pop : "+ pop.getName ());
                                }
    
                                ISmartExportService esvc = new SmartExportServiceImpl (odiInstanceHandle.getOdiInstance ());
    
                                try {
                                    esvc.exportToXml (expIntegrationInterfaces, folderPath, smartExportFileName, true, false, expeo, false, null);
    
                                } catch (IOException e) {
                                    e.printStackTrace ();
                                }
    
                          } });
                     }
                    finally
                        {
                         odiInstanceHandle.release();
                        }
            }
        }
    
  • If I change the Smart previews without the original image, adjustments will remain?

    If I change the Smart previews without the original image, adjustments will remain when the original is located? (All original documents are on the hard drive of my client)

    Hello

    Yes, the adjustments will remain and will perform the synchronization that you plug the original images.

    Kind regards

    Tanuj Sandal

  • Resize the layer with smart filter without affecting the Smart Filter layer appearance

    I made a wax seals on photoshop with lots of embossing, bevelment and a dynamic filter. It's done and I just need to make it smaller so it fits well on my certificate. When I resize (Ctr + T) it appears a messgae which reads:

    ______________________________________________

    Adobe Photoshop CS6 extended

    "The dynamic filters applied to the layers contained in this group will be disabled at the temprarily while conversion is in preview. They will be applied after commit the transformation. »

    Ok

    [] Do not show

    ______________________________________________

    I click OK and I resize the layer with free transform, and then press ENTER. The layer is resized, but my smart filter that cretaes affect a shower around the joint is completely distorted.

    How to resize my layer with smart filter without affecting the appearance of dynamic filter of the layer

    Right-click on the name of the layer to smart object in the layers panel to get the menu below. Choose "Convert to Smart Object" to encapsulate the er and its smart filter and Layer Styles within a new KIND that can be resized without appearance changes.

  • Export without red cross... Help, please...

    asas.png

    How to export without the red cross line? I am trying to export to AVI, but whenever I exported, it will be a red line between the movie. I am a newbie to AE.

    Thanks in advance...

    You are using a trial version of a plug-in. To remove the watermark (Red Cross), you will need a serial or registration number port. To understand that we're not only registered disable them one at a time until the watermark disappears.

  • How to export without re-encoding? [PrEl 11]

    I have been in charge of the research and have no chance to find an answer to this. Maybe I'm just not finding the right conditions. Or maybe I'm missing something obvious. Laughing out loud! In any case, I hope someone can help out me.

    I go through my original video files and cut out the bad pieces and save individual short clips from that which I then use to build movies. Years, I would use VirtualDub for that because it was quick and easy. But operate with modern DSLR files is more of a hassle that I want to do. So I am using PrEl for this initial step as well. The problem is, I don't see any way to export only the clips ready without re-encoding them. It is not a deal huge as the re - encode additional does not appear to cause no visible degradation. Yet, however, it would be faster and cleaner to simply export the clips cut as is without re-encoding, as I did with VirtualDub. Only, I can't figure out how to get PrEl to do. Anyone know?

    Thank you

    Michelle

    * Waves to the oldies who were here when I was at the time where PrEl arrived off *.

    Because this thread has meandered, I'll summarize the answer for anyone in the future who can search on it.

    • First elements cannot do the "smart edit" with this codec, although, according to Steve, he can with some as DV - AVI.
    • First Elements can make an uncompressed store, which is an option, although the compromise is uncompressed video is big enough. See this post: http://forums.adobe.com/message/3791571#3791571
    • There are other programs out there that are able to make a 'smart edit"with h264. Some are mentioned in the thread, but I'm not going to list them in the abstract because I don't know how ok this is to post a link to other forum software. If it's important for you, Google them will turn upward.

    Hope that helps future researchers.

  • Export without sequence video coding

    I edited the clips of a camcorder format (progressive 50i/s on the hd 1080 x 1920 full panasonic) which is entirely compatible bluray.

    (I would like to export the sequence without encoding again from one) it is a long and b process) provides that the reduction in quality with regard to the native format. (there is reason that the effects have to rencoded).

    Can sombedoy tell me how to proceed?

    Thank you

    Phalch

    And don't forget that "smart rendering" applies only to images, which has just been shortened, or joined, that is if you add Transitions, overlay (titles or PiP) or effects, then you'll still Render/Trnascode these parts for export. For pure milling and joining, VirtualDub would be the best way to go.

    Then, when you are finished, you can use any number of DVD/BD creation programs to create a BD 100% compatible BD (very important) material. Although I've not used so, DVD Architect gets high marks from others.

    Good luck

    Hunt

  • Export without going through youtube, etc.

    As a new user of Final Cut, I'm horrified to discover there seems to be no way to use this program without having a YouTube account and export directly to it or something like it. This is the stupidest thing I've ever heard. There must be a way to export the stupid movie I've done without having to go to YouTube or Facebook, Vimeo or whatever. Why can't simply export to a file and then download it if I want to?

    Is it possible, or is Apple completely out of its corporate mind brainless?

    Of course you can.

    Base file or one bunch of others:

    Add the destination can be used for even more.

    Al

  • How to save a smart object without a background?

    I wanted to change my smart object but it won't save without giving me a background... What am I doing wrong?

    As I said in my first answer is that you must use Save as and save it as a buffer or psb. You need to replace your happy smart object with the new saved file. No quick way to do it.

  • change of format ProRes files, then export WITHOUT encoding again

    Hello world

    I am re-editing of a 52-minute documentary of a file of format ProRes 422 HQ, which was the first version.

    All I have to do is to cut some shots to shorten the 40-minute documentary. No effect, nothing else that cuts.

    When I export the new version back in the file format ProRes 422 HQ (exact same format as the source), it seems that first (or Media Encoder) is again encoding format ProRes 422 HQ (new generation...). The loss of quality is unperceptible, BUT it is slower that we should...

    Is it possible to export my new short version in the same format in a sort of passtrough (just a copy of the original file that I've kept)? Final Cut Pro 7 is the way...

    Thank you!

    noar

    Take a look at this:

    Smart Rendering in Premiere Pro CS6 (6.0.1 and later), & first Pro CC

  • Export without loss after Warp nouvis Image stabilization

    I apply image stabilization, then I want to make and re-import for correcting the colors and others. To speed up performance, due to the

    nature of the process of Image Stabilazation makes slow of course.

    The source file is saved with a helmet Cam Replay XD 1080 (model HD) .mov

    Basically I want to export the video with just the 'stabilizer chain', with possibility to reimport

    However, default lossless is out showing as AVI...

    I know how to change the format setting.

    However, I saw a video where when the guy did, she kept the .mov format, and it was not obliged to .avi.

    And anyway I go, the size of the resulting file is large enough.

    Is this normal?

    The default output on Windows module is an AVI file without compression. The default on Mac OS is a MOV file with compression without loss of Animation. Either of them will give you a huge file, since one is uncomprssed and one is only slightly compressed.

    more information here:

    http://forums.Adobe.com/thread/684381

  • Question - export without Audio

    Together with Photoshop CS5 Extended.

    I opened a video clip that contains audio and audio plays in the timeline with the video.  Object converted to chip and the applied filter.  When I export the clip I see that there is no audio data.  The dialog box tells me there is no audio data and the exported video plays without audio.

    How to export the video changed to include the audio track?

    Failure is here:

    Object converted to chip and the applied filter.

    Audio export only works at the root level. Try to use a layer duplicated as the audio source...

    Mylenium

Maybe you are looking for