Wht are best paramters for (EXTRACT & REPLICAT) DDL & DML paramters

hi,
I just need paramter for DDL & DML paramters for extract & replicat paramter.
i have one schema that has 500 tables but i have to replicate only 300 tables. so kindly tell me its relative & best one paramter for these tables.
THanks in Advance
Regards,
AMSII
Edited by: AMSI on May 9, 2013 3:13 AM
Edited by: AMSI on May 9, 2013 3:22 AM
Edited by: AMSI on May 10, 2013 12:09 AM

AMSI wrote:
hi,
I just need paramter for DDL & DML paramters for extract & replicat paramter.
i have one schema that has 500 tables but i have to replicate only 300 tables. so kindly tell me its relative & best one paramter for these tables.
For sample parameter files for GoldenGate, see "Oracle GoldenGate "best practices" sample parameter files" in note 1321696.1
To replicate only 300 of 500 total tables, you would probably want to generate the list of the tables using sql, saving the result to a file, and "include" that file in the prm file. For example,
<blockquote>
--dirprm/capture.prm
extract capture
...etc..
include tables.prm
</blockquote>
And then a second file, generated by running a sql script on the tables you want to replicate,
<blockquote>
--dirprm/tables.prm
table schema.table1;
table schema.table2;
</blockquote>

Similar Messages

  • What are best practices for managing my iphone from both work and home computers?

    What are best practices for managing my iphone from both work and home computers?

    Sync iPod/iPad/iPhone with two computers
    Although it isn't possible to sync an Apple device with two different libraries it is possible to sync with the same logical library from multiple computers. Each library has an internal ID and when iTunes connects to your iPod/iPad/iPhone it compares the local ID with the one the device normally syncs with. If they are the same you can go ahead and sync...
    I have my library cloned to a small 1Tb USB drive which I can take between home & work. At either location I use SyncToy 2.1 to update the local copy with the external drive. Mac users should be able to find similar tools. I can open either of the local libraries or the one on the external drive and update the media content of my iPhone. The slight exception is Photos which normally connects to a specific folder on a specific machine, although that can easily be remapped to the current library if you create a "Photos" folder inside the iTunes Media folder so that syncing the iTunes folders keeps this up to date as well. I periodically sweep my library for new files & orphans withiTunes Folder Watch just in case I make changes at one location but then overwrite the library with a newer copy from the other. Again Mac users should be able to find similar tools.
    As long as your media is organised within an iTunes Music or Tunes Media folder, in turn held inside the main iTunes folder that has your library files (whether or not you let iTunes keep the media folder organised) each library can access items at the same relative path from the library folder so the library can be at different drives/paths on different machines. This solution ensures I always have adequate backups of my library and I can update my devices whenever I can connect to the same build of iTunes.
    When working with an iPhone earlier builds of iTunes would remove any file not physically present in the local library, even if there was an entry for it, making manual management practically redundant on the iPhone. This behaviour has been changed but it will still only permit manual management with a library that has the correct internal ID. If you don't want to sync your library between machines on a regular basis just copy the iTunes Library.itl file from the current "home" machine to any other you want to use, then clean out the library entires and import the local content you have on that box.
    tt2

  • What are best practice for packaging and deploying j2EE apps to iAS?

    We've been running a set of J2EE applications on a pair of iAS SP1b for about a year and it has been quite stable.
    Recently however we have had a number of LDAP issues, particularly when registering and unregistering applications (registering ear files sometimes fails 1st time but may work 2nd time). Also We've noticed very occasionally that old versions of classes sometimes find their way onto our machines.
    What is considered to be best practice in terms of packaging and deployment, specifically:
    1) Packaging - using the deployTool that comes with iAS6 SP1b to package is a big manual task, especially when you have 200+ jsp files. Are people out there using this or are they scripting it with a build tool such as Ant?
    2) Deploying an existing application to multiple iAS's. Are you guys unregistering old application then reregistering new application? Are you shutting down iAS whilst doing the deployment?
    3) Deploying ear files can take 5 to 10 mins, is this normal?
    4) In a clustered scenario where HTTPSession is shared what are the consequences of doing deployments to data stored in session?
    thanks in asvance for your replies
    Owen

    You may want to consider upgrading your application server environment to a newer service pack. There are numerous enhancements involving the deployment tool and run time layout of your application that make clear where you're application is loading its files from.
    If you've at a long running application server environment, with lots of deployments under your belt, you might start to notice slow downs in deployment and kjs start time. Generally this is due to garbage collecting in your iAS registry.
    You can do several things to resolve this. The most complete solution is to reinstall the application server. This will guarantee a clean ldap registry. Of course you've got to restablish your configurations and redeploy your applications. When done, backup your application server install space with the application server and directory server off. You can use this backup to return to a known configuation at some future time.
    For the second method: <B>BE CAREFUL - BACKUP FIRST</B>
    There is a more exhaustive solution that involves examining your deployed components to determine the active GUIDS. You then search the NameTrans section of the registry searching for Applogic Servlet *, and Bean * entries that represent your previously deployed components but are represented in the set of deployed GUIDs. Record these older GUIDs, remove them from ClassImp and ClassDef. Finally remove the older entries from NameTrans.
    Best practices for deployment depend on your particular environmental needs. Many people utilize ANT as a build tool. In later versions of the application server, complete ANT scripts are included that address compiling, assembly and deployment. Ant 1.4 includes iAS specific targets and general J2EE targets. There are iAS specific targets that can be utilized with the 1.3 version. Specialized build targets are not required however to deploy to iAS.
    Newer versions of the deployment tool allow you to specify that JSPs are not to be registered automatically. This can be significant if deployment times lag. Registered JSP's however benefit more fully from the services that iAS offers.
    2) In general it is better to undeploy then redeploy. However, if you know that you're not changing GUIDs, recreating an existing application with new GUIDs, or removing registered components, you may avoid the undeploy phase.
    If you shut down the KJS processes during deployment you can eliminate some addition workload on the LDAP server which really gets pounded during deployment. This is because the KJS processes detect changes and do registry loads to repopulate their caches. This can happen many times during a deployment and does not provide any benefit.
    3) Deploying can be a lengthy process. There have been improvements in that performance from service pack to service pack but unfortunately you wont see dramatic drops in deployment times.
    One thing you can do to reduce deployment times is to understand the type of deployment. If you have not manipulated your deployment descriptors in any way, then there is no need to deploy. Simply drop your newer bits in to the run time space of the application server. In later service packs this means exploding the package (ear,war, or jar) in to the appropriate subdirectory of the APPS directory.
    4) If you've changed the classes of objects that have been placed in HTTPSession, you may find that you can no longer utilize those objects. For that reason, it is suggested that objects placed in session be kept as simple as possible in order to minimize this effect. In general however, is not a good idea to change a web application during the life span of a session.

  • Best Practice for Extracting a Single Value from Oracle Table

    I'm using Oracle Database 11g Release 11.2.0.3.0.
    I'd like to know the best practice for doing something like this in a PL/SQL block:
    DECLARE
        v_student_id    student.student_id%TYPE;
    BEGIN
        SELECT  student_id
        INTO    v_student_id
        FROM    student
        WHERE   last_name = 'Smith'
        AND     ROWNUM = 1;
    END;
    Of course, the problem here is that when there is no hit, the NO_DATA_FOUND exception is raised, which halts execution.  So what if I want to continue in spite of the exception?
    Yes, I could create a nested block with EXCEPTION section, etc., but that seems clunky for what seems to be a very simple task.
    I've also seen this handled like this:
    DECLARE
        v_student_id    student.student_id%TYPE;
        CURSOR c_student_id IS
            SELECT  student_id
            FROM    student
            WHERE   last_name = 'Smith'
            AND     ROWNUM = 1;
    BEGIN
        OPEN c_student_id;
        FETCH c_student_id INTO v_student_id;
        IF c_student_id%NOTFOUND THEN
            DBMS_OUTPUT.PUT_LINE('not found');
        ELSE
            (do stuff)
        END IF;
        CLOSE c_student_id;   
    END;
    But this still seems like killing an ant with a sledge hammer.
    What's the best way?
    Thanks for any help you can give.
    Wayne

    Do not design in order to avoid exceptions. Do not code in order to avoid exceptions.
    Exceptions are good. Damn good. As it allows you to catch an unexpected process branch, where execution did not go as planned and coded.
    Trying to avoid exceptions is just plain bloody stupid.
    As for you specific problem. When the SQL fails to find a row and a value to return, what then? This is unexpected - if you did not want a value, you would not have coded the SQL to find a value. So the SQL not finding a value is an exception to what you intend with your code. And you need to decide what to do with that exception.
    How to implement it. The #1 rule in software engineering - modularisation.
    E.g.
    create or replace function FindSomething( name varchar2 ) return foo.col1%type is
      id foo.col1%type;
    begin
      select col1 into id from foo where col2 = upper(name);
      return( id );
    exception when NOT_FOUND then
      return( null );
    end;
    And that is your problem. Modularisation. You are not considering it.
    And not the only problem mind you. Seems like your keyboard has a stuck capslock key. Writing code in all uppercase is just as bloody silly as trying to avoid exceptions.

  • What are best practices for rolling out cluster upgrade?

    Hello,
    I am looking for your input on the approaches to implement Production RAC upgrade without having a spare instance of RAC servers. We have a 2-node database RAC 11.1 on Production. We are planning to upgrade to 11.2 but only have a single database that the pre-Production integration can be verified on. Our concern is that the integration may behave differently on RAC vs. the signle database instance. How everybody else approaches this problem?

    you want to test RAC upgrade on NON RAC database. If you ask me that is a risk but it depends on may things
    Application configuration - If your application is configured for RAC, FAN etc. you cannot test it on non RAC systems
    Cluster upgrade - If your standalone database is RAC one node you can probably test your cluster upgrade there. If you have non RAC database then you will not be able to test cluster upgrade or CRS
    Database upgrade - There are differences when you upgrade RAC vs non RAC database which you will not be able to test
    I think the best way for you is to convert your standalone database to RAC one node database and test it. that will take you close to multi node RAC

  • What are best practices for connecting asa to nexus 5000

    just trying to get a feel for the best way to connect redundant asa to redundant nexus 5000
    using a vpc vlan is fine, but then running a routing protocol isn't supported, so putting static routes on 5000 works, but it doesn't support ip sla yet so you cant really stop distributing the default if your internet goes down. just looking for what was recommended.

    you want to test RAC upgrade on NON RAC database. If you ask me that is a risk but it depends on may things
    Application configuration - If your application is configured for RAC, FAN etc. you cannot test it on non RAC systems
    Cluster upgrade - If your standalone database is RAC one node you can probably test your cluster upgrade there. If you have non RAC database then you will not be able to test cluster upgrade or CRS
    Database upgrade - There are differences when you upgrade RAC vs non RAC database which you will not be able to test
    I think the best way for you is to convert your standalone database to RAC one node database and test it. that will take you close to multi node RAC

  • What are best uses for Fireworks?

    I've been working with dreamweaver, flash and photoshop for years, but have avoided Fireworks because I could make a nav bar some other way, in flash or just use mouse-overs in Dreamweaver. Now I bought the CS5.5 upgrade and it includes Fireworks which now I am totally unfamiliar with. Could you tell me what I can use Fireworks for to help my small home-based website building business?
    Thank You,
    Ken

    Fireworks' workflow is better suited to Web development, than Photoshop or Illustrator. That's what it was designed for.
    For example, I will make different layers for different content areas. I might have a layers for the background, the header, the  footer, and any placeholding content text I want to include just to see how it would look. Layers in Fireworks allow you to organize the content of a Fireworks document in ways that I don't think you can do as easily in Photoshop. This makes it easy to concentrate on one area while having the other areas locked or hidden.
    Also, with FW, you have a hybrid bitmap and vector graphics program. It can do some of what both Photoshop and Illustrator can do, so you spend less time moving between applications. It's easy to manipulate and composite bitmaps and vectors in FW. (Naturally, you should use the tool that is best suited for a particular task: complex photo editing should be done in Photoshop and complex illustrations created in Illustrator.)
    Like LInda, I will mock up my designs in FW. I slice and export my images, then build page templates in DW based on the mockup.

  • What are BEST settings for the WEB?

    Hello, I have a short in RED Hd 1920/1080 finished on FCP 6. I made a QT and then used compressor to make a 800mbps Quicktime for the web, deinterlaced and checked BETTER tab, others stayed with regular.
    I also made one through FCP into a QT in 640/480 which is size I need.
    On the web it looks clear and plays fine. Problem is when there is motion or
    lots of movement, it stops and goes, jitters like ****, not smooth all.
    What settings are best to make it SMOOOTH, just like when watching it on computer or as best. I know you got much bigger things to talk about but if you know please let me know.
    H.264, Mpeg4 or Sorenson ect...just looking for smooth as can get it for playing on web.
    THANKS.

    800mbps Quicktime for the web,< </div>
    The compression is reducing the number of pixels being shown in order to maintain the bitrate. So rapid motion, which requires nearly all of the pixels to be redrawn, causes things to stutter.
    Compression is really, really hard to do. Really.
    bogiesan

  • Best practice for extracting data to feed external DW

    We are having a healthy debate with our EDW team about extracting data from SAP.  They want to go directly against ECC tables using Informatica and my SAP team is saying this is not a best practice and could potentially be a performance drain.  We are recommending going against BW at the ODS level.  Does anyone have any recommendations or thoughts on this?

    Hi,
    As you asked for Best Practice, here it is in SAP landscape.
    1. Full Load or Delta Load data from SAP ECC to SAP BI (BW): SAP BI understand the data element structure of SAP ECC, and delta mechanism is the continous process of data load from a SAP ECC (transaction system) to BI (Analytic System).
    2. You can store transaction data in DSOs (granular level), and in InfoCubes (at a summrized level) within SAP BI. You can have master data from SAP ECC coming into SAP BI separately.
    3. Within SAP BI, you SHOULD use OpenHub service to provide SAP BI data to other external system. You must not connect external extractor to fetch data from DSO and InfoCube to target system. OpenHub service is the tool that faciliate data feeding to external system. You can have Informatica to take data from OpenHubs of SAP BI.
    Hope I explain to best of your satisfaction.
    Thanks,
    S

  • Best Option for extracting B2 cluster data

    Hello Experts,
    I need your expert opinions for one of my extraction needs. The need is to extract data from B2 cluster. My doubts are on the best possible way for implementing this generic extractor. Below are my thoughts:
    1. Build a generic extractor and write a user exit that calls FM 'HR_FORMS_TIM_GET_B2_RESULTS'. Somehow pass the DATE ranges and PERNR as parameters to the FM and later build my extraction logic. But, what would really be the source for this generic extractor. An extract structure is just not sufficient.
    2. Other approach is to use FM based extractor (using copy of RSAX_BIW_GET_DATA_SIMPLE) and have copy of 'PTDW_QUOT' extract structure as E_T_DATA parameter. This can get complex.
    Please share any thoughts on the above approaches. Looking forward to the best possible way of doing this...
    Thanks.

    Hi Mann
    I am also tryiing to extract B2 cluster data to BI.  I would really appreciate any info/advice you could share on your resolution.  Is it working well?
    Thanks very much

  • What are best options for home Mac Wi-Fi setup?

    Having a newer 3rd gen iPod Touch and planning on getting
    an Apple laptop ... what are some of the better Wi-Fi options
    to setup in my home environment (using indoors and around
    the house, patio, etc.?
    I'm obviously aware of Apple's products like AirPort Express Base Station,
    AirPort Extreme Base Station, and maybe even the older AirPort bases, but
    would also welcome any suggestions to inexpensive third-party "Mac friendly"
    Wi-Fi routers as well (ie: Belkin, NetGear, etc.)
    Some of the older Apple AirPort Base units are showing up on eBay, and
    even though slower than the newer Apple Wi-Fi routers, seem to offer a reasonable
    entry point at a reasonable price.
    What are some of the best Wi-Fi routers for a basic setup, the most reliable, and
    least expensive for starting out?
    Any suggestions will be appreciated.

    Apple routers generally work well but are expensive and in the middle range of performance. The Airport Extreme base station works well and is capable of operation across both the 2.4 and 5 GHz bands. Your Macbook will do well at 5 GHz and your touch at 2.4 GHz. However, there are other routers out there that will perform better for less money.
    So, I suggest you do some research on what would best fit your needs. The following website, http://www.smallnetbuilder.com/ does a really good job of wireless router reviews, albeit a bit technical. If you don't need the 5 GHz band, then there are a number of 2.4 GHz routers out there that will do really well for under $100. A good wireless N 2.4 GHz router will work well in your application.
    For prices and user reviews, both NewEgg and Amazon are much better locations to research/purchase than E-Bay.

  • What are best settings for host when PPTX is in continous loop

    Thanks to help from Jorma is was able to set my PPTX in continous loop, and change the amount of seconds a slide was shown see how do i let a pptx presentation run on its own
    There is only one issue left. What are the best settings. I find that to let it run, i need to press the sync button, but then the participants may choose (inadvertently) to stop the presentation from running in the loop.
    What are the correct settings, so that a participant only sees the slides (no side bar etc) and the loop is running?
    Your answer is very much appreciated

    You shouldn't need to press the Sync button. In the Pod options menu for the share pod, with the PPT loaded, you will see an option for Show Presentation Playbar. Use that to get the Play button for the Hosts and Presenters in the room, and press play. The presentation will now play in a looped mode for everyone in a synchronized mode. You can also then hide the playbar to keep other Hosts and Presenters from stopping the playback and the Participants will never see the playbar or have the option to stop the presentation.
    Additionally, if your focus is on the Share pod (has the focus highlight), you can use the 'P' key to begin playing the presentation without revealing the playbar to anyone. Adobe Connect 9 * Accessibility features

  • Best practice for Extracting sales contracts from R/3

    Hi Everyone,
    We have a requirement to bring sales contract data from R/3 and most of the fields from table VEDA. 2lis_11_vaitm don't carry VEDA fields.
    What are the best practices on brining VEDA fields into BW?
    Thanks,
    D. Eranezhath

    New URLs are:
    LOGISTIC COCKPIT - WHEN YOU NEED MORE - First option: enhance it !
    Custom fields and BW extractors : Making a mixed marriage work! (Part-II)

  • What Apps are best suited for my Specific Purpose?

    I am in need of some advice. I am very close to pulling the trigger on an IPad, I would like to use it as a one on sales presentation tool in a retail environment to my clients. Here is my question.
    My company uses documents that are to be used doing the sales presentation; I would like to draw / sketch and make notes on the documents that are saved on the IPad to be used over and over. I like the idea of using innovative technology to do what I want to do.
    This would be a put of pocket expense for me until I can prove to the company that it is a worthwhile investment. What simple apps are available that allow me bring up the documents and make my side notes, sketches, drawings and any other comments that I may want to use during the sales presentation.
    I eagerly wait for your answer,
    Brian

    Presuming docs are in PDF form, consider:
    http://appshopper.com/productivity/iannotate-pdf
    or
    http://appshopper.com/productivity/annotater

  • What Comp Settings are Best/Flexible for Animated Tutorials 4 Multiple Devices laptop, iPad, and TV?

    I'm making animated tutorials on a particular subject.  I will have these on a website and want them to be viewable on devices ranging from laptops to iPads to TV to iPhones.  I believe one approach to setting my Comp Settings for AE is to use a Preset like HDV/HDTV 720 which results in 1280x 720  pixels, 720 pixel resolution, square pixels, and a 16:9 ratio.  The advantage, as I understand it, is that it will work for HDTV and that, if I use something like YouTube, horizontal letterboxing will be the result in a 4:3 format (of course, with black lines top and bottom). 
    Unfortunately, this seems to make great sense if the content is, say, from video photography of scenes.  My content is animation and enough text at times to make me think horizontal letterboxing will make that text too small to read... that I will sacrifice some content and quite a bit of readability in such horizontally letterboxed setups.  Am I better off sticking with Comp settings at, say, a 4:3 ratio and accepting the "black pillars" on wide devices?  If so, what should my resolution be and what should the absolute width and absolute height be in pixels?  640x480? 1280x960? Something else?  My main concern hear is that I have enough pixels and resolution so that inages remain clear on TV.
    Anything you can enlighten me on here will be greatly appreciated.  Is there a great discussion/tutorial on this somewhere?  Because I'm having the growing creepy sensation that the more movies I make, the more "fixing" I'm going to be needing to do when I start up my website.  Please pull this thorn out of my paw!  Thanks in advance!
    I have a MacBook Pro with Snow Leopard... and CS5.5 Master Collection, so I have Media Encoder.  I'm also on Lynda.com every day.  So point me in the right direction and I'll attack.
    Road Quill

    Thanks Bogie san!  This is a big help to getting me started.  And the link got me a little farther into Media encoder as well as Group of Pictures, intra-frame, and inter-frame.
    One more related question... which will no doubt look simple (minded) but have an answer fraught with complexity. 
    If you were me (don't panic!), and you're making animated tutorials in AE with lots of illustration (some created in Illustrator and some in After Effects) and a significant amount of text from time to time (e.g., sometimes there are several boxes with, say, five English words in them, plus some drawings in the same frame with the boxes so that, although the frames are not cluttered, I also do not have the option of extremely large font sizes)...
    ...AND you believe most of your users will view from laptops, from LCD desktop monitors, and from iPads and the like (not iPhones so much)... with HDTV being something you view as an option it would be "just nice to have" though not necessary...
    ...what parameters would you choose when you set up your AE files? 
    As a straw example, lets say I select 640 x 480 (4/3 pixel ratio) because I think, rightly or wrongly, that would be good on YouTube.  Should I double each number, keeping the 4/3 ratio?  Do nothing?  Do something different?  What about pixel resolution?  Am I worrying about this too much?  
    And, yes, I did pay attention when you said, "That's not an After Effects topic."  I'm just not saavy enough yet to know what that really means.
    Thanks in Advance,
    Road Quill

Maybe you are looking for

  • Is it archive problem?

    Hi We have created Miro invoice in the year 2005, and it got cleared in the same year. Now in database, we have accounting documents which are only from 2006 2005 Documents are not available in BSEG table since those are archive And the problem is, i

  • Error in Calling a Webservice from ABAP: Consumer

    Hi We are reaching a webservice within the same network Zone and have have done the configuration in SOAMANAGER - WebService URL, Port, Operations are defined and the service is active. The logical port is define and an automatic SM59 destination is

  • Pass the preview chinese to PDF

    Dear Seniors, I have a case where that is pass preview to PDF, now for example Iam in the client xxx and have a form name A and B, with chinese text. problem is.. in form name A can successfully pass the preview to PDF with chinese text but form B ca

  • Business Process Blueprinting Tool (BPB) Publish Error - Solution Manager 7.1 SP10

    Hello SCN members! The company where I work recently implemented the SAP Solution Manager 7.1 SP10 and now we are trying to learn how to use the SAP Business Process Blueprinting (BPB) Tool to design all enterprise processes inside it. I followed all

  • PDF's in iBooks

    I have many PDF's in iBooks, but would like to open them in Adobe Reader so I can make notes.  How can I do this easily?