The PL/SQL command (select/update) was hanged for long time

We have a proc program to access a 160 rows table (F_TRDATA), however, it always hanged for a long time, then it was retarted by our defence process.
(1)Table structure:
SQL> desc F_TRDATA;
Name Null? Type
SCP_NBR NUMBER
A_INDEX NUMBER
A_BITMAP LONG
SQL> select index_name, column_name from user_ind_columns where TABLE_NAME='F_TRDATA';
INDEX_NAME
COLUMN_NAME
I_F_TRDATA
SCP_NBR
I_F_TRDATA
A_INDEX
(2)Use DBLINK between two different machines:
LONG rtc;
char f_tabname[100];
EXEC SQL BEGIN DECLARE SECTION;
char srvname[100];
char dblink_name[100];
EXEC SQL END DECLARE SECTION;
sprintf(srvname,"%s",(const char*)STRING(INOBJECT::srvname).ToUpper());
EXEC SQL SELECT DB_LINK INTO :dblink_name FROM ALL_DB_LINKS WHERE OWNER=:srvname;
     db.setLastSqlCode(sqlca.sqlcode);
     if (sqlca.sqlcode!=0)
          TRACE("SELECT DB_LINK error "<<sqlca.sqlerrm.sqlerrmc)
          return VAL_ERROR;
     else
          TRACE("SELECT DB_LINK OK");
sprintf(f_tabname,"F_%s@%s",(const char*)STRING(parent->getClassName()),(const char*)STRING(dblink_name));
TRACE_SHOW(f_tabname);
rtc=get_free_ri(f_tabname);
EXEC SQL COMMIT;
(3)get_free_ri ():
memset(s_ln,0,800);
sprintf(s_ln,"SELECT A_BITMAP FROM %s WHERE A_INDEX=:a AND SCP_NBR=:b \
          FOR UPDATE OF A_BITMAP",tab);
EXEC SQL PREPARE S FROM :s_ln;
if (sqlca.sqlcode)
{TRACE(""<<s_ln);
TRACE(""<<sqlca.sqlerrm.sqlerrmc);
EXEC SQL DECLARE C_FREE_RI CURSOR FOR S;
if (sqlca.sqlcode) {TRACE("DECLARE C_FREE_RI : "<<sqlca.sqlerrm.sqlerrmc)};
memset(s_ln,0,800);
sprintf(s_ln,"UPDATE %s SET A_BITMAP=:a WHERE A_INDEX=:b AND SCP_NBR=:c",
     tab);
EXEC SQL PREPARE S FROM :s_ln;
EXEC SQL EXECUTE S USING :bitmap,:rand_ind,:scp;
switch(sqlca.sqlcode)
{case 0: /* FOUND */
(4)Trace tools:
select SQL_TEXT from v$sql where HASH_VALUE=(select SQL_HASH_VALUE from v$session where process=10775);
select SQL_TEXT from v$sql where HASH_VALUE=(select PREV_HASH_VALUE from v$session where process=10775);
select XIDUSN,object_id,locked_mode from v$locked_object where object_id =
(select l.object_id from v$locked_object l,v$session s where s.sid=l.session_id and s.process=10775);
select s1.SEQ#,s1.P1,s1.P1TEXT,s1.P2,s1.P2TEXT,s1.P3,s1.P3TEXT,s1.EVENT,e.PARAMETER1,e.PARAMETER2,e.PARAMETER3,s1.WAIT_TIME,s1.SECONDS_IN_WAIT,s1.STATE from
v$session_wait s1,v$session s2,v$event_name e where s1.sid=s2.sid and  e.name=s1.EVENT and s2.process=10775;
(5)Trace info:
SQL> start P6-3.sql1
SQL_TEXT                                                                                           
SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
OF A1."A_BITMAP"                                                                                  
SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
OF A1."A_BITMAP"                                                                                  
SQL_TEXT                                                                                           
SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
OF A1."A_BITMAP"                                                                                  
SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
OF A1."A_BITMAP"                                                                                  
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
      1897 1413697536 driver id                                                                 1  
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
#bytes                                                                    0                        
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
SQL*Net message from client                                                                        
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
driver id                                                                                          
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
#bytes                                                                                             
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
                                                                          0          197725        
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
WAITING                                                                                            
      SEQ#         P1 P1TEXT                                                                   P2  
P2TEXT                                                                   P3                        
P3TEXT                                                                                             
EVENT                                                                                              
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
SQL> spool off
SQL> start P6-4.sql1
SQL_TEXT                                                                                           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
SQL_TEXT                                                                                           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
      SEQ# EVENT                                                                                   
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
       657 SQL*Net message from client                                                             
driver id                                                                                          
#bytes                                                                                             
      SEQ# EVENT                                                                                   
PARAMETER1                                                                                         
PARAMETER2                                                                                         
PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
STATE                                                                                              
                                                                          0          311573        
WAITING                                                                                            
SQL> spool off
(6)We found no locked sessions, and the proecess was hanged when it executed SELECT and UPDATE command. However, the system CPU traffic and I/O traffic was not high.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

up?
up ... in the sky?
up ... my shirt sleeve?
up ... above the streets and houses, rainbow's flying high, everyone can see a rainbow, in the sky.... paint the whole world with a RAINBOW!
up ... yours?

Similar Messages

  • Cldg switch command hangs for long time

    Hello Experts ,
    We have renamed the veritas volumes vol1 and vol2 of disk group "dg", which is under cluster control.
    The renaming of volumes are successfully completed and modification updated in Cluster CCR (cldg sync dg) and volumes are mounted successfully in node002.
    We have switch over the disk group "dg" from node002 to node004. The disk group switch over to the node node004 successfully and able to mount the volumes.
    Again, we have switch over the disk group "dg" from node004 to node002, but the switch command is not successful and hanged for long time. When we check the /var/adm/messages in node002, the below messages appeared
    Oct 22 11:49:39 node002 scsi: [ID 107833 kern.warning] WARNING: /pci@0,600000/pci@0/scsi@1 (mpt0):
    Oct 22 11:49:39 node002 Disconnected command timeout for Target 0
    Oct 22 11:50:49 node002 scsi: [ID 107833 kern.warning] WARNING: /pci@0,600000/pci@0/scsi@1 (mpt0):
    Action plan followed for renaming the volume:*
    node002:/var/tmp/bak# umount /local/mqm/log/mq_log
    node002:/var/tmp/bak# umount /local/mqm/qmgrs/mq_qmgr
    node002:/var/tmp/bak# vxvol -g dg stop vol1
    node002:/var/tmp/bak# vxvol -g dg stop vol2
    node002:/var/tmp/bak# vxedit -g dg rename vol1 vol1_log
    node002:/var/tmp/bak# vxedit -g dg rename vol2 vol2_qmgf
    node002:/var/tmp/bak# vxvol -g dg start vol1_log
    node002:/var/tmp/bak# vxvol -g dg start vol2_qmgf
    node002:/var/tmp/bak# cldg sync dg
    Please advice on this error and how to resolve this.
    Regards,
    R. Rajesh Kannan

    But what is device mtp0? It doesn't sound like a disk name. It is having SCSI problems. I don't know if these messages are relevant though.
    I don't use VxVM as a rule, but your procedure seems reasonable to me.
    Tim
    ---

  • Application hang for long time (unable to load)

    hi and a very good day to all..
    i am a new user of J2ME and i am currently using Sun Wireless Toolkit to run a sample program. But, there are some error occur when i open it from the Open Project in Sun Wireless Toolkit. Once i click the launch button on the emulator, it will show the graphic but with a statement 'Please Wait'. it seems like my application is going happen to hang for quite a long time (i even can't open it at all). it happen every time i open my project and i unable to load my program successfully. i want 2 ask, is it because of teh coding? or my pc? or the Sun Wireless Toolkit itself? i never change/edit the coding, since this the sample application of Mobile Compass i downloading from the internet.
    there are bundle of code in my application (single application)..but the error 'Please Wait' basically come from 1 of the coding. i'll show it below:
    **THE CODE**
    package org.qcontinuum.compass;
    import javax.microedition.lcdui.*;
    import java.util.*;
    abstract public class Progress extends Form implements CommandListener, Runnable {
    private Displayable mParent;
    private Command mCancelCommand;
    private Thread mThread;
    // private Timer mTimer;
    public Progress(String title, Displayable parent) {
    super(title);
    mParent = parent;
    append(new StringItem(null, "Please wait...\n"));
    addCommand(mCancelCommand = new Command("Cancel", Command.CANCEL, 0));
    setCommandListener(this);
    mThread = new Thread(this);
    public void start() {
    mThread.start();
    abstract public void run();
    public void commandAction(Command c, Displayable d) {
    if (c == mCancelCommand) {
    Compass.display(mParent);
    p/s: is it the above error related to java.lang.NullPointerException? this is because, with unexpected situation, suddenly the compass program able to download successfully (only sometime), but still it give some error like below, and i still can select the Time Zone for my destination chosen from the given map.
    java.lang.NullPointerException
         at java.io.DataInputStream.read(+4)
         at java.io.DataInputStream.readUnsignedShort(+4)
         at java.io.DataInputStream.readUTF(+6)
         at java.io.DataInputStream.readUTF(+4)
         at org.qcontinuum.compass.TimeZone.load(+6)
         at org.qcontinuum.compass.TimeZone.<init>(+9)
         at org.qcontinuum.compass.TimeZone.getZones(+36)
         at org.qcontinuum.compass.LocationTimeZone.<init>(+89)
         at org.qcontinuum.compass.LocationMap.locationSelected(+22)
         at org.qcontinuum.compass.MapCanvas.moveImage(+282)
         at org.qcontinuum.compass.MapCanvas.keyPressed(+22)
         at javax.microedition.lcdui.Canvas.callKeyPressed(+19)
         at javax.microedition.lcdui.Display$DisplayAccessor.keyEvent(+198)
         at javax.microedition.lcdui.Display$DisplayManagerImpl.keyEvent(+11)
         at com.sun.midp.lcdui.DefaultEventHandler.keyEvent(+127)
         at com.sun.midp.lcdui.AutomatedEventHandler.keyEvent(+210)
         at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+114)
         at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.run(+57)
    can someone help me on this. i really need the answer for this solution. i am still new and in the process of leaning. Thanks a lot and hope all of u can help me. May God bless u. The reference for the above sample program is at http://http://qcontinuum.org/compass/index.htm
    Regards,
    Miss Iera

    Hi,
    Do you have variable replaced by another query? If that is case, you will get performance issue, when the prequery is runnig when call var screen.
    Do you have variable replaced by authorization? If that is case, for the user will complicated authroization, it will take some time to fill it.
    In general, when the variable screen is calling, have you check in sm66, what is the work process doing? In RSRT->run this query with statistics, which part takes most time?

  • How to enable a printer which was offline for long time?

    Hi,
    One of our printers has not been used for a long time and was set to be permanently offline. Due to the need of printing, the printer was enabled. It is powered on (and can also be disabled and enabled) but is unable to print.
    Is there anything in SAP to check to see why it is failing to print?
    I have tried to check the status of this printer with other printer which is working fine. There is no difference in between their settings.
    The spool requests are waiting to be printed. I would like to check the ip addresses of the printers. Is it possible to find them through SAP. My O/S is Unix.
    Please help me to find the IP addresses of printers attached through SAP and I will try to check them first.
    Thanks
    Vijay

    Hi Vijay,
    Check SPAD -> output devices
    Check thats the printer is properly setup and it been handled by and active spool server, check that the printer ip-address is correct and the right method is in place.
    You can find the ip address of the printer by doing a ping <name of the printer> in a command prompt.
    Regards
    Juan
    Please reward with points if helpful

  • Mac - after updating creative cloud, all apps have disappeared from "apps" and attempts to install hang for long time.

    I recently updated the Creative Cloud app, and suddenly I get a message that I have not yet downloaded any apps. They are all right there in my applications folder, but not in my CC desktop app. When I attempt to install any app, it hangs at 40 or 42% forever..... Please help.

    Thanks for your response, John,
    I'm not sure what browsers and firewall have to do with this issue. I have been using Creative Cloud as a desktop app since first subscribing to the Adobe Creative Cloud, and downloaded all of the apps that I use on a daily basis way back then. The only change between seeing all of my apps and not seeing any of them was updating the actual Creative Cloud app itself. There were no other changes. Here is a screen shot of what I saw when attempting to update Acrobat. Below that are two screen shots that may be a signal that my Creative Cloud app is corrupt. Please let me know how to proceed.
    This hung at 42% for about half an hour....
    This seems quite odd....
    InDesign seems normal...

  • Info pack is hanging for longer times

    Hi Gurus,
    I had a Info pack which will fetch the data from IBM Data stage to SAP BW,When i'm executing the load jobs my info pack is in yellow for hours and message in Data stage is "APT_CombinedOperatorController,0: Logging delayed metadata.".Can any body throw some light on this?The Job over view is enabling for BW but not for Source system.The same for all other options.But i can see some ALE Management i din't know which were related to my job and how to deal them.
    Regards,
    Rambabu

    Hi Ram
    Is this the first time you are running this IP?
    Please give us more details on data as well. Approximately how much data lies in the source system. At least do you have an option to check the data in source system.
    If there is no data also, the IP will have yellow status forever. In that case, you should do as below.
    Click on the below option in your IP
    Below screen will appear. Change it to Green and execute the job again
    Share the screenshots of detailed tab of the IP monitor, if nothing worked out.
    Regards
    Karthik

  • Validation Error - An error occured executing the provided SQL Command

    Hi All,
    I am new to using SQL Server in general (2008 R2) and am trying to change the source location for multiple packages in order to obtain our data from a more reliable environment.
    I have created a copy of the target database where the data will be loaded, amended the source and target connection managers and ran through the packages to ensure they work, which many do.
    We are changing the source from a local server to a cloud based server and when running a package that literally truncates target table, selects * from source, and inserts data to target I get a validation error "An error occurred executing the provided
    SQL Command "Select *...." The connection has been disabled" and "component ADO NET Source failed validation and returned validation status "VS_ISBROKEN"".
    The table structure from the 2 sources is the same and I have even recreated the data flow tasks to ensure the metadata has updated. When selecting 100 rows or even 5,000,000 rows from source the package runs fine but will fail as above
    when selecting &* (around 9.5 million rows).
    I'm not sure if this is due to the new data source being web based or if it could be some erroneous data in the table that isn't being selected when limiting to 5 milling rows etc.
    I have spend hours trying to figure out what the issue could be (doesn't help being new to SQL Server) so any guidance would be hugely appreciated!!!
    Thanks,
    Louis.

    Hi All,
    Unfortunately I don't believe any of the above are the issues.
    Our current working project/packages run via an SQL agent job daily. To test and ensure the package in question ran outside of the agent WITHOUT changing the ADO NET Source I exported the package (that runs daily) and ran it locally,
    to which it failed.
    I then edited the select statement from 'select * from [table]' to 'select top(100) from [table] to which it ran without error.
    So in summary:
    Package will run fine if run as part of the agent job (with multiple other packages)
    Package will not run from File System when selecting * from the source table
    Package will run from File System when selecting limited rows
    Could this be something to do with permissions? The errors I get are:
    An error occurred executing the provided SQL command: "select * from [table]". The connection has been disabled.
    "component" ADO NET Source"(396") failed validation and returned validation status "VS_ISBROKEN".
    Thanks,
    Louis.

  • How to find out the failed sql command and its data from DEFERROR

    Hi,
    has anybody a procedure or some other possibilities to read the content of column USER_DATA of the advanced replication view DEFERROR in order to find out the failed sql command and its column values?
    Thanks in advance.

    Hi Vishwa,
                 The control would be something like this for navigation in Get_p_xxx method u mention as link and u mention a event name which gets triggered on the click of this hyperlink. So your GET_P_XXX method would have the following code:
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = 'EXAMPLE'.
    Now you have to create a method as EH_ONEXAMPLE at your IMPL class and within which you would give an outbound plug method. Within the outbound plug the target data would be filled in the collection and window outbound plug would be triggered.
    This is a huge topic and  i have just mentioned you basic things.
    Regards,
    Bharathy.

  • The Google/AT&T Lollipop update was a disaster

    The Google/AT&T Lollipop update was a disaster. I now have a hot pink and baby blue calender. The battery drained, in standby, at 2% per minute, multiple attempts were required for it to start up (link to network) it dropped calls like crazy, font too small to read etc. My phone worked just fine. If it isn’t broken . . . don’t fix it. I am willing to switch carriers (after 30 years) and phone makers as necessary to escape this carnival of errors . . . complete with clown color scheme.

    What phone?
    There is a big change in lollipop android went from dalvik to ART.  A factory reset might just fix the problem.  Or clear your cache first.

  • While i was updating it was failed for 3 times and then i started to update it again and then it was showing as the product verification could not be verified and the product verification may be damaged or not signed

    while i was updating it was failed for 3 times and then i started to update it again and then it was showing as the product verification could not be verified and the product verification may be damaged or not signed

    Mavericks installer can’t be verified
    Mavericks Installer can’t be verified (2)
    Try running the combo update.
    10.9.2

  • What can i do? i forgot my password (iCloud) and i don't know the security questions also, the email that was set up with that account was deleted a long time ago, so i cannot update my applications on my iphone 4S.... THANK YOU!!!!

    URGENT What can i do? i forgot my password (iCloud) and i don't know the security questions also, the email that was set up with that account was deleted a long time ago, so i cannot update my applications on my iphone 4S.... THANK YOU!!!!

    Try the methods described here in this link:  Apple ID: All about Apple ID security questions
    If neither your recovery email works nor do you know the answers to the security questions, you need to give Apple Support a call - only they will be able to help you. See this webpage on how to contact Apple Support in your country: There are either telephone numbers given or an email form:
         Apple ID: Contacting Apple for help with Apple ID account security
    Explain, that you need help with an account security problem.
    You can also try to email the iTunes Support using this form: https://ssl.apple.com/emea/support/itunes/contact.html

  • Visual Studio Update 2 hangs for 13 minutes on "Creating a system restore point..."

    It appears that Visual Studio 2012 Update 2 hangs for a long period of time before it tries to create a system restore point.  Should I create a Microsoft Connect issue for this?
    Here is what I did:
    I created a new Windows 8 x86 Virtual Machine using VirtualBox.  I installed Visual Studio 2012 and Update 1 because Update 2 was not yet out.  I came back 1 week later and tried to install Visual Studio Update 2.
    When I ran the installer on the Virtual machine, it hung for seemingly 10 minutes at "Creating a system restore point..." I powered off the virtual machine and disabled system restore.  I then ran with the /layout option on the host machine
    so I could pre-download the files.  Then I tried again.
    Again, it hung.  This time I let it go.  It hung for exactly 13 minutes before it gave up and continued on to the install.  The log file says this:
    [0EBC:0F90][2013-04-18T12:39:36]: Apply begin
    [0EBC:0F90][2013-04-18T12:39:36]: MUX:  Apply Phase Begin
    [0EBC:0F90][2013-04-18T12:39:36]: MUX:  -----------------
    [0EBC:0F90][2013-04-18T12:39:36]: MUX:  Metrics: ShouldSendData=False
    [0EBC:0F90][2013-04-18T12:39:36]: MUX:  Free Disk Space before install:  SystemDrive C:\ 32519413760 bytes  AppDrive C:\ 32519413760 bytes
    [01F4:0748][2013-04-18T12:52:34]: Creating a system restore point.
    [01F4:0748][2013-04-18T12:52:34]: Could not create system restore point, error: 0x80070422. Continuing...
    NOTE: Although it says "Creating a system restore point" at 12:52, it actually displayed the message on the screen at 12:39.  That indicates that it was really doing something else during those 13 minutes, not creating the restore point. 
    That is corroborated by the fact that it took a long time regardless of system restore being on or off.
    If no one has any information or explanation, I will create an issue on Microsoft Connect.

    I have the same issue. Visual Studio 2013 Professional update 2 was not installed from Web installer. Rather I downloaded a trial version and now want to uninstall it. However, I let the uninstaller try to create a Restore Point all night while I slept.
    Next day, not done. So I clicked cancel, and it then commenced to create a restore point for the cancel. I did let the cancel run for awhile but I rebooted.
    I then researched something on how to disable the restore point security on my drive, but that did not deter Visual Studio from trying to protect me and it TRIES to create a restore point before uninstalling. Just hangs forever. I don't need a restore point
    for an eval copy of VS, thank you very much. Perhaps a simple dialog ("Do you want to create a restore point?") would be helpful?
    Update: turning off Windows Defender fixed the problem. 

  • How to find the status of package (valid/invalid) was at a particular time

    How to find the status of package (valid/invalid) was at a particular time ?
    I want to find the status of one oracle package at 3pm yesterday. The status of this package today is INVALID.
    I am sure it was VALID yesterday. But no way to prove it. Can any one help please???
    I can generate AWR report for last 7 days...

    Try using a flashback query, like this:
    select object_name, object_type, status
    from dba_objects AS OF TIMESTAMP (SYSTIMESTAMP - INTERVAL '18' HOUR)  -- 18 hours ago
    where object_name = 'MY_OBJECT'
    ;if you haven't granted FLASHBACK privs, you may need to connect as SYS to do a flashback query on a data dictionary table.
    But this should give you the info you need - if it's still in undo.

  • SAP Script - get a message "update was terminated for author......."

    Hi,
    I am try to print a purchase order(me22n) into form(script form), Gettin the following fatal error - No SAPscript message exists. and one message in pop-up window is coming up like : "Update was terminated for user...."
    TD 000: No SAPscript message exists
    Any one came across this error.
    Pls treat it as urgent. i will reward for every helpful responses.
    Cheers
    Bobby

    Hi,
       Thank u for quick response.
       but already  have maintained driver program and forroutine in TCODE - NACE in Quality system.
    Thx in Adv.
    Bobby

  • Report Generation Toolkit producing error -2147417842, "The application called an interface that was marshalled for a different thread."

    Hi everybody,
    I've got an application that logs data to an Excel spreadsheet using the Report Generation Toolkit.  My VI's have worked fine in the past using Excel XP, but since I've upgraded to Excel 2007, I am getting COM errors like this one:
    "Error -2147417842 occurred at The application called an interface that was marshalled for a different thread. in Excel_Insert_Text.vi"  That is the exact wording, even with the weird punctuation and capitalization.
    The first occurrence of the error is not determinate.  Sometimes, up to 10 logging sessions, involving a new .xls file, can occur before this error pops up.  Once this error occurs, I must quit LabVIEW to resolve it.  If I try to do anything with Excel, I always get this error, although sometimes it comes out of different source VIs.  Excel_Open.vi is another.
    These logging VIs have worked just fine until upgrading to Excel 2007.  I checked, and I was using a really old version of the Report Generation Toolkit, v1.0.1.  I read the documentation and had a big sigh of relief when I realized I needed to upgraded to v1.1.2 to get Excel 2007 support.  However, even after upgrading, I'm still getting the same errors.  I'm using LabVIEW 8.0.1, and I'm also building these VIs into an application.   The error occurs both in the LabVIEW IDE and in the built application.  Does anybody out there have any idea what I can do to fix this?  I googled a little, and discovered this is a COM error, but I can't find any references to the Report Generation Toolkit specifically.
    Thanks,
    Phil
    Solved!
    Go to Solution.

    Hi Christian,
    I do not see that exact option listed, do you mean "user interface"?  I recognize the "Run in UI Thread" option, it's on the Call Library Function Node.
    I checked, and my top-level VI has "same as caller" set, and I believe all my VIs are set to "same as caller".  Are you suggesting I change my top-level VI preferred execution environment to "user interface", or just the logging sub-VIs that use the Report Generation Toolkit?
    Thanks,
    Phil
    Attachments:
    VI_properties.png ‏15 KB

Maybe you are looking for

  • ALM alert text in mail

    Hi, I want to add alert text to my sms from ALM. What parameter do I need to maintain in Method? The parameter name I have is SUBJECT_ALERT. What would be the parameter value for alert text. Any help would be appreciated. Please help. Points gaurante

  • Recover photos

    after ecrypting my phone to receive work email now my photos and camera will not work.  how can I recover the photos and reverse the encryption on the phone.

  • Firefox "starts" but browser will not open on desktop

    When I click to open Firefox min Windows 7, the program loads, i.e., I can see the window on the Aero Bar, but the browser will not open on my desktop. I have redone my profile and that seems to solve the problem for a while, but then the same proble

  • Getting an interrupted exception when trying to bring down the service

    Hi, From the client side , I started an invocation service which is giving an interrupted exception when trying to shut it down. 2013-08-01 12:21:15.576 PDT ERROR -  -  -  - Oracle Coherence 3.7.1.6 (thread=Invocation:customerLoaderWM:EventDispatcher

  • Installing .dmg on Snow Leopard

    I'm new to Macs and I have a Macbook Pro 13" standard with no frills and Snow Leopard. When I install the new version of something, like the iPhoneSDK.dmg for 3.1.2, does it uninstall the old one for me and just install the new one? Thanks.