How to replicate only a subteee or a branch of complete DIT

Hello,
Is it possible to configure replication as explained below:
1. on master server single suffix dc=foo,dc=bar (single database 'userRoot' ). This suffix have branches : ou=people,dc=foo,dc=bar and ou=groups,dc=foo,dc=bar. Both these branches contains thousands of user entries and group entries.
2. on Hub server one suffix dc=foo,dc=bar (database userRoot) and two subsuffixes "ou=people,dc=foo,dc=bar (databasename 'people')" and "ou=groups,dc=foo,dc=bar (databasename 'groups')".
3. On consumer server single suffix "ou=people,dc=foo,dc=bar (databasename "userRoot or people")"
Replication flow Incremental:
Master -> Hub -> Consumer
Here what I want to achieve is to replicate only a part of my subtree (or a branch of my complete DIT) to consumer server. The master server is having all the entries (people and groups entries). And on consumer I want to have only people entries stored under ou=people,dc=foo,dc=bar branch. The DS documents explain suffix and subsuffix and also replication on different chapters. But I could not locate how to achieve the above scenario.
Thanks to give your advise or any link.
P.S. I know about fractional replication. But this is not what I want to achieve. I want to replicate only a branch of the DIT.
Regards
Randip Malakar

You can only replicate complete databases. You can't do what you describe.
ALL of the systems (master, hub, consumer) all need to have corresponding databases. You can't replicate one database to three databases as you describe for master -> hub.
You need to break up the master into the same three databases (suffixes) as you describe for the hub.
Then you replicate bd/suffixs independently.

Similar Messages

  • How to replicate data from MS SQL Server  to Oracle

    Hi,
    Can someone please help me on how to replicate data from MS SQL Server to Oracle 8i database.

    Dear,
    I'm a student.
    I do simple replication on Oracle 8.0.5 successfully. (one master site and one snapshot site). I only use the SQL*Plus and Schema Manager to do.
    But when I do advance replication (multimaster replication) I meet many problem. So I don't get the result.
    Do you show me the technology to do that ?
    Thanks !

  • How to replicate data to hana server based on company code?

    I have huge data in ECC system related to different company codes in multiple tables.
    So while replicating data into hana system i want to pass company code as a parameter for selected tables.
    Cos we have size constraints in HANA server.
    So plz help to get the selected data.
    You have my thanks in advance.

    I am a little puzzled by your question. Is your requirement that if you change the parameter, only that data gets loaded into HANA and how often do you intend to change the "parameter"?
    You can use IUUC_REPL_CONTENT to restrict the data coming in, for example you can define a where clause such that where BUKRS = 'XXXX' so only XXXX entries get replicated. I recommend to take a look at note 1733714 as this note has the guide which shows you how to define these transformations in the SLT server.
    However if your goal is every time, you need to load different company codes, you will probably have to change the transformation, then reload the table dropping all the data you already have loaded. This essentially defeats the purpose of real time replication though.
    One other alternative is create different views for different company codes in the source ECC, then use the views for replication. Take a look at this blog for information on how to replicate views.

  • How do I only get certain questions appear in the quiz results?

    I have created a course through Captivate 6, throughout the course there are questions to guage the learners attention. There is also a quiz at the end. However, captivate includes on the questions throughout the course on the quiz results which I do not want to happen.
    Can anyone advise how I can only get certain questions appear on the quiz results please?

    Branch aware turns off the playbar in 6 (not in 7 any more, at least not for me).
    Could you explain more in detail what you want, because I don't understand it. You want the user to answer all questions, but the score should only show what? If you don't want some questions to have a score added to the Quiz total, you can indicate that in the Properties of that Question slide.
    And please, tell the exact number (3 versions of 6), and also if you have to report to a LMS?
    Lilybiri

  • How do I only have photos from my iPhone stream to my iMac?

    How do I only have photos from my iphone stream to my iMac?  I just downloaded from my digital camera close to a 1,000 pictures from my vacation on to my iMac and they all streamed to my iPhone!  I don't want all those pictures on my phone.  Is there a way to only have the photo stream work in one direction?

    Photos downloading to your iPhone usually come from Syncing with iTunes.  Look in the iTunes sidebar, click on iPhone under devices (must be attached).  Click on Photos tab across the top to review which Photos, albums, events etc are synced from iPhoto.
    Regards,
    Captfred

  • I am trying to include some widgets into my website through iweb.How to keep only the widget button on the homepage instead of the whole open widget?

    I found the HTML code for including the Facebook widget buttons on my webiste...now I also wanted to include some other widget so I looked at www.widgetbox.com....I can download the html code and once I put that on my webpage then I have the widget open. How can I only have the widget button instead? For example I wanted to have the weather widget, but only the button weather widget, as if it was on the iphone, so that user can click on it just if they want, but I couldn't manage to do it. Does anyone knows?

    Add an HTML snippet and put the code in it:
    Click to view full size
    OT

  • How to pull only column names from a SELECT query without running it

    How to pull only column names from a SELECT statement without executing it? It seems there is getMetaData() in Java to pull the column names while sql is being prepared and before it gets executed. I need to get the columns whether we run the sql or not.

    Maybe something like this is what you are looking for or at least will give you some ideas.
            public static DataSet MaterializeDataSet(string _connectionString, string _sqlSelect, bool _returnProviderSpecificTypes, bool _includeSchema, bool _fillTable)
                DataSet ds = null;
                using (OracleConnection _oraconn = new OracleConnection(_connectionString))
                    try
                        _oraconn.Open();
                        using (OracleCommand cmd = new OracleCommand(_sqlSelect, _oraconn))
                            cmd.CommandType = CommandType.Text;
                            using (OracleDataAdapter da = new OracleDataAdapter(cmd))
                                da.ReturnProviderSpecificTypes = _returnProviderSpecificTypes;
                                //da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
                                if (_includeSchema == true)
                                    ds = new DataSet("SCHEMASUPPLIED");
                                    da.FillSchema(ds, SchemaType.Source);
                                    if (_fillTable == true)
                                        da.Fill(ds.Tables[0]);
                                else
                                    ds = new DataSet("SCHEMANOTSUPPLIED");
                                    if (_fillTable == true)
                                        da.Fill(ds);
                                ds.Tables[0].TableName = "Table";
                            }//using da
                        } //using cmd
                    catch (OracleException _oraEx)
                        throw (_oraEx); // Actually rethrow
                    catch (System.Exception _sysEx)
                        throw (_sysEx); // Actually rethrow
                    finally
                        if (_oraconn.State == ConnectionState.Broken || _oraconn.State == ConnectionState.Open)
                            _oraconn.Close();
                }//using oraconn
                if (ds != null)
                    if (ds.Tables != null && ds.Tables[0] != null)
                        return ds;
                    else
                        return null;
                else
                    return null;
            }r,
    dennis

  • In Table Control How to get only a single row .

    Hi
    In Table Control How to get only a single row .I am able to decrease it its height to 4 but then 2 rows is getting dsplayed .I want only one row to be display and 2nd row should be deactivated or not visible.
    regards
    Avik
    Edited by: Julius Bussche on Jan 30, 2009 1:10 PM
    Removed friendly greeting from the subject title

    Hi Avik
    use this code it will help you.
    MODULE passdata OUTPUT.
      READ TABLE it_revision INTO wa_rev INDEX tab_clc-current_line.
      IF sy-subrc = 0.
        LOOP AT SCREEN.
          IF screen-group1 = '111'.      " 111 IS THE GROUP NAME
            screen-input = 1.          " input mode
            screen-active = 1.         " input mode.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF screen-group1 = '111'.       "GROUP NAME
            screen-input = 0.           " display mode
            screen-active = 1.          " DISPLAY MODE.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDMODULE.                 " PASSDATA  OUTPUT
    Make sure in group tou are passing the field name that you want in input mode on the base of other field
    Hope it will help you.
    Thanks
    Arun Kayal.

  • How to show only date in BO webi 3.1 text box

    how to show only date in BO webi 3.1 text box for e.g:-
    01/01/2005  (no time only date)

    hi,
    just check by which format your date is coming
    just create a one variable and check =UserResponse("Transaction Date From (mm/dd/yy)")
    if your output is in format of("mm/dd/yyyy hh:mm:ss a")
    then some format we have to write in todate syntax
    then your final formula for date would be
    =FormatDate(ToDate(UserResponse("Transaction Date From (mm/dd/yy)");"mm/dd/yyyy hh:mm:ss A");"dd/mm/yyyy")

  • I have 300 apps organized in folders on my ipod touch 4th gen, and connected my iphone 4, these apps have copied over but none have been placed in folders, any ideas how to replicate folders from ipod to iphone...?

    I have 300 apps organized in folders on my ipod touch 4th gen, and connected my iphone 4, these apps have copied over but none have been placed in folders, any ideas how to replicate folders from ipod to iphone...?

    What may work is to restore the iPhone fom the backup of the iPod.  However, if the two devices ahve different apps that come with the device, that may mess up some of the folders.

  • How To Get Only Month or Only Year from datetime format of yyyy-mm-dd

    Hi SQL gurus,
    I have field has datetime format of yyyy-mm-dd (ie. 2014-11-28).  Could anyone please educate me on how to extract only month (ie. November but not 11) and only year (ie, 2014) from 2014-11-28.  I writing two report have title of Number of
    sick leaves on November  and Number of sick leaves in 2014.  I am planning to extact 11 from 2014-11-28 and display as November on report title and the same goes for 2014.  Unless you have better non complicated way.   Thank you
    very much in advance.  DingDong!!

    There are multiple ways
    Month name
    SELECT DATENAME(mm,@DateParam)
    SELECT FORMAT(@DateParam,'MMMM')
    Year
    SELECT FORMAT(@DateParam,'yyyy')
    SELECT DATEPART(yy,@DateParam)
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to view only specific authentication requests in access tracker

    Requirement:
    How to view only "Healthy/Unhealthy" requests from a specific Webauth service.
    Solution:
    If we have more than one Webauth service (based on conditions such as Device type or NAS IP or posture status etc) and we need only Healthy/Unhealthy requests from a specific service in access tracker for administrative use; we need to create a custom Data filter.
    Configuration:
    Below are the steps to achieve the same:
          Navigate to Monitoring > Data filters > Click on "Add" option to create a new filter
          Specify a name on the "Filter" tab
          Select the "Rule" tab to specify the unique condition (to filter the access tracker request)
          Create the below conditions: 
                     ( Commonystem-Posture-Token CONTAINS Healthy ) 
                     -   AND   -   ( Commonervice CONTAINS Windows-health-check )
          5.        Save this filter
    Now we can use this Data filter in access tracker to only view Healthy Webauth requests from "Windows-health-check" service.
    Verification
    So now we can verify the output by looking at the access tracker. 
    At present we can see "Eight" webauth requests in access tracker. Now we want to see only Healthy web-auth request from "Windows-health-check" service.
    We change the data filter to the Custom "healthy-filter" and now only see one request in access tracker as per our requirement.

    Hi Vignesh,
    ANy luck on this ? I am trying the almost same thing...and stuck at same point.
    Please let us know if you have any more information.

  • How do I only use the wifi internet because I don't want to use my mobile data because I don't have Internet on my price plan?

    How do I only use the wifi internet because I don't want to use my mobile data because I don't have Internet on my price plan and its costing me money?

    Well, if you are running iOS 6.0 or later.
    The option supposed to be in Settings>General>Cellular>Cellular Data---Off & Enable 3G---Off
    I think you'd better check the settings in Privacy>Location Services.
    Some items in it need Cellular data like"setting time zone" and "Find my iPhone'.

  • How do I only sync the last 18 months of emails to my mac mail on the macbook?

    How do I only sync the last 18 months of emails to my mac mail on the macbook? It is currently retrieving all emails from the four accounts I am syncing to and filling up space on my macbook.  I can't work out how to set a limit.
    Any help appreciated!

    Imap is designed to synchronize your mail client with the mail server, this the normal result.
    Switch to POP access if you want it to work asynchronously

  • I have iphoto 6.  How do I only selecy certain photos from my camera when importing rather than all of them as show in the import page that loads

    I have iphoto 6.  How do I only selecy certain photos from my camera when importing rather than all of them as show in the import page that loads

    You use Image Capture (in your Applications Folder) for that job - or upgrade to a later iPhoto.
    Regards
    TD

Maybe you are looking for

  • How to load a XML file into the database

    Hi, I've always only loaded data into the database by using SQL-Loader and the data format was Excel or ASCII Now I have to load a XML. How can I do? The company where I work has Oracle vers. 8i (don't laugh, please) Thanks in advance!

  • Inheritance on Sales Offices and Sales Groups (PPOMA_CRM)

    HI All We have replicated the Org Model from ECC to CRM using the report CRMC_R3_ORG_GENERATE. Under PPOMA_CRM upon selecting the Sales Org unit, we see that some of the attributes (Tupels and Distribution Channels) are assigned to the Sales Organiza

  • LDAP Lookup / Network Address sometimes populates with TCP

    Our development team has configured our local intranet to do LDAP searches against our tree, thus eliminating the need for users to login. They're doing an IP lookup and then retrieving the user name. What happens very rarely is the the "Network addr

  • Can't join Wi-Fi

    I just got the touch today and i can't access a wi fi network. I've gone in to settings and turned WiFi on and "ask to join networks on". Netwroks come up but they all have little locks next to them and when I click on them I have to give a password.

  • Error in Manage Business Partner

    Hi, I have installed SRM in client 100 and SUS in client 200. Now when i log on to SRM and click on manage business partner, i can see transfer suppliers, pre select supplier, monitor BP. But when i click on these e.g transfer supplier or preselect i