DDL trigger to Capture the DDL changes on one database and applies to child level databases in same server.

Hi friends,
        I need to create one DDL trigger to Capture the all DDL modification on parent database and applies those changes to the underlying (child) databases  in my project.
        Can anyone help me out in this,how to track the changes and applies to the child level databases?
Thanks in Advance.

Use Visual Studio Data Tools or
Red Gate Compare.

Similar Messages

  • Why is in panorama mode the quality of the camera changes it becomes dark and blurry

    why is in panorama mode the quality of the camera changes it becomes dark and blurry

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This" with your same problem?

  • PLAYLIST PROBLEM: I did a playlist and after synchonising with my ipod, the order of the songs changed both in itunes and in the ipod. In itunes the order came alphabetically and in ipod randomly. I wanted that playlist for a party. HELP! THX

    PLAYLIST PROBLEM: I did a playlist and after synchonising with my ipod, the order of the songs changed both in itunes and in the ipod. In itunes the order came alphabetically and in ipod randomly. I wanted that playlistto be played in the order I made it for a party.
    Now I don't know what to do.
    Thank you very much

    Plug your iPod in and when it appears in iTunes, click on it from under Devices in the left hand pane.  This brings you to the Summary tab.  Locate and click on the Music tab.  What configurations do you have made from under this tab?  Is your iPod configured to sync those playlists?
    B-rock

  • Evry time after sync. my iphone 4 ios 4.3.3 with itunes 10.3.1.55 the time change up one more hour ,, please tell me what can i do to solve this problem

    evry time after sync. my iphone 4 ios 4.3.3 with itunes 10.3.1.55 the time change up one more hour ,, please tell me what can i do to solve this problem

    This year, the government has canceled the daylight saving time , that's why happening this problem to me so I changed the time zone in iPhone from Cairo,Egypt (GMT+2 with daylight saving) to Harare,Zimbabwe (GMT+2 without daylight saving , no change in time from summer & winter) & now working good, no change in time after sync. , But it's very stupid thing from apple that they didn't add an option in time setting to enable or disable the daylight saving time like any other mobile.

  • Find/Change words (with GREP) and apply a style...

    I need a Script for Find/Change words with GREP, and apply a paragraph style...
    Thanks...

    Hi Marcos,
    If you want the script to create character styles: Bold , Italic, Bold Italic, etc, and replace local formatting with these styles, use scripts in post #3.
    But if you want find and change words, or/and replace local formatting with styles defined by you, use FindChangeByList script.
    If the latter, I recommend you to download and install Record Find Change script (written by Martin Fisher).
    Then choose settings you need in Find-Change dialog – make sure they work as expected – and run Record Find Change script. A Notepad/TextEdit file will pop up with a line containing the recorded setting. Copy it, open FindChangeList.txt, delete the contents of this file and paste the line you just copied (or add it to the bottom of the file).
    Repeat the process for all find-change operations you need.
    Finally run FindChangeByList.jsx to make all changes in one go.
    However, while using Record Find Change script, you may encounter a problem: it doesn’t record paragraph and character styles placed inside a group. But you can write references to such styles like so:
    appliedParagraphStyle:app.activeDocument.paragraphStyleGroups.item("Style Group 1"). paragraphStyles.item("Paragraph Style 1")
    Kasyan

  • What are the best apps to monitor tests and emails on childs phone

    what are the best apps to monitor tests and emails on childs phone?

    You could simply log into your child's email with the password that the two of you agree upon, and monitor the emails manually.  As for the texts, you could purchase a separate device, and use the child's Apple ID to monitor the iMessages.  For SMS/MMS, no way to monitor it.  You'll have to use the app called 'Random Parental Inspections'.

  • How do I get rid of the blank space after one paragraph and before the next paragraph startsin Pages '09?  I understand that I should not have a page break mid paragraph but that is what I want.

    How do I get rid of the blank space after one paragraph and before the next paragraph startsin Pages '09?  I understand that I should not have a page break mid paragraph but that is what I want.

    Hi stephanie,
    These are unrelated questions/statements.
    Space before and space after a paragraph are controled in the Text Inspector, as you've found out.
    Pages will create a page break whenever there is no room for another line on the page. That break can come anywhere in a paragraph.
    You may be thinking of Widow and Orphan prevention, and the other Pagination controls, found under the More button in the Text Inspector. (If that's what you found, then thanks for the refresher! I hadn't been to that pane for awhile, and had forgotten the variety of pagination controls available.
    Regards,
    Barry

  • HT1414 If I lose my iphone, how do I retrieve the info backed up on itunes and apply it to a new phone?

    If I lose my iphone, how do I retrieve the info backed up on itunes and apply it to a new phone?

    Restore the new phone from the backup of the old phone. See:
    iOS: How to back up
    Also, as applicable,
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • How to capture the user change in an input field on a selection screen?

    I am coding a selection screen in which there are two input fields. The first field takes a Unix directory from the user input. Based on the input value, the second field will be populated with a the name of a file under the corresponding directory.
    My question is how I can make the program capture the user input without having to make the user press ENTER after they enter the value in the first field?
    Any help will be greatly appreciated.

    Venkat,
    Actually you led me to the real solution! It's the function module DYNP_VALUES_READ that does the trick for me. This function enables the program to capture dynamic user changes without recourse to PAI. Please refer to the code below:
    REPORT   zreiabsintf MESSAGE-ID zreiabsintfmc.
    *<HGDC------------------------------------------------------------------
    *  Selection screen for the conversion program
    *HGDC>------------------------------------------------------------------
    SELECTION-SCREEN BEGIN OF BLOCK input WITH FRAME TITLE text-001.
    PARAMETERS: p_indir   LIKE epsf-epsdirnam OBLIGATORY,                   " Inbound file directory
                p_infile  LIKE epsf-epsfilnam DEFAULT gc_infile OBLIGATORY, " Inbound file name
    SELECTION-SCREEN END OF BLOCK input.
    *<HGDC------------------------------------------------------------------
    *   Displays a file-open dialog when the user clicks the search
    *   help button next to the inbound file text field. The user
    *   can select the inbound file visually.
    *HGDC>------------------------------------------------------------------
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_infile.
    * Capture any user change to the directory.
      PERFORM check_dir_change.
    * Display the file open dialog
      PERFORM file_open_dialog CHANGING p_infile.
    *<HGDC------------------------------------------------------------------
    * Global constants
    *HGDC>------------------------------------------------------------------
    CONSTANTS:
        gc_indir  LIKE epsf-epsdirnam
                  VALUE '/interfaces/<SID>/inbound/',      " Default inbound directory template
        gc_infile LIKE epsf-epsfilnam VALUE 'input'.       " Default inbound file name
    *<HGDC------------------------------------------------------------------
    * Global data
    *HGDC>------------------------------------------------------------------
    DATA:
        gs_dynpfields   TYPE dynpread,                        " Fields of the current screen
         gt_dynpfields   LIKE STANDARD TABLE OF gs_dynpfields. " Table of the screen fields
    *&      Form  file_open_dialog
    *       Opens a dialog window for the user to choose a file in
    *       the specified Unix directory.
    *      <--P_FILE is the file to be selected.
    FORM file_open_dialog  CHANGING p_file.
    * Validate the directory.
      OPEN DATASET p_indir FOR INPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        MESSAGE i001(zreiabsintfmc) WITH p_indir.    " Unable to open the given directory
        EXIT.
      ENDIF.
      CLOSE DATASET p_indir.
    * Call the dialog window to open a file in the directory.
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = p_indir
        IMPORTING
          serverfile       = p_file
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc NE 0.
        MESSAGE i002(zreiabsintfmc).                 " Failed to open the file.
        EXIT.
      ENDIF.
    ENDFORM.                    " file_open_dialog
    *&      Form  check_dir_change
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM check_dir_change .
      CLEAR gs_dynpfields.
      CLEAR gt_dynpfields.
      gs_dynpfields-fieldname = 'P_INDIR'.
      gs_dynpfields-fieldvalue = p_indir.
      APPEND gs_dynpfields TO gt_dynpfields.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname               = sy-repid
          dynumb               = sy-dynnr
        TABLES
          dynpfields           = gt_dynpfields
        EXCEPTIONS
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          invalid_parameter    = 7
          undefind_error       = 8
          double_conversion    = 9
          stepl_not_found      = 10
          OTHERS               = 11.
      IF sy-subrc  NE 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE gt_dynpfields INTO gs_dynpfields INDEX 1.
      p_indir = gs_dynpfields-fieldvalue.
    ENDFORM.                    " check_dir_change
    Thanks for all your answers! The problem is now solved.
    Edited by: Ning Hu on Apr 9, 2008 11:32 AM
    Edited by: Ning Hu on Apr 9, 2008 11:34 AM

  • How to capture the product change on the item level in CRM GUI.

    Dear All:
    There is a line item in the sales order. Now I change the product of the line item. I want to capture the change in CRM GUI.
    PS:
    There is a reference thread, in which I know we can capture the change in WebUI with the component T115IT_SLSO.
    Can the old product be captured after I changed the product in order item?
    But I want to know how to capture the change in GUI. Anybody can help me? Thanks in advance.

    Hi,
    when you create an item in GUI tcode CRMD_ORDER, badi CRM_ORDERADM_I_BADI will be triggered.
    Method CRM_ORDERADM_I_PRODUCT_DETERM will have the Header and item guid and newly entered product in parameter IV_ORDERED_PRODUCT.
    Regards,
    Arun

  • Capturing the DML changes on the source and writing to a temporary table

    Am trying to set up a change data capture where both the source and target would be the same database.
    like in my case i would like to capture changes from a table schema.xyz in a orcl database and write it to a temp table within the same database. My concern here is , the table schema.xyz is already replicating to a different database on a different server.
    Any ideas on how this can be achieved?
    I thought of setting up a different extract process and capture the changes and write to the temp table , but not sure if this is manageable.
    Thanks,
    Venky.

    Just tap into the existing trail if the change data is already there. There's no need to have a second extract in that case. So ADD REPLICAT and specify the EXTTRAIL the same as the EXTTRAIL for the redo log extract.
    OGG won't pick up truncates by default. If the row is gone before the update arrives at the target table then you can use INSERTMISSINGUPDATES. When using this parameter make sure that you add supplemental logging (ADD TRANDATA) for columns that you need but that may not be updated (e.g. target columns with NOT NULL or FK constraints).
    Good luck,
    -joe

  • Capture the First Changed Date In actions Infotype In PA30

    Hi experts,
    I want to find out the date on which the actions record was created. Where can i find this ?.
    For ex if i am creating a record on 01.07.2011 with start date 25.06.2011 the change date would be 01.07.2011 in pa0000.
    If i change it on 10.07.2011, the change date would be 10.07.2011. I want to capture the date when i actually created it(01.07.2011). I tried the T.code S_AHR_61016380 . But it contains the log of the changes done from the second time.
    Can anyone plese help me?
    With thanks in advance,
    Syed Ibrahim .G

    hi prabhu,
    thanks for the reply. I tried the function modules and these function modules also return the logs of the data changed .
    But i need to get the log of the record when it was created first.
    For ex : for actions info type i created a record with start date as 20.09.2011 .When i tried the function module it did not return any values. Then, i changed the record i created for actions info type . now i executed the Fm , now i was getting the log for the data changed and not for created.Can some one throw light on this.
    With thanks in advance,
    Syed Ibrahim .G
    Edited by: SYED_ibbu on Sep 22, 2011 9:51 AM

  • When I click on a yahoo news story, about 30 seconds into reading it, the page changes to one that says the page I requested can't be found, and it has a list of search results.

    I just upgraded to firefox 4 this morning. My homepage is yahoo.com. Sometimes when I click a news story, about 30 seconds into reading it, the page changes to a search result page with the heading that the page I requested can't be found. If I click the back button, it goes back to the page I was on. It doesn't happen on every one, and I haven't seen a pattern to which sites it happens on. It also happened when I was trying to make a payment on ebay.

    To revert to Google as your preferred search engine, please do the following.<br><br>
    * In the location bar, type '''about:config''' and hit Enter.<br><br>
    * In the filter at the top, type: '''keyword.URL'''<br><br>
    * Double click it and remove whatever's in there (probably Yahoo) and replace it with http://www.google.com/search?q=<br>
    The URL to add in "keyword.URL" becomes a link in this post, so right click it and choose "Copy Link Location" to copy it to the Windows clipboard. Then hit CTRL+V to paste it. Saves you having to type the whole thing.
    '''To reset your home page, do the following'''.<br><br>
    * Go to the site you want to set as your homepage.<br><br>
    * Click the orange Firefox button and go to '''Options '''| '''Options '''| '''General'''.<br><br>
    * Make sure it says "''Show My Homepage''" in the first dropdown menu.<br><br>
    * Click the button called "'''Use Current Pages'''" to set the homepage to the one you have on the screen.<br>

  • Capturing the output of a jsp page and save that output in a WORD .doc file

    Hi,
    This is Naveen. I got stuck up with a problem/doubt. URGENT ! URGENT !
    My doubt is how to capture the output of a jsp page(the content is dynamic generated) and save that output to a MS-Word doc file.
    I know that therez an option of using Servlets Filters, but this concept is supported by Servlet 2.3 spec. and not earlier. And we are working on previous spec. and our web-servers also supports the prev. version and not the 2.3 version.
    If incase, therez a third-party utility for free usage, suggestions are appreciated.
    Hope most of them came across this kind of functional requirement. If anyone of them succeeded in this, please express ur bitter experience if any, faced during the coding.
    Thanks in Advance for help.
    Naveen

    You can set the MIME content type as .doc and try to open the Page.
    res.setContentType("application/vnd.ms-excel"); to generate the Page output as Excel
    res.setContentType("application/vnd.ms-word"); to generate the Page output as MS Word doc
    Hope this helps..

  • Why does the update change my home page and make Google so prevelant?

    Several of the last "updates" involved the changing of my bookmarks and home page,. The so called update required me to spend more time in refreshing the browser to its previous condition. This is frustrating to say the least. Second why does the updated version of of firefox seem to favor google?

    Normally, an update does not change your home page...
    What did you home page change to? That might help identify the source of the problem.
    I assume you have tried changing your home page back to your preferred site, either in the Options dialog or using one of the other methods:
    * [[Startup, home page and download settings]]
    * [[How to set the home page]]
    Did that work at all? By "at all" I mean:
    * Immediately after making the change, if you click the Home button, or launch a new window using Ctrl+n, does your preferred page load? Or is that ignored?
    * Does the setting revert later in your session (you see in Options it has changed)?
    * Does the setting revert after you exit and start Firefox up again?
    * Is the problem only when you use your Firefox desktop shortcut?
    With that information, it will be easier to recommend a solution.
    I'm not sure I understand your second question. Google has always been the default search provider in Firefox. Are you seeing even more Google than that?

Maybe you are looking for

  • HP LaserJet Pro MFP M127fn - Windows server 2003 X64 Drivers Missing

    Hi, We have almost 80 Numbers HP 1212 MFP Printer which we are using in windows server 2003 X64 Operating System. Because of unavailablity of this model anymore, we are using HP Laserjet Pro MFP M127fn and the driver is missing for this operating sys

  • Tracking information

    How will I track my goods from international priority shipping

  • APEX  all page loads very very slow - Default install with  11G R1

    HI, I have installed Oracle 11g R2 on my Windows XP desktop. APEX is installed by default in 11G R2. I have tried to use APEX but it runs very slow. For example, bringing up the Oracle APEX admin login page takes to 5 to 7 minutes. Once logged in, pe

  • NEED more info/help on DCX3400, xr2 remote controller, & ext ir input

    I "updated" to the dcx3400 as per the letter I received yesterday.  Now, I find that the ext ir input doesn't work and/or disables the front panel ir receiver/sensor.  After some more checking, I think that the dcx3400 codes got changed from the dct3

  • 3/6/2014 - Beta - AIR 13.0.0.55

    Adobe AIR Beta Channel Update This beta release provides access to the latest AIR runtime and SDK (with compiler) for Windows, Mac OS, iOS and Android. Below are some of the key features and benefits of King 13.0.  Please see our release notes for fu