After update insert trigger is not working correctly

Hello experts!
I created an after insert/update trigger and what strikes me is that it is not working as expected.
The trigger launches a procedure that does an insert in a second table if values in the triggered table ("my_table") are altered.
The problem is that the values in my second table, which are correlated to "my_table", are not changed with the correct values right away. The trigger and insert trails behind!
I have to update twice for the values to appear in my second table. Only then, the data of the first update will be inserted into the second table wheras the parent table ("my_table") will hold the latest values.
Do you have an idea what could be wrong?
create or replace
trigger myscheme.after_update_insert_set_tw
after update or insert
  on myscheme.my_table
  for each row
declare
begin
pr_my_table_tw_sync_sk(:new.lng_falle, :new.int_fallennummer, :new.lng_schaedling, :new.objectid);
end;Brgds,
Seb

Okay I'll give my best to explain what my procedure is supposed to do and what the table structure is like. I hope it'll help you to help me :-)
My parent table is called fangzahlen and is created as follows:
CREATE TABLE "BORKI"."FANGZAHLEN"
   (     "OBJECTID" NUMBER(10,0) NOT NULL ENABLE,
     "LNG_FALLE" NUMBER(10,0) NOT NULL ENABLE,
     "LNG_BEARBEITER" NUMBER(10,0),
     "DATE_DATUM" DATE DEFAULT SYSDATE NOT NULL ENABLE,
     "INT_FALLENNUMMER" NUMBER(4,0) NOT NULL ENABLE,
     "LNG_SCHAEDLING" NUMBER(2,0) NOT NULL ENABLE,
     "INT_VOLUMEN" NUMBER(10,0),
     "INT_ANZAHL" NUMBER(10,0),
     "INT_ANTEIL_JUNGKAEFER" NUMBER(3,0),
     "BOOL_KOEDERWECHSEL" NUMBER(1,0),
      CONSTRAINT "PK_FANGZAHLEN" PRIMARY KEY ("OBJECTID")
  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS"  ENABLE,
      CONSTRAINT "CHECK_DATE_DATUM" CHECK ("DATE_DATUM" >= '1.apr.2006') ENABLE
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;It holds values such as:
OBJECTID,"LNG_FALLE","LNG_BEARBEITER","DATE_DATUM","INT_FALLENNUMMER","LNG_SCHAEDLING","INT_VOLUMEN","INT_ANZAHL","INT_ANTEIL_JUNGKAEFER","BOOL_KOEDERWECHSEL"
97548,"39","1081","08.04.10","1","2","","220","","0"
97534,"39","1081","06.04.10","1","2","","100","","-1"My subtable is called tbl_test and created with:
CREATE TABLE "BORKI"."TBL_TEST"
   (     "OBJECTID" NUMBER(12,0) NOT NULL ENABLE,
     "LNG_FALLE" NUMBER(10,0),
     "DATE_DATUM" DATE,
     "INT_FALLENNUMMER" NUMBER(4,0),
     "LNG_SCHAEDLING" NUMBER(2,0),
     "INT_VOLUMEN" NUMBER(10,0),
     "INT_ANZAHL" NUMBER(10,0),
     "LNG_FANGZAHLEN" NUMBER(12,0)
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;Okay, this were the prerequisites!
Let's concentrate on the trigger and procedure:
The purpose of the procedure is to insert data into tbl_test once a record in "fangzahlen" has been updated or inserted.
Tbl_test holds the mean average values (int_anzahl) for a number of collected items (lng_schaedling).
I need to insert date values for the combination of each lng_fangzahlen, lng_schaedling, lng_falle and int_fallennr into tbl_test.
If I had the following data in table fangzahlen:
97548,"39","1081","08.04.10","1","2","","220","","0"
97534,"39","1081","06.04.10","1","2","","100","","-1"the query in the insert section of my procedure returns the following data when run manually:
97534     31.03.10     16,667     (null)     1     39     2
97548     06.04.10     110     (null)     1     39     2Now, I need to generate the dates between the first and the second objectid (column 1 in the data above).
Hence,
97534     31.03.10     16,667     (null)     1     39     2
97534     01.04.10     16,667     (null)     1     39     2
97534     02.04.10     16,667     (null)     1     39     2
97534     03.04.10     16,667     (null)     1     39     2
97534     04.04.10     16,667     (null)     1     39     2
97534     05.04.10     16,667     (null)     1     39     2
97534     06.04.10     16,667     (null)     1     39     2
97548     07.04.10     110     (null)     1     39     2
97548     08.04.10     110     (null)     1     39     2
My problem is thatthe values above will only appear after I do another update to table fangzahlen or insert a new record into it. Theoretically the result above should be inserted right away?
Below is my procedure, which might give you a better idea of what I am trying to do! Please excuse this rather awkward explanation. If you need more info please don't hesitate to ask for it!
create or replace
Procedure "PR_FANGZAHLEN_TW_SYNC_SK"
    Pr_falle        Number,
    Pr_fallennummer Number,
    Pr_schaedling   Number,
    Pr_objectid     Number)
Is
  Y                Number (10);
  pragma autonomous_transaction;
Begin
-- first all records should be deleted from the subtable i.e. tbl_test
    delete from borki.tbl_test where lng_falle = pr_falle
        and int_fallennummer = pr_fallennummer
        and lng_schaedling   = pr_schaedling
       and date_datum       > '31.03.2010';
      commit;
      For Rec In
      (select objectid lng_fangzahlen,
        date_datum,
        prev_date,
        (date_datum - prev_date) difference_in_days,
        round((
        case
          when nvl(int_volumen,0) > 0
          and lng_schaedling      = 1
          then int_volumen * 40
          when nvl(int_volumen,0) > 0
          and lng_schaedling      = 2
          then int_volumen * 550
          when nvl(int_anzahl,0) > 0
          then int_anzahl
        end ) / (date_datum - prev_date),3) counted_bugs,
        int_fallennummer,
        lng_falle,
        lng_schaedling
      from
        (select objectid,
          date_datum,
          case
            when lag(date_datum) over(order by date_datum) is null
            then to_date('31.03.2010')
            else lag(date_datum) over(order by date_datum)
          end as prev_date,
          int_volumen,
          int_anzahl,
          int_fallennummer,
          lng_falle,
          lng_schaedling
        from borki.fangzahlen
        where lng_falle      = pr_falle
        and int_fallennummer = pr_fallennummer
        and lng_schaedling   = pr_schaedling
        and date_datum       > '31.03.2010'
       -- and objectid         = pr_objectid
        order by date_datum desc
      order by date_datum asc
      Loop
        Y := 1;
        While Y < rec.difference_in_days + 1
        Loop
          Insert
          Into tbl_test
              lng_fangzahlen,
              date_datum,
              int_anzahl,
              int_volumen,
              int_fallennummer,
              lng_falle,
             lng_schaedling
          select objectid lng_fangzahlen,
        prev_date +Y,
        round((
        case
          when nvl(int_volumen,0) > 0
          and lng_schaedling      = 1
          then int_volumen * 40
          when nvl(int_volumen,0) > 0
          and lng_schaedling      = 2
          then int_volumen * 550
          when nvl(int_anzahl,0) > 0
          then int_anzahl
        end ) / (date_datum - prev_date),3) counted_bugs,
        int_volumen,
        int_fallennummer,
        lng_falle,
        lng_schaedling
      from
        (select objectid,
          date_datum,
          case
            when lag(date_datum) over(order by date_datum) is null
            then to_date('31.03.2010')
            else lag(date_datum) over(order by date_datum)
          end as prev_date,
          int_volumen,
          int_anzahl,
          int_fallennummer,
          lng_falle,
          lng_schaedling
        from borki.fangzahlen
        where lng_falle      = pr_falle
        and int_fallennummer = pr_fallennummer
        and lng_schaedling   = pr_schaedling
        and date_datum       > '31.03.2010'
        order by date_datum desc
      order by date_datum asc
          commit;
          Y := Y + 1;
        End Loop;
      End Loop; -- end of cursor
  Exception
  When No_data_found Then
    Null;
  When Others Then
    -- Consider logging the error and then re-raise
    Raise;
  End "PR_FANGZAHLEN_TW_SYNC_SK";

Similar Messages

  • I have windows 7 and my speakers worked then after update my speakers do not work and everything checked out and says they are working and that soundcard is working but no sound now.

    I have windows 7 and my speakers worked then after update my speakers do not work and everything checked out and says they are working and that soundcard is working but no sound now.
    I have tried everything and nothing works.

    sound problems:
    #Restore speaker icon to System Task bar, right-click on clock or tray > Properties > Volume: On
    #Click on the Sound icon in System tray then on Mixer, make sure Firefox is not muted [http://dmcritchie.mvps.org/icons/fx_sound.png picture]
    <p>Additional references
    * [https://support.mozilla.com/en-US/kb/No%20sound%20in%20Firefox No sound in Firefox | Troubleshooting | Firefox Help]
    * [http://support.mozilla.com/en-US/kb/Video%20or%20audio%20does%20not%20play Video or audio does not play | Troubleshooting | Firefox Help]
    * [http://kb.mozillazine.org/Video_or_audio_does_not_play Video or audio does not play - MozillaZine Knowledge Base]

  • Hi, I have iPad 2, when I buy it it has old iOS. Then I update it now it has 5.1.1 iOS and modern firmware 4.12.01. After update my wifi is not working. Only searching for wifi. 3G working well. But wifi olso worked with old iOS. So what can do ? Pls

    Hi, I have iPad 2, when I buy it it has old iOS. Then I update it now it has 5.1.1 iOS and modern firmware 4.12.01. After update my wifi is not working. Only searching for wifi. 3G working well. But wifi olso worked with old iOS. So what can do ? Pls

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • After last update facebook messenger is not working correctly

    It's happening to 3 different people I know.  Once they updated their phone, their Facebook Messenger Service is not working Correctly.  They have already deleted and reinstalled the app.
    Any suggestions?  Is this last update known to cause this?

    razmee209 is correct.
    If deleting the app doesnt help you could try a back up and restore as new to determine a software or hardware issue. But if the app doesnt work on the iOS it is not the iPhones fault it is the apps. Apps are meant to be compatible and run on iOS not the other way around. If the app fails to run on the iOS it is something that would need to be taken up with the app developers.

  • EPMSaveComment after EPM Insert Member does not work?

    Hello,
    I have situation in report where I use EPM Insert Member and also EPMSaveComment.
    After new members are inserted, existing comments are blanked and Save data after that update exsisting comments with blank values
    Detail steps:
    Open Excel and log on to BPC-NW Environment / model
    Create a report selecting a dimension ACCOUNT on the row axis and TIME dimension on the column axis.
    Choose Remove Empty and Zero Values for Rows
    Add two local Members on the both following columns as follows:
    column x: add local Member 1 and leave formula blank
    column y: add Local Member 2 and enter an 'EPMSAVECOMMENT' formula which references the column in 'LocalMember1'
    Insert Member and enter some values and also comment.
    Save and Refresh data.
    Insert Member
    The comment will disappear from the LocalMember1 (column x).
    Questions:
    Is it possible to have Insert Member and EPMSave Comment in same Report?
    Fact (documentation EPM Add-in 32.28): EPMSaveComment function is executed (only) when you Refresh the worksheet.
    But Insert Member function does not Refresh the report in such way that comments with EPMSaveComment function are displayed? They are blanked instead.
    If report is refreshed before Save Data then inserted members are deleted because they dont have values
    If data is entered for inserted members than with Save Data also previous comments are changed (with blank), because they are different in input screen that those saved before?
    If columns for comments are only added in Excel, so that they do not belong to Report, then comments do not dissapear from "blank" column….
    … and function EPMSaveComment in second column still save comments
    But in that case after Insert Member function outside Report is not available automatically in inserted row
    Also if EPMCopyRange is used instead of LocalMembers the situation - dissapearing existing comments when inserting member - is the same
    There is similiar situation with Expand and Insert Member functionality explained in Note 1936111 where SAP states that Refresh is needed?
    Best regards,
    Nevenka Ribnikar

    Hello,
    thanks for you suggestion, I will also wait for answer from SAP.
    I will post details again:
    LOCAL MEMBERs in REPORT:
    EPMSaveComment(EPMMEMBER(000), , EPMDIM_CURRENT_MEMBER(ACCOUNT), )
    After EPM Insert Member
    Comments in column »enter« dissapear
    In documentation EPM Add-in 32.28 is written: EPMSaveComment function is executed (only) when you Refresh the worksheet
    For new inserted member values and comment can be added, but also other comments will be changed to blank values…
    If only values are changed and Save Data without Refresh,
    then comments are still in column »enter«
    If I use columns out of the report than as mentioned, if new members are inserted at the end there is no formula for comment...
    Thank you for your answers, I was worried that there is some simple solution...
    Does anybody has some real project experience with SaveComments and InsertMembers in same reports?
    Best regards,
    Nevenka

  • HT3986 after updating iTunes my quicktime not working I am using Lion oprating system

    Dear Support person
    After up dating Itune now my Quicktime files not working,  I getting massage that Quicktime on this computer not mached with Itune I have tryed all Quicktimes available on your sight with no  succes.
    I have Lion oprating system.
    Yhis itune is realy ...... I hope apple will  find a slution to get out of this bad software.
    best regards

    Lets see if I can make sense of that improper English.
    iTunes and QuickTime run mostly independant from each other. Updating iTunes shouldn't impact QuickTime. If you are playing videos in iTunes they play in iTunes -- not QuickTime.
    If you cannot use QuickTime, you need the most recent version of QuickTime X available from Apple. This is updated using Software Update on Lion. If your computer can update to Mountain Lion, that's your best bet to fix this issue.
    It is also a possibility that you are just missing something.
    Also, I'm not sure why this is listed under Boot Camp...

  • TS3116 After updating, apple TV does not work. A picture is one TV screen which ask to use mini USB.

    Hi... I am not sure what generation I have
    After updating, I does not start at all, no light signal.
    Just picture show to me to use mini USB for Song logo.
    How can I do?

    Welcome to the Apple Community.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
        1.    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
        2.    Connect the micro USB cable to the Apple TV and to your computer.
        3.    Reconnect the power cable (only for Apple TV 3)
        4.    Open iTunes.
        5.    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

  • After updating Mavericks camera functions not working. Help!

    HI! i just installed OS X Mavericks and now my camera is not working, neither in Skype neither in photo booth and so on... what can i do? thank you

    After tesing in a new account, if the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    iSight - Troubleshoot

  • After update menu button does not work

    tried a restore that does not work.. tried the five r's nothing has helped
    worked fine then updated now doesnt not work.. flicking hold from on to off now does what menu used to do and goes a page back..

    lol i update with the newest software for my mini then the software makes my menu key no function.. i GET ZERO HELP and they want me to pay 229 for repairs thats just to priceless

  • After updating im & mail is not working properly i...

    Before few days i am accesing my emails and instant massages service but after updating my 2730classic my email and im service is disabled
    in emails i got only ovi a/c n other a/c before updating there is all yahoo, gmail, msn etc a/c r available.
    Same in my massaging only ovi massenger is showing now and before updating there is all windows live, yahoo massenger r available.
    Any 1 plz help me out 4m this type of trouble.

    Hi,
    Sorry to hear your issue.
    Please remember always need to backup before updating.
    You can use Nokia ovi service for this.
    Can you give me so information to study this case:
    1. I need to know which countryyou live
    2. Which sw versions he has upgraded from and to
    3. The product code of the phone (7 digit under the battery)
    4. by which method has he upgraded the software? – FOTA, NSU, or at the Service Centre?
    Br
    Mahyav

  • Urgent - After Insert Trigger is not working

    CREATE OR REPLACE TRIGGER TD_ADD_SHIPPING_COST
    AFTER INSERT ON wlcs_order
    REFERENCING NEW AS new_order
    FOR EACH ROW
    BEGIN
    IF (:new_order.order_id IS NOT NULL) THEN
    -- call update_wlcs_order procedure from shipping_cost package
    SHIPPING_COST.update_wlcs_order(:new_order.order_id);
    END IF;
    END TD_ADD_SHIPPING_COST;

    See my answer in your other posting here
    Re: Calling of Stored Procedure in After Insert Trigger

  • I had my iPhone replaced in 2011 because of the camera shutter app defect, and the "genius" put in the wrong serial code and after update the phone will not work. What can I do?

    I took my iPhone to AT&T after I tried to update to iOS 6 and the phone said I needed to insert the original sim card which was what was in the device. AT&T said to take it to apple because it had to be a software issue.  I get to the apple store and they tell me because I replaced my phone because of the defective shutter malfunction the "genius" entered in the wrong serial number by one digit causing the phone to turn into a UK phone and they could not fix it unless I have some sort of reciept or email saying it came from Apple. Mind you this is a year later with a move from TX to HI as well! So what am I able to do?? be out of a phone because they messed up?? They told me I could outright buy a new phone which I am NOT going to do because this phone worked before.

    I cant find any reciept in my email or in my husbands email.  I am going to attempt to call and speak to someone who can help me because this was not my fault except trying to be normal and update my phone!

  • INSERT Loading Type not working correctly?

    Hi,
    I'm using ver. 9.2.0.2.8 for the owb client, and ver. 9.2.0.2 for the repository. I'm currently encountering this problem when using the INSERT loading type for loading data into one of my staging tables. It's a simple simple mapping really:
    I have a source table (A) that maps to a filter operator, which is then mapped to a staging table(B).
    The problem is, when I run the mapping to INSERT data from A into an already populated B, not all the desired records are inserted. Weird thing is, when I run the code from generating the intermediate result in TOAD or whatever, I get the desired results. So that kinda rules out any doubts on the select statement generated by OWB.
    Out of 23 records I get like 6.. just 6 of the 23 records I was hoping to be inserted into B.
    And yes, none of the remaining 17 records are present in A, so INSERT should (ideally) work fine and carry out inserting all the 23 records.
    Any ideas? ..

    Hi JP,
    Thank you very much for helpin out, I tried what you told me and here's what I got:
    Starting Execution STG_MAP_FILTER_DCS_IRREG
    Starting Task STG_MAP_FILTER_DCS_IRREG
    ORA-12801: error signaled in parallel query server P012
    ORA-02291: integrity constraint (RTOWNER.FK_RTER_RTA) violated - parent key not found
    ORA-06512: at "RTOWNER.WB_RT_MAPAUDIT", line 338
    ORA-01403: no data found
    ORA-06512: at "RTOWNER.WB_RT_MAPAUDIT", line 1736
    ORA-06512: at "RTOWNER.WB_RT_MAPAUDIT", line 2625
    ORA-06512: at "TOPSSTAGE.STG_MAP_FIL_R_TGT0_719337", line 1443
    ORA-06512: at "TOPSSTAGE.STG_MAP_FIL_R_TGT0_719337", line 2076
    ORA-06512: at "TOPSSTAGE.STG_MAP_FILTER_DCS_IRREG", line 482
    ORA-06512: at "TOPSSTAGE.STG_MAP_FILTER_DCS_IRREG", line 813
    ORA-06512: at line 1
    Completing Task STG_MAP_FILTER_DCS_IRREG
    Completing Execution STG_MAP_FILTER_DCS_IRREG
    ..I wonder what it means, hehe.

  • After effects composition preview video not working correctly

    Okay so, whenever I try to change something on the composition preview video, it doesn't work. I have to go to a completely different screen and go back to see what ive changed, and when I try to ram preview it doesn't even do anything but play the music. Im not very tech savy so I don't know any big words, so try and dumb stuff down for me okay? Please help me,  Thank you.

    Dude, just do your homework, okay?  I, for one, refuse to "dumb it down".  It's up to you to get smarter:
    Getting started with After Effects (CS4, CS5, CS5.5,  CS6, & CC)

  • How do I uninstall Firefox 4? I want the previous version of Firefox. I hate Firefox 4 and regret having updated because it is not working correctly on my Mac OS X 10.5.8.

    I can't view fullscreen videos.

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Mozilla are working to prevent Mac users with non-compatible systems from getting the notification about Firefox 4, and also not displaying the "Download Firefox 4" button on http://www.mozilla.com

Maybe you are looking for

  • Where can I find the latest security hotfix for CF 9.0.2?

    ZDNet announces there is a security hotfix for ColdFusion but provides no link to where I can read about it or download it. I go to the Adobe site and look for it by browsing and searching and can't find it. It's been hidden well. Maybe the ZDNet ann

  • Message interface in synchronous mode but run in asynchronous

    I try to use SAP-XI in synchronous mode with JDBC to JDBC connection. A 'Outbound' message Interface under synchronous mode is defined for sender while an 'Inbound' message interface under synchronous mode is for receiver. In the sender communication

  • Server 2012R2 Windows backup 100% CPU usage and no backup

    Hello! I have a problem with two VM´s on a HP Proliant ML350p Gen8, that has Windows Server 2012R2 operating system with Hyper-V role installed. Both VM´s are also 2012R2, one is DC/DNS/FILE/PRINT and the other one is Exchange 2013. The problem itsel

  • Can't even load software  help needed!

    Just got a 5G 30Gb video iPod - only problem is that I can't even get the software to load onto my laptop - it appears to load, but when I look for it, it simply doesnt exist. Anyone any ideas please?

  • Grant read only permission on my stored procedure.

    I have a requirement like give reaonly access on my stored procedure to another user , not even execute permission on that steored procedure. Could you please let us know the command ?