Adding a new DB Node in the existing SharePoint 2007 Farm.

Hello,
Recently we got a requirement to add a new DB server (SQL Server 2007) to the existing MOSS 2007 Production Farm. Can any one please help me out to list out the steps that need to be followed for adding the new DB server to the existing Production Farm.
We are planning to use the new DB server only for holding Content DB's and no plan for any Config DB,SSP DB or Search DB.
Thanks in advance for your help

Hi,
Also I am going to clone from Source app tier (RHEL4) to target app tier (RHEL5)?
Are there any issue with the platform version changing?There should be no issue -- Just make sure you have all the OS pre-req. software and packages installed on the RHEL5 node.
FAQ: Cloning Oracle Applications Release 11i [ID 216664.1] -- 13. Can I clone from one operating system version to another?
Oracle Applications 11i Installation on OEL5 or RHEL5 [ID 730444.1]
Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) [ID 316806.1]
Thanks,
Hussein

Similar Messages

  • Impact of Addition of New Value Fields in the existing Op. Concern-COPA

    Hi All,
    Want to know the steps of adding new value fields in the existing operating concern in COPA?
    What is the overall impact of addition of New Value fields in the running Operating Concern?
    How do we test the addition of new value fields?
    Is the addition of New Value fields to the running Operating Concern advisable?
    Your support and advice is highly anticipated and appreciated.
    Thanks & Regards
    9819528669
    Ohter details are as follows...
    VALUE FIELDS : Defines the Structure of your Costs & Revenues. (Op. Concern 120 Value Fields) 
    1)     The client requires three new value fields to be created. Value fields for :
    -     Other Airport Charges - International
    -     Cargo Commission Cost
    -     Personal Cost (Direct)
    2)     What are the Steps involved in creation of new value fields? The steps are :
    1)     Before creating new value field we need to check whether we can use already existing UNUSED value fields (There are 62 value fields created for the op concern 1000, in production the value fields TBUL1-L7 i.e. to be used (I assume) screen shot1 provided. My predecessor has used value field VV291, VV292, VV380 original description being TBUL3, TBUL4, and TBUL1. I believe he has changed the description in development client and created a transport request ref screen shot 2)
    2)     You can create new value field thru T-Code KEA6 (4-5 characters beginning with VV) u2013 My predecessor has reused the value fields originally created he has not created new one I believe. please provide give your comments)
    3)     Specify whether this field is for Currency or Quantity (currency defined in attribute of op concern and quantity defined by its own field u2013 unit of measure) u2013 My predecessor has configured the three value fields as Currency.
    4)     Describe how the values in this field are aggregated over characteristics. (SUM, LAS, AVG) u2013 My predecessor has aggregated all the three value fields as SUM and they are in Active status.
    5)     After the value field is created you have to add the value field (active status only) to the operating concern by Editing the Data Structure. (I guess this is done in the next step)
    6)     Assign newly created Value fields to the Operating Concern u2013 T-Code KEA0 (In development client the value fields are assigned to the op concern 1000 refer screen shot 3. In the production client also those three value fields exist (does it mean they are assigned? your comments please.) As they have the original description TBUL3, TBUL4, and TBUL1 refer screen shot 4.
    7)     After the Data Structure is defined you need to activate them. (creates plan vs actual database) u2013 Go to the data structure tab and Choose Activate. The status in dev client is Active with correct description but in the production client it is Active with the OLD description. After addition of the value field you need to regenerate the operating concern. T-Code KEA0 u2013 right?
    8)     Condition Types are assigned to Value Fields? Donu2019t know u2013 T-Code KE45 (I think this is NOT required in our case u2013 Please give your comments)
    9)     Define and Assign Valuation Strategy u2013 Cost assigned to Value fields u2013 T-Code KE4U (I think this is also NOT required in our case)
    10)     Define PA Transfer Structure for Settlement u2013 T-Code KEI1 (This step is crucial u2013 I think I have to to include newly created value fields, but am not aware how to do it and what is the connectivity or what happens after this is done)
    Note: My predecessor has created a Transport Request No# KEDK902167 for the value fields created by him.
    3)     Whether my predecessor has performed all the steps for value field creation? How to test it and check that?
    4)     If yes then,  Do I need to perform additional configuration or can I proceed to transport it to Production?
    5)     What is COPA Allocation Structure & PA Transfer Structure? Where and Why It is used?
    6)     What are the different methods of cost and revenue allocations in SAP?
    7)     I have checked the status of the value fields across clients, It is as followsu2026
         Value Field     Value Field For     Description     Development      Quality     Production
    1     VV291     Other Airport Charges International     TBUL3     Exists      DNE     DNE
    2     VV292     Cargo Commission Cost     TBUL4     Exists      DNE     DNE
    3     VV380     Personal Cost u2013 Direct     TBUL1     Exists      DNE     DNE
    #DNE : Does Not Exist (assumed since the description given to value field is not the same as in development client.)

    HI sree,
    ofter creation value field and saving that time reqwest number appeare copy the reqwest number and go through the se01 select that reqwest number select and transport click the truck symbole, and draft a mail to basis guyw.
    Thank You!
    Best Regards,
    pradheep.

  • Adding a new item to an already existing BOM

    Hi,
        I am having a problem adding a new item to an already existing parent BOM.I excute the following code (as per the SDK).
        Dim vProdTree As SAPbobsCOM.ProductTrees
        Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
        'Set Values to the fields
        vProdTree.TreeCode = "Item1"
        vProdTree.TreeType = iProductionTree
        'Set Values to the Assembly parts of the
        'First Assembly
        vProdTree.Items.ItemCode = Excel.Row(Cell1)
        vProdTree.Items.Price = 20
        vProdTree.Items.Quantity = 1
        vProdTree.Items.Currency = "Eur"
        'Adding the Product Tree
        RetVal = vProdTree.Add
        If (RetVal <> 0) Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    If there is no parent BOM production tree with keycode Item1, then when the above code is run for the first time, it works.The issue occurs when I run change my excel, Cell1 to a different value and run the program again. The error states that the code already exists, which is correct, but does not  append the item to the existing BOM.
    I have tried vProdTree.Update, but this line overwrites the original child item in the BOM, rather than appending a new item, which is what I want it to do.
    Any  help is appreciated.
    - Adrian.V

    Your issue here is how the "Items" (which is actually pointing to ProductTree_Lines object) works. It is a List of items, and when you get the object is always pointing at the first item in the list.
    So for example, to add a BOM with two items you would need to set the details of the first Item and then add a line using vProdTree.Items.Add() before setting the values for that item.
    e.g.:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Set Values to the fields
    vProdTree.TreeCode = "Item1"
    vProdTree.TreeType = iProductionTree
    'Set Values to the Assembly parts of the
    'First Assembly
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 20
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Add a second item to the BOM
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell2)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Adding the Product Tree
    RetVal = vProdTree.Add
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    To do what you want to do, which is get the BOM and add a new item to it, you will need to do this:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Get your BOM by key
    vProdTree.GetByKey("Item1")
    'Add a second item to the BOM
    'First Item exists so you need to add a new row
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Update the Product Tree
    RetVal = vProdTree.Update
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    Method one allows you to add multiple lines as you add the object (which makes more sense), method 2 allows you to get the object after it has been added and add multiple lines to it. This is similar to how the Document_Lines object works.

  • I had to buy a new computer because my old one died. When I sync my iPhone to my new computer, none of the existing content (apps, music, whatever) transfers. What do I have to do?

    When I sync my iPhone to my new computer, none of the existing content (apps, music, whatever) transfers. What do I have to do?
    iPhone 5 iOS 7.1.2
    Old computer Windows XP SP3
    New computer Windows 8

    Anything you purchased from the iTunes Store can be downloaded again, as often as necessary, as long as it still exists in the iTunes Store.
    Read:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Create new depreciation class for the existing asset

    Dear Experts,
    Please explain step by step:
    1. How to create a new depreciation class for the existing asset
    2. How to make a asset transfer to the new asset in the new asset class?
    Thank you in advance

    Hi,
    The pre-requsit of creating a new assets clause :-
    1. Co. code assigned to Chart of Dep.
    2. Dep areas have been defined
    3. GL account no. is not more than 8 digit.
    The transfer of an assets within the same co code can be done thru T.code ABUMN.
    Award if helpful
    Sunil

  • Delete the existing sharepoint farm it is a development machinie and re create again in same server

    Hi
    i want to 
    delete the existing sharepoint farm it is a development machinie  and re create again in same server.
    because i am facing issues to configure user profile service, 
    the user profile syncronisation service starting and after some time its stopped.
    while i am reading http://www.harbar.net/articles/sp2010ups.aspx
    in current farm i given ip address for sql server while installing sharepoint
    you have not used a Fully Qualified Domain Name or IP Address when specifying
    the SQL Server when running the SharePoint Configuration Wizard (PSConfig). Using either is strongly discouraged,
    if i recreate the farm is it creates new databases in sql srver?
    adil

    1. Uninstall any custom / third party solutions deployed in server.
    2. from central admin, delete web applications along with DB.
    3. delete all service applications.
    4. From the program settings, un-install sharepoint.
    5. Go to SQL and delete if any DB from SP is left.
    6. Uninstall SQL, if you see any issue.
    These are high level reverse steps of the installation.
    Thanks, Ashish | Please mark a post helpful/answer if it is helpful or answer your query.

  • Upgrade the existing Moss 2007 licence to SharePoint 2013.

    Our customer is using the Moss 2007 enterprise version with 500 CALs currently. They want to move to SharePoint 2013. I need to purpose the migration cost.
    I am wondering -
    does it possible to upgrade the existing Moss 2007 licence to SharePoint 2013.
    Do customer has to purchase new licence?
    Will existing licence help in any way if new licences are required?
    Regards Restless Spirit

    I assume you will have to purchase new licenses and you may get discount based on your company contract. Check below:
    http://office.microsoft.com/en-in/sharepoint/sharepoint-licensing-overview-collaboration-software-FX103789438.aspx
    http://blogs.technet.com/b/volume-licensing/archive/2013/08/08/licensing-how-to-sharepoint-server-2013-licensing-changes.aspx

  • Added a content database from Company A's SharePoint 2010 farm to ours

    I have added a content database from a company (Company A) that we are acquiring. The sent it my SFTP, we downloaded it, added it to the sql db, and I added it as a content database to a SharePoint 2010 farm  at our company (Company B) that is built
    to the exact build that Company A's farm was built to.
    Presently, the database resides in our Development Environment which is a single server that interacts with SQL, which resides on a different server.
    If I copy the URL for the site collections from the Company A's DB (from the site collection list), the content renders perfectly, but  when I attached the database to a Web application that was tied to a host header with an IP address on the DNS Server
    here, at company B, the content doesn't render at all. The only thing that happens is that I am asked to enter my credentials. None of the farm credentials or my credentials (all domain users) work.
    I have made myself via the farm administration password the owner of the site content, but I must be missing something, because I get this error from the page when I try to render it:
    <b>Error message 401.2.: </b> Unauthorized; Logon failed due to server configuration. &nbsp; Verify that you have permission to view this directory or page based on the credentials you supplied and the authenticatio methods enabled
    on the web server.
    I am wondering if this has something to do with the origin of the content, due to the fact that it was created on a different farm under completely different credentials and what I have to do to get it to work outside of the server as content
    under a new Web app.

    Hi,
    Do you have any update?
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Not able to start the service 'Windows SharePoint Services Adminisration' in the server hosting SharePoint 2007 farm

    While upgrading my SharePoint 2007 farm to June 2013 CU , I saw the service ‘Windows SharePoint Services Adminisration’ was not starting. This is throwing error on every attempt of service start.

    While further investigation with Microsoft, the below approach was suggested :
    Back up the registry before you modify it. Then, you can restore the registry if a problem occurs.
     Click Start, click Run, type regedit in the Open box, and then click OK.
    Locate and then select the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
    Right-click Control, point to New, and then click DWORD Value.
    In the New Value box, type ServicesPipeTimeout, and then press Enter.
    Right-click ServicesPipeTimeout, and then click Modify.
    Click Decimal, type the number of milliseconds that you want to wait until the service times out, and then click OK.  In my case put it as 60000
    (60 secs)
    Exit Registry Editor and then restart the computer.
    The above steps resolved my issue and the service was successfully started.

  • How to add a new Spread file to the existing one IDML?

    I'd to know how add new spread in IDML file exists.
    In the file designmap.xml, I put and changed somethings:
    1) I put some tags; the tags are:
      <idPkg:Story src="Stories/Story_u1fc.xml"/>
      <idPkg:Spread src="Spreads/Spread_d467.xml"/>
    2) I also added the attribute StoryList which values u1fc.
    In addition to this,The StoryList attribute belongs to element Document.
    3) And I changed the attribute Length of element Section, to 5, which was 3; because my new spread have 2 pages.
    In IDML file final, have files in each folder, but when I open the file in InDesign IDML, it does not open .... crashes the application.
    what should I do?
    Thanks

    Hello Diego
    The SAP GLOBAL 2.0 should be downloaded from the Service marketplace. Follow the URL : [http://service.sap.com/swdc|http://service.sap.com/swdc] and search for SAP GLOBAL.
    You will find the following SWCV - XI CONTENT SAPGLOBAL 2.0. If you have relevant access, you can download the same as a .tpz file and then import it into your ESR.
    Hope it clarifies things.
    regards
    Rathish

  • I lost the lan ethernet connection of an older windows 7 pc to my 3 Terabyte router when adding a new local printer to the pc. How do i set this up again so the PC is recognized and can get to the internet again through the time capsule?

    I recently added a new printer to a 2005 vintage PC that is running windows 7. It used to go through a router in my wifes upstairs office to the time capsule by wired ethernet (cat5) but when I added her new local printer thought I would network it, big mistaked, lost all my ethernet connection and she cannot get to the internet. Wireless not an option. How do i set up again the ethernet connection and i will only USB the printer locally this time for the windows pc?
    Tried windows diagnostics, and besides telling me to reset everything and turn router off and on etc. I am in an endless loop.
    Other Mac products are not impacted by this issue.

    I see no direct connection.. a printer and the computer setup for internet are not related.
    But it sounds like the router in the wife's office is now in the wrong mode..
    If you have an existing main router replace the second router for a switch .. that is the easy way.
    Otherwise you need to bridge the router if it has that option.. most do not. Or use wan bypass.. where you turn off the dhcp server in the router and fix its ip to match the range of the main router.. this is the hassle of using router as a switch.
    BUT I am making a huge number of assumptions.
    What I need is the full network layout.. a quick picture would help.
    I need main modem.. main router.. (maybe same box or different).. make model and current IP address and how dhcp is setup.
    I need secondary router.. if that is what it is, IP and settings.
    I want the printer type and model. How it is connected.
    BTW I much prefer to see a network printer plugged into the network rather than usb.. it is only a matter of sorting the IP settings and driver pointing to the network rather than local.
    Or you should think of it as a broken washing machine and call the technician.. who could fix the whole lot in an hour.

  • Adding a new Big INT column to existing table in production, which holds 700 million records will impact anything in production?

    Hi Guys,
    I have to add a new Big INT column to existing table in production, which holds 700 million records and would like to know the impact?
    I have been tolled by one of my colleagues that last time they tried adding a column to same table during working hour and it locked out the table and impacted the users.
    Please suggest/share If any one had similar experience.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    If you add a new column to a table using an ALTER TABLE ADD command and specify that the new column allows NULLs and you do not define a default value, then it will take a table lock.  However, once it gets the table lock, it will essentially run instantly
    and then free the table lock.  That will add this new column as the last column in the table, for example
    ALTER MyTable ADD MyNewColumn bigint NULL;
    But if you your change adds a new column with a default value, or you do something like using table designer to add the new column in the middle of the current list of columns, then SQL will have to rewrite the table.  So it will get a table lock, rewrite
    the whole table and then free the table lock.  That will take a considerable amount of time and the table lock will be held for that whole period of time.
    But, no matter how you make the change, if at all possible, I would not alter a table schema on a production database during working hours.  Do it when nothing else is going on.
    Tom

  • Integrating new ODS object in the existing flow

    Dear All,
    I have a question regarding "Intergrating new data targets"???
    example-:
    1) I have a ODS (A) connected to a Cube (B) ..ODS settings - automatic update of datatargets..ON
    When I did the first load..it updated both the data targets A & B.
    2) Now I add another new ODS to the existing layer..ODS(C) which is connected to   ODS (A) via update rules.I reconstruct the new ODS (C) succesfully.
    3) When I did my second load of data both the ODS(A),CUBE(B) have been updated but not the newly added ODS(C)...
    I checked the properties of the ODS(A) and all looks ok...
    Could anyone give me some inputs regarding the above problem...
    Thanks in adavance.
    Rao

    dinesh's reply is correct..
    now..u have set on ODS..update data targets automatically..fine..
    u also created update rules from ODS to the target ODS and Cube..
    (so infopackage now knows that the data targets are 2--the target ODS and the cube)..
    but while running data loads..u might not always want to load to all data targets..so how to choose..
    so selection given in data targets tab of infopackage..
    so when new target added..u need to tick it in infopackage..
    another point..if u use radio button in infopackage 'select all data targets to which active update rules exist'..then..without even ticked checkbox..system will load to all data targets listed there..
    Vishvesh

  • IdeaPad S205: BIOS/EFI menu not accessible after adding a new boot entry using the bcfg command

    Hi community,
    I just got a new S205 and wanted to install Win7 and archlinux in dual boot (GPT formatted SSD).
    Win7 installation worked like a charm. Archlinux worked well aswell, unfortunately i couldn't make a boot entry following this guide: https://wiki.archlinux.org/index.php/Beginners%27_Guide#EFISTUB
    So i had to manually create the boot entry using bcfg command in an efi shell:
    https://wiki.archlinux.org/index.php/Unified_Extensible_Firmware_Interface#bcfg
    The first attempt (I double checked that i got the right filesystem [fs0] and so on) failed and resulted in an automatic reboot. After this I immediately reentered the efi shell and tried again. This time I could create the boot entry.
    Now if I reboot everything seems fine (I can dual boot Win and arch) BUT I cannot access BIOS/EFI menu via F2 anymore. It seems like it just does not exist anymore. How do I get it back? Should I just flash over with the original EFI from the Lenovo download page? I could theoretically do that (I can still change boot order using my arch live medium), but i could not reset EFI prior to flashing... which is always recommended to do.
    So I am - again - pretty stuck with this EFI. I hope you can help and tell me what to do.
    This EFI-Implementation on the S205 must be the worst piece of "engineering" ever.
    Nothing works the way it is intended to... I would not dare to wash my hands clean off any faults, but ADDING a boot entry resulting in a not accessible BIOS/EFI menu... there's just something wrong.

    At least I now know what the problem is:
    It seems like the S205 can only keep 7 boot entries in NVRAM (Can anybody concern?).
    As I already have 7 boot entries:
    adding a new entry using efibootmgr tool does not work (fails without error) and gummiboot doesn't work either. Nevertheless, adding a boot entry (for rEFInd) from within the UEFI shell works, but seems to result in deleting "Boot0000" aka Setup which then breaks my EFI. Breaking meaning that I cannot access it anymore.
    I can however (and did so twice yesterday) flash the original EFI from within Windows and thus gain access to the EFI menu again. Nevertheless this resets my boot entries again so the refind (or gummiboot) bootloader gets deleted again and only Win7 is bootable.
    Now what would be the smartest way to dual boot this system? Which of the boot entries is safe to delete so i could install refind/gummiboot instead? For instance, I don't know where USB FDD and USB CD come from. Can I delete them? Or won't I be able to boot from external CD-ROM or USB drive anymore if I delete them?
    Or would it be best to delete the Win7 bootloader and try to have refind/gummiboot boot it? And will they at all be able to still find the Win7 boot files once I deleted Win7's boot entry? When I install refind as bootloader and manually add an boot entry for it using the bcfg boot add command it is able to load Windows7. But will this still be possible if I delete the Win7 boot entry? It would most likely be possible - I assume - if the Win7 boot files (on the EFI system partition) were still there even after deleting the boot entry. Can someone tell me how deleting a boot entry exactly works and which files get or don't get deleted?
    Best regards.

  • Opening A Link In New Window, While Leaving The Existing Webpage Open

    Hi,
    When I click on a link in a page, I want a new window to open with the contents of that link, leaving the 'linked from' page still open on my monitor. I don't want the existing 'linked from' page disappearing when the 'linked to' page opens on top of it. I don't think that in Internet Explorer, which I was using before, that the previous page disappeared in the way it does on Safari. I continually find myself losing the page I want to keep while I open another. In Preferences>General, I have tried to set Safari up to work the way I describe above, but I can't seem to find the right default procedure.
    Or,
    How do I leave the departure window open, and below the arrival window, when clicking a link from the former to the latter?
    Thanks,
    Rafael

    Hi,
    the only way I know of the is to go to file and click for a new Window.
    Sounds like tabs maybe your thing, from Safari's Helpviewer. for more info look there.......
    To turn on tabbed browsing, choose Preferences from the Safari menu and click Tab. Select Enable Tabbed Browsing.
    To open a link or bookmark in the bookmarks bar in a new tab, hold down the Command key and click the item, or hold down the Control key, click the item, and choose Open in New Tab from the shortcut menu.
    To open a bookmark collection in the bookmarks bar or a folder of bookmarks in the Bookmarks Library in tabs, hold down the Control key, click the collection or folder, and choose Open in Tabs from the shortcut menu.
    If you select the Auto-Click checkbox for a folder in the bookmarks bar, then you can open all the bookmarks in the folder in tabs by clicking the folder name in the bookmarks bar.
    To open a webpage in a new tab, choose New Tab from the File menu and type the address for the page.
    To close a tab, click the close button in the tab.
    To quickly switch between tabs, press Command-Shift-[ and Command-Shift-].
    To show a webpage that is in a tab and close all other tabs, hold down the Option key and click the close box in the tab you want to remain open.
    When you click a link in a page you are viewing in a tab, the page opens in the current tab. Click the Back and Forward buttons in the address bar to scan pages you have opened in a tab.
    If you choose a page from the History or Bookmarks menu, the page opens in the current tab.
    Hope it helps you do what i think you are looking for.
    Cheers
    Eme

Maybe you are looking for

  • Single invoice for multiple sales orders

    Hi all, When delivery order is created based on Collective processing, Billing document is created based on delivery order for delivery based billing. But, is it possible to filter the line items in the Collective delivery order further for billing?

  • Possible to attach ethernet hub to AEBS?

    Dear All, Does anyone know if it is possible to attach a (non-switching) ethernet hub to my 2009 (dual-antenna, 802.11n capable) Airport Extreme Base Station?  I've just wired my house up with Cat-5e and would like more than the three available ether

  • Purchase Order Inconsistency

    Hi Experts, I have very strange problem with some of purchase orders. I create the purchase order and saved it. When i tried to chenge purchase order system does not respond and dont allow me to save the order. Transaction gets locked which can be se

  • Email ID's of users

    Hi, can any body very urgently tell me the way to display the users and the email addresses of them. i.e., i have list of users and i need the email addresses of them. Is there any short cut to get the entire list other than with SU01. Thanks in adva

  • Transactional Messaging Problem

    Hi, The problem I am facing is, I have multiple publishers that can send the same type of messages to the topics and mutiple subscribers are receiving the messages (many-to-many). Suppose the publisher makes changes to a database row, and then send a