Replication ceases working after adding table at publisher

Hi, 
I have a transactional replication between two SQL 2008 R2 which has been running fine for hours.  I just added a new table in the publisher, added a PK and inserted 10,000 rows.  I re-initialized  the publication and the subscriber and now
no replication is taking place.  There are no errors from the SQL agent jobs at either side and nothing in the replication monitor.  
I've deleted the table in the publisher but still I seem to have broken the sync between the two. 
The publication is creating files just fine in the Windows share.
I suppose I could just drop the subscription, as this seems to be the issue, and re-create it.  Can't see why adding table/index/rows in a subscriber causes this though.  
Any advice on where else to look? 
Thanks 

>> I just added a new table in the publisher, added a PK  and inserted 1000 rows
You can't add an article without a Primary Key. I'm not sure what process you have followed to add an  article.
The article I added contained a single column (int) which was also the PK.  I only added it as a test to see the locking on the subscriber table when it was being rolled forward.  Once I saw this had "broken" the replication I removed
(unchecked) the article however no further replication occurred.   
Thanks for the links, I'm pretty sure I followed the correct steps however I will re-check. 

Similar Messages

  • Autocomplete does not work after adding controller to LOV

    Hi experts ,
    Autocomplete does not work after adding controller to LOV Region, i have checked the fnd_compatialbe mode it is fine.validation proprty is also false, stilll it is not working.
    can anyone help me its very urgent
    regards
    vamsi

    Hi Tapash,
    This resolved the problem. Many thanks for your help with this it has been driving me mad for the last few days.
    I could not understand why the standard Apps LOV regions had controller's attached to them and the autocomplete would function but with my pages it would not.
    I actually raised a TAR about this and got nothing back so have updated it with the resolution.
    Thanks again.
    Regards,
    David

  • EDIT method doesn't work after adding new row

    I would like to start editing after adding new row into TableView.
    I copied example from Oracle website: [Using JavaFX UI Controls - 13 Table View|http://docs.oracle.com/javafx/2/ui_controls/table-view.htm#CJAGDAHE]. Then I put additional button for adding new row and define action for the button.
        final Button addButton = new Button("Add");
        addButton.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent arg0) {
                Person p = new Person("", "", "");
                table.getItems().add(p);               
                table.getSelectionModel().select(p);
                table.edit(table.getSelectionModel().getSelectedIndex(), table.getColumns().get(2));
        });In result I can see selected new row but the table doesn't start edditing in the third column.
    I have similar method for editing existing rows and it works properly.
        final Button editButton = new Button("Edit");
        editButton.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent arg0) {
                table.edit(table.getSelectionModel().getSelectedIndex(), table.getColumns().get(2));
        });Could you help me what I do wrong?

    Try wrapping the setCaretPosition(...) method in a SwingUtilities.invokeLater(...)
    caret=outputArea.getDocument().getText(0,outputArea.getDocument().getLength()).length();Should be:
    caret = outputArea.getDocument().getLength();

  • P2P Replication Not working after DDL Chage has been replicated

    Hi Guru,
    I am using SQL Server 2008. And I have configured the DC DR P2P replication for High availability.
    In DC i  had dropped one column. after that my replication is not working i am getting "A DDL change has been replicated error" in replication monitor.
    In order to resolve this issue i had tried to drop the same column in DR. But still the replication didn't work.
    Please help me to resolve this issue. 

    Hi,
    You have two options to make schema changes to the replicated database.
    1. Drop the replication, make the changes, and recreate the replication.
    2. Make the changes and let P2P replication take care of the changes.
    If you drop the column from the table at the Publisher by using
    ALTER TABLE <Table> DROP <Column>, the column will also be dropped from the table at all Subscribers.
    In this case, the column was dropped in application. I have not tested this situation. I agree with Ashwin. You may recreate the replication to resolve the issue.
    Reference:
    Making Schema Changes on Publication Databases
    http://msdn.microsoft.com/en-us/library/ms151870(v=sql.100).aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Persistence-rebalance is not working after adding new cotexts

    Hi,
    I had the following problem.
    The customer has two ACE20 modules. These modules are configured with some contexts. These contexts are configured and working. Last week I created and configured new three contexts without modifying current contexts. After this change, the customer had a problem with cookie insertion in the one of the current cotext. There was no configuration change (the persistence-rebalance map was configured and assigned to the policy-map) in this context. Only one solution of this problem was removing and adding again the parameter map into policy map. After this change the cookie insertion is working well. So it seems like a bug, but I didn't find it in the bug toolkit. Is this behaviour correct?
    Thanks
    Roman

    Try deleting it and downloading it again.
    -------------------If this post helped you, click on accept as solution.------------------
    -----------------------------Appreciate by clicking on white star.----------------------------

  • ALV Sorting Not Working after Adding Checkbox to ALV

    Hi All.
    I am currently doing an ALV report using REUSE_ALV_GRID_DISPLAY function. I am sorting the list by Employee Name and Personnel Area. It works fine where the personnel are field and employee name field are merger together for same personnel are and employee name. But afterwards I added a checkbox field to the internal table and the list outputs a checkbox for each line. Afer  putting the checkbox the list no long merges the same personnel are and employee name fields according to original sorting.
    Can anyone explain if there is a way to solve this?
    Thanks a lot.
    Lily

    yes there is a way. Just see this..
    There is no Straight forward solution. There is a work around.
    REPORT  ztest_check_box                         .
    TYPE-POOLS: slis,icon.
    DATA: BEGIN OF it_vbap OCCURS 0,
           vbeln LIKE vbap-vbeln,
           matnr LIKE vbap-matnr,
           posnr LIKE vbap-posnr,
           kunnr LIKE vbak-kunnr,
           kwmeng LIKE vbap-kwmeng,
           check TYPE c,
           id TYPE icon-id,
          END OF it_vbap.
    DATA: it_fieldcat  TYPE slis_t_fieldcat_alv.
    DATA:  x_fieldcat  TYPE slis_fieldcat_alv.
    DATA: it_sort TYPE slis_t_sortinfo_alv,
          x_sort TYPE slis_sortinfo_alv.
    SELECT vbak~vbeln
           vbak~kunnr
           vbap~posnr
           vbap~matnr
           vbap~kwmeng
           INTO CORRESPONDING FIELDS OF TABLE it_vbap
           FROM vbak JOIN vbap
           ON vbak~vbeln = vbap~vbeln.
    SORT it_vbap BY matnr.
    DELETE it_vbap WHERE matnr IS INITIAL.
    LOOP AT it_vbap.
      it_vbap-id = '@T9@'.
      MODIFY it_vbap.
    ENDLOOP.
    x_fieldcat-fieldname = 'ID'.
    x_fieldcat-seltext_l = 'CHECK'.
    x_fieldcat-outputlen = 4.
    x_fieldcat-icon  = 'X'.
    x_fieldcat-col_pos   = 1.
    x_fieldcat-hotspot  = 'X'.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'MATNR'.
    x_fieldcat-seltext_l = 'MATNR'.
    x_fieldcat-col_pos   = 2.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'KUNNR'.
    x_fieldcat-seltext_l = 'KUNNR'.
    x_fieldcat-col_pos   = 3.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'VBELN'.
    x_fieldcat-seltext_l = 'VBELN'.
    x_fieldcat-col_pos   = 4.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'POSNR'.
    x_fieldcat-seltext_l = 'POSNR'.
    x_fieldcat-col_pos   = 5.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'KWMENG'.
    x_fieldcat-seltext_l = 'KWMENG'.
    x_fieldcat-col_pos   = 6.
    x_fieldcat-do_sum   = 'X'.
    x_fieldcat-tabname   = 'IT_VBAP'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_sort-fieldname = 'MATNR'.
    x_sort-spos       = 1.
    x_sort-up = 'X'.
    x_sort-group = 'X'.
    x_sort-subtot = 'X'.
    APPEND x_sort TO it_sort.
    CLEAR x_sort.
    x_sort-fieldname = 'KUNNR'.
    x_sort-spos       = 2.
    x_sort-up = 'X'.
    APPEND x_sort TO it_sort.
    CLEAR x_sort.
    x_sort-fieldname = 'VBELN'.
    x_sort-spos       = 3.
    x_sort-up = 'X'.
    APPEND x_sort TO it_sort.
    CLEAR x_sort.
    *DATA:x_layout TYPE lvc_s_layo.
    *x_layout-box_fname = 'CHECK'.
    *x_layout-no_rowmark = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-repid
    *   is_layout          = x_layout
        i_callback_user_command = 'USER_COMMAND'
        it_fieldcat        = it_fieldcat
        it_sort            = it_sort
      TABLES
        t_outtab           = it_vbap[]
      EXCEPTIONS
        program_error      = 1
        OTHERS             = 2.
    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.
    *&      Form  itab_user_command
    *       text
    *      -->WHATCOMM   text
    *      -->WHATROW    text
    FORM user_command USING whatcomm TYPE sy-ucomm selfield TYPE
    slis_selfield.
      IF selfield-fieldname = 'ID'.
        READ TABLE it_vbap INDEX selfield-tabindex.
        IF sy-subrc = 0.
          IF it_vbap-check = ''.
            it_vbap-id = '@R7@'.
            it_vbap-check = 'X'.
          ELSE.
            it_vbap-id = '@T9@'.
            it_vbap-check = ''.
          ENDIF.
          MODIFY it_vbap INDEX selfield-tabindex.
        ENDIF.
      ENDIF.
      selfield-refresh = 'X'.
    ENDFORM.                    "itab_user_command
    if you want to make the above code to work in lower versions then you have to do this..
    then maintain the ICON using the view V_ICON from SM30 add the New Entry.
    get the properties from the below screen shot.
    http://img404.imageshack.us/img404/3338/testig9.png

  • Buttons don't work after adding onPress

    I have an MC that has a graphic. I have faked buttons for just the over state, so it shows a border around a portion of the graphic. That works fine until I added this to the MC:
    this.onPress = function(){
        if (this._currentframe != 1) {
            rewind = true;
    The onPress function does what it should do, but the buttons no longer show their over state when I hover over them.
    Any ideas?

    That's true. Only problem is there not equal quarters, so some might be circle, and others weird shaped. I guess I could make a button that covers the entire thing with no hover. And then put the border buttons on top of that. And hook the rewind control to all the buttons, so all the area is covered.
    This is what i originally used for the whole thing:
    _root.adinstance.onPress = function(){
        if (_root.adinstance._currentframe != 1) {
            _root.adinstance.onEnterFrame = function(){
                 if(_root.adinstance._currentframe != 1){
                       _root.adinstance.prevFrame();
                 } else {
                       delete _root.adinstance.onEnterFrame;
    However, if I try:
    _root.adinstance.btn1.onPress = function(){
        if (_root.adinstance._currentframe != 1) {
            _root.adinstance.onEnterFrame = function(){
                 if(_root.adinstance._currentframe != 1){
                       _root.adinstance.prevFrame();
                 } else {
                       delete _root.adinstance.onEnterFrame;
    It doesn't work. I tried adding a trace after the onPress of the button and I didn't get anything.
    Do i have some syntax wrong???

  • Laptop internet connection no longer works after adding Time Capsule to network

    The other day I was setting up my Time Capsule for the first time at my new apartment (after having it in a box for months). I've got internet access through my apartment, so I haven't needed to use it as a router like I did the last time I used it. Also, the router is in another tenant's room. So I opened Airport Utility and adjusted the settings to add the Time Capsule to the network. After doing this, my laptop has lost its Internet connection. I can still connect to the network and my iPad has had no issues connecting to the same network and using the Internet, but the Internet won't work on my MacBook Pro (2006 model).
    Since then, I've plugged an ethernet cable between my laptop and Time Capsule so I could find it on Airport Utility and change its settings to connect to the laptop via Ethernet. Also, I called my landlord and got the router reset.
    I know the Time Capsule/Airport Utility is involved because the Internet connection died as soon as I tried adding my Time Capsule to the network.
    Any suggestions?

    I am having the same problem.  It worked fine (connecting my iOS devices to my macbook pro using internet sharing) until Lion.  Then it all went to ****.

  • Bootcamp no longer works after adding partition via Windows 7

    I needed a D: drive in Windows and shrunk the system (C:) partition and added another partition intended to be a secondary drive in Windows.  After rebooting Windows throws a BSOD and I can't even select OS X as a bootable option.  Is anyone able to point me in the right direction on how to fix?  Thank you!

    I learned the FAQ the hard way
    diskutil list
    /dev/disk0
    #:          TYPE NAME                    SIZE          IDENTIFIER
    0:          FDisk_parition_scheme     *251.0 GB     disk0
    1:          Windows_LDM                  77.0GB        disk0s1
    2:          Windows_LDM                  94.5GB        disk0s2
    3:          Windows_LDM                  79.5GB        disk0s3
    /dev/disk1
    #:          TYPE NAME                    SIZE          IDENTIFIER
    0:          Apple_partition_scheme     *1.3 GB        disk1
    1:          Apple_partition_map          *30.7 KB       disk1s1
    2:          Apple__HFS OS X Base System     *1.3 GB        disk1s2
    From there it does /dev/disk2, /dev/disk3, until /dev/disk12 usually like:
    #:          TYPE NAME                    SIZE          IDENTIFIER
    0:          untitled                              *524.3 KB        disk2
    diskutil cs list
    No CoreStorage logical volume groups found
    gpt -vv -r show /dev/disk0
    gpt show: /dev/disk0: mediasize=251000193024; sectorsize=512; blocks=490234752
    gpt show: /dev/disk0: MBR at sector 0
    gpt show: /dev/disk0: Malformed MBR at sector 0
    gpt show: /dev/disk0: Bad CRC in GPT table at sector 2
    start          size          index          contents
    0               1                                MBR
    1               150392831   1             MBR part 66
    150392832 184604672   2             MBR part 66
    334997504 155235200   3             MBR part 66
    490232704 2048
    fdisk /dev/disk0
    DIsk: /dev/disk0               geometry: 30515/255/63  [490234752 sectors]
    Signature:  0xAA55
                        Starting                    Ending
    #:     id     cyl     hd     sec     -     cyl     hd     sec     [     start     -     size]
    1:     42    0       0        2        -    1023  254     63      [          1    -   150392831]   LinuxSwap DR
    2:     42   1023 254     63       -    1023  254     63      [150392832 -   184604672]  LinuxSwap DR
    3:     42   1023 254     63       -    1023  254     63      [334997504 -   155235200]  LinuxSwap DR
    *4:     07    0       0        0        -    0       0        0      [          0    -                    0]  HPFS/QNX/AUX

  • Grouping compilations no longer works after adding artwork..!

    Until yesterday I had never bothered with adding artwork to my itunes library as I had a gen 3 iPod that would not show it anyway. I have a new ipod so last night I decided to add artwork, this I did by getting what I could from Gracenote, the rest I have been dragging from images on Amazon and other sites. Ever since doing this the Group Compilations option no longer works, despite having this checkbox ticked in preferences and making sure that the yes box for part of a compilation is ticked for these albums. In addition, every song in a compilation album is displayed individually in the Cover Flow view option.
    Is this a peculiarity of 7.2 or is there a way I can get this to work again? I am sure it is something to do with having added artwork as it was working fine before.
    The help menu in itunes seems to have stopped working too now, which doesn't help...obviously!

    Until yesterday I had never bothered with adding artwork to my itunes library as I had a gen 3 iPod that would not show it anyway. I have a new ipod so last night I decided to add artwork, this I did by getting what I could from Gracenote, the rest I have been dragging from images on Amazon and other sites. Ever since doing this the Group Compilations option no longer works, despite having this checkbox ticked in preferences and making sure that the yes box for part of a compilation is ticked for these albums. In addition, every song in a compilation album is displayed individually in the Cover Flow view option.
    Is this a peculiarity of 7.2 or is there a way I can get this to work again? I am sure it is something to do with having added artwork as it was working fine before.
    The help menu in itunes seems to have stopped working too now, which doesn't help...obviously!

  • Javabean is not working after adding webutil.olb in form 10g

    I have created a form in which I am using javabean for running marquee and is working well. I have also attached webutil library in that form and it's working well also. But when I am adding webutil.olb in that form marquee stops to work. I have given path in Start In and in Preference/Runtime also. I have searched so many forums for that problem but did'nt get solution. That's why I decided to ask here....

    Dear Gerd,
    "are you sure, that it is the hotkey"
    Yes, i am dead sure. Since:
    (1) It was working fine in forms 6i
    (2) If you run a form and select Help => Keys, you will see Ctrl+B on the top of list
    The problem is its not taking into account the keys which i am defining in the file (although i am following the same procedure detailed on metalink.oracle.com).
    Regards

  • Links not working after adding script

    I added a drop down menu to my website and now none of my hyper links work.  Not external or even links to the other pages.  Here is the script.
      <script type="text/javascript">
        $(document).ready(function(){
          $('a').on('click', function(e){
           e.preventDefault();
           $('#ddmenu li').hover(function () {
            clearTimeout($.data(this,'timer'));
            $('ul',this).stop(true,true).slideDown(200);
          }, function () {
           $.data(this,'timer', setTimeout($.proxy(function() {
             $('ul',this).stop(true,true).slideUp(200);
           }, this), 100));
      </script> 
    I found that if I change the ('a') to ('b') all the links work except when I try to get back to the home page.

    Ken that is exactly what I am looking for.  I have the Script type code exactly like you posted it in the head plus the portion that I posted above is in the head.  Here is the whole code I will try to upload it this morning.
    <!doctype hyml>
    <html><head>
         <script src="Java Script/JQuery.js" type="text/javascript"></script>
         <title>BADKRacing</title>
           <link href="CSS/styles.css" rel="stylesheet" type="text/css" media="screen">
        <link rel="stylesheet" type="text/css" media="all" href="CSS/dropdown.css">
       <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
              <script type="text/javascript">
        $(document).ready(function(){
          $('a').on('click', function(e){
           e.preventDefault();
           $('#ddmenu li').hover(function () {
            clearTimeout($.data(this,'timer'));
            $('ul',this).stop(true,true).slideDown(200);
          }, function () {
           $.data(this,'timer', setTimeout($.proxy(function() {
             $('ul',this).stop(true,true).slideUp(200);
           }, this), 100));
      </script>  
            <link rel="stylesheet" href="CSS/nivo-slider.css" type="text/css" />
                <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" type="text/javascript"></script>
                <script src="Java Script/jquery.nivo.slider.pack.js" type="text/javascript"></script>
            <link rel="stylesheet" href="CSS/default/default.css" type="text/css" />
                <script type="text/javascript">
        $(window).load(function() {
           $('#slider').nivoSlider({effect:"fade"});
       </script>            
        </head>
    <body>
    <div id="wrapper">
            <div id="top">
                <div id="logo">
                 <img src="Images/BAD K Logo.JPG">
                </div>
                <div id="social-media">
                 <ul>
                     <li><a target="_blank" href="https://www.facebook.com/pages/BAD-K-Racing/115436301814031?v=wall"><img src="Images/Social Media Icon/facebook.png"></a></li>
                     <li><a target="_blank" href="http://www.youtube.com/profile?user=BADKRacing&view=videos"><img src="Images/Social Media Icon/youtube.png"></a></li>
                    </ul>
                </div>
            </div>
            <div id="content-wraper">
             <div id="content">
              <h1>Welcome to BAD K Racing</h1>
             </div>
            </div>  
    <nav>
         <div id="menu">
        <ul id="ddmenu">
                 <li><a href="#">Home</a></li>
                    <li><a href="#">Race Day Info</a>
                     <ul>
                         <li><a href="schedule.html">Schedule</a></li>
                            <li><a target="_blank" href="Updateshttps://www.facebook.com/pages/BAD-K-Racing/115436301814031?ref=hl">Updates</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Drivers</a>
                       <ul>
                         <li><a href="Andrue.html">Andrue</a></li>
                            <li><a href="Dave.html">Dave</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Racecars</a>
                        <ul>
                         <li><a href="prochallenge.html">Pro Challenge</a></li>
                            <li><a href="Superstock.html">Super Stock</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Gallery</a>
                        <ul>
                         <li><a href="photo.html">Photos</a></li>
                            <li><a target="_blank" href="Videoshttp://www.youtube.com/user/BADKRacing/videos">Videos</a></li>
                     </ul>
                    </li>
                    <li><a href="contact.html">Contact</a></li>           
                </ul>
           </ul>
    </div>
    </nav>
            <div id="banner">
             <div class="ribbon"></div>
             <div class="slider-wrapper theme-default">
              <div id="slider" class="nivoSlider">
         <img src="Images/Karting 07 (184).jpg" alt="" />
         <img src="Images/4-20-13 (3).JPG" alt="" />
           <img src="Images/Karting 07 (185).jpg" alt=""/>
           <img src="Images/4-20-13 (1).JPG" alt="" />
        </div>
                </div>
      </div>
            <div id="footer">
            </div>
        </div>   
    </body>
    </html>

  • Project not working after adding tomawahk components...

    I added the tomahawk componend library to jdeveloper yesterday - which in itself was not a problem free experience, but after I get the tag library going, and my minor errors resloved, there didn't seem to be any problem... until I ran my application, and the screen was just blank. No error is thrown.
    - I have also set up the tomahawk extensions filter.
    - i do not have any adf compondents. my pages were html / JSF html.
    I have read an article that with a section called "running in jdeveloper", but the instructions there must have been for an older pre-release version. This seems to say that once tomahawk elements have been used, the project cannot be run in the normal way(?).
    Can anyone tell me how to get my app up and running again???
    Thanks for any assistance!!
    /caj

    more info...
    I have not come anywhere with this... so I thought I would at least try to get back to where I was before... heh heh... that was maybe not so easy...
    - I have removed all references to tomahawk from my jspx pages, including the namespace reference.
    - I have removed the extenstions additions from the web.xml file
    - removed the tag library first from the project, then from jdevelopers manage libaries.
    - the same with the jar files.
    but, not difference. My wysiwyg views are still different than they were before, and my project does not run (the server looks good, net browser opens, loads, but the content is empty)...
    It is looking like a re-install is necessary - please someone help me before this is necessary.
    many thanks for whatever assistance people can give!!
    /caj

  • Multi Master Replication - Only works for some tables?

    I have a multi master replication between a 9i and an 816 database.
    All the tables are in the same tablespace and have the same owner. The replication user has full privs on all the tables.
    When setting up the replication some tables create properly, but others fail with a "table not found" error.
    Ideas anyone ?
    Andrew

    You said that you have a 9i replicated with a 816.
    I try the same thing but with two 9i enterprise version databases, free downloaded from www.oracle.com.
    when i ran
    exec dbms_repcat.add_master_database(gname=>'groupname', master=>'replica_link')
    this error appears
    ERROR at line 1:
    ORA-23375: feature is incompatible with database version at replica_link
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2159
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 1
    please help me if u have any idea.

  • Code ceases working after months, PC only

    Hi,
    Apologies for the cross post.
    We have a project that is running on Mac and PC, swf's that
    are loaded into a Director player. They were published
    November/December 2005 in Flash MX. All Director Xtras are packaged
    and installed with the project, as are four libraries necessary to
    create a fast start projector.
    The swf's tally some results in an object, which is passed to
    a method that creates a string. The break is in the method, where I
    do a split and check the result (tmpvar == "TM"). The project was
    professionally QA'd, as well as inhouse, and by our client. We also
    have a good store of data from the time the project was launched
    until late July that shows the work has been functioning without a
    hitch.
    We received reports that the swf's stopped successfully
    reporting late July/early August, only on some PC's, and only PCs
    running WinXP (not all, either). Has anyone else had a project that
    has inexplicably gone awry in the last month or two? I am able to
    replicate the problem only through the Director authoring
    environment (the project runs fine here on XP, of course), but as
    soon as I republish one of the offending swf's, the issue is
    resolved.
    Does anyone have any suggestions on what could be causing
    such an issue? We are facing having to reburn a GM and redistribute
    new CD's, a quite expensive exercise.
    Cheers,
    ck

    set FND: Diagnostics to 'Yes' to see the error stack in the applications page.
    and let us know what error message your getting..
    --Prasanna                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Where are LETOOLS for USB? The "ADB" Driver does not work with Windows XP

    I just give up with Lenovo's arcane maze of endlessly-looping driver searches.  I managed somehow to get something called an "ADB Driver" which was supposed to allow Windows XP to recognize my tablet as a K1 Ideapad.  I downloaded the 8+mb file which

  • Closing front panel of subvi

    I have a main vi that opens many subvi with their front panel (they pop up as a normal windows not like modal). I need to close a subvi by pressing a button on it but I can't find any way. Thank you everyone, Massimo Ponte.

  • Making a photo with rounded corners

    I just followed both of these instructions to create rounded corners on a rectangular image: http://www.enghiong.com/how-to-make-rounded-corner-edges-using-fireworks.html/ http://www.joycejevans.com/tutorials/Fireworks/FWMX/roundecorners/rc_crn.htm W

  • Not all selected pictures are shared in album sharing in Photostream

    I am trying to share an album with my friends on photostream. After i selected the album, added the friends, and waited for ever to upload the pictures, I realized that not all the pictures are available on the shared album. So i had to go back again

  • Help with 4255

    Hi All, I have installed a 4255 sensor inline behind an ASA 5550 that connects to the Internet. The problem is that the IPS is not tuned (brand-new) and as soon as we connect the IPS inline, the CPU goes up to 100% and stops the traffic flow in a mat