How long does the RMA process usually take?

Just wondering, if anyone knows. From what I have seen in some posts referring to the process, it looks like it could be awhile.

Go to http://www.msicomputer.com. Click on "Contact US" and down the right side is a box that says "Customer Service - RMA's Only" with the link and the directions. You then d/l a form, fill it out and then either email of fax it back with your details. They then will issue you an RMA# which you use to send the product back. Mine took about 2 weeks to get back.

Similar Messages

  • HT4854 how long does the mountain lion usually take to download?

    how long does the mountain lion usually take to download? my download is taking about 30 minutes so far, and it won't let me quit and start over.

    Glad I could help.

  • HT4796 how long does the migration process take?

    How long does the migration process take? And can you speed it up?

    That's rather like asking how long is a piece of string.
    It depends on how much you've got to migrate. Make sure that you run software update on the old machine before you start the migration. Failure to do this is one of the biggest causes of problems people have with this process.

  • TS4036 how long does the restoration process

    How long does the restoration process take

    Hi Dottie83,
    The extraction of files should not take more than a few minutes. Please cancel and retry.
    In case you still face issues consider redownloading the package again.
    Alternatively you can try downloading from the direct download links available at : http://prodesigntools.com/adobe-cs6-direct-download-links.html
    But make sure you follow the important steps mentioned on the page before initiating the download.

  • How long does the extraction process of installing Dreamweaver trial usually take?

    The trial version of Dreamweaver has been extracting for over ten hours.  Is this common?  If so how long does it usually take? 
    Thank you!

    Hi Dottie83,
    The extraction of files should not take more than a few minutes. Please cancel and retry.
    In case you still face issues consider redownloading the package again.
    Alternatively you can try downloading from the direct download links available at : http://prodesigntools.com/adobe-cs6-direct-download-links.html
    But make sure you follow the important steps mentioned on the page before initiating the download.

  • How long does the warranty repair service take?

    Hi,
    I bought my laptop on 2007-07-06 and few days later I have noticed that my RTC battery isn working properly, so I have returned my laptop to Toshiba on 25.07.2007. On the Toshiba Service Status site http://weblord.toshiba-tro.de/WeblordTracking/default.aspx i see that they received it on 27.07.2007.
    The next entry, which is 30.07.2007, says that the repair is in progress and nothing else. So, does anybody know how long can take a battery change, and how long do I have to wait for my laptop?

    Hi Leszek
    As you know it is not easy to say how long time the repair will take and I presume it is not the same by every authorized service partner. Some of them do this faster and some need more time because they have no parts for replacement.
    If you are now in PL (Poland I suppose) it will take a little bit more time as usual.
    BTW: why you didnt try to load BIOS battery as described in Users Manuals? If I am remembering well the loading time is about 48 hours. If you want you can check it in Users Manuals.

  • HT1600 how long does the apple tv update take

    How long does it take to download the update for Apple tv?  It has already been 2 hours and it has not moved.

    Welcome to the Apple Community.
    You can't do much else besides pull the plug. If it causes further problems you should be able to restore as below:
    Get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.
    On the other hand you may be able to simply start the update again. If however the update continues to fail, you should try the restore routine above.

  • How long does the parameter sqlnet.expire_time take to call pmon to release the shadow process?

    Hi folks,
    I had a following test on Oracle 11g in Linux 5.4(a vmware machine) for the parameter sqlnet.expire_time.
    1. configure the parameter sqlnet.expire_time in sqlnet.ora and the parameter resource_limit keep false.
    [oracle@orasrv admin]$ more sqlnet.ora
    TRACE_LEVEL_SERVER = 16 
    TRACE_FILE_SERVER = SERVER
    TRACE_DIRECTORY_SERVER= /u01/app/oracle/network/trace 
    TRACE_TIMESTAMP_ SERVER = ON 
    TRACE_UNIQUE_SERVER = ON
    DIAG_ADR_ENABLED=OFF
    sqlnet.expire_time = 1
    2.connect to database server from my local 11g client(192.168.7.133).
    C:\Users\robinson.cheng>sqlplus scott/tiger@ora11g
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Jun 25 09:57:59 2013
    SQL> update emp set sal=sal*1.1 where deptno=20;   ---Issued the sql to hold a lock
    5 rows updated.
    --disabled the network adapter in VM setting
    SQL> select * from dual;
    select * fromdual
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 29522
    Session ID: 15 Serial number: 447
    3.observe the change in database server.
    SQL> @comm_sess_users;
    +----------------------------------------------------+
    | User Sessions (All)                                |
    +----------------------------------------------------+
    Instance     SID Serial ID    Status    Oracle User     O/S User         O/S PID Session Program              Terminal             Machine
    ora11g        15       447  INACTIVE          SCOTT Robinson.Che   29522         sqlplus.exe                      PC39        TRADESZ\PC39
                 125         5  INACTIVE            SYS       oracle    4734         [email protected] (TNS V1      pts/0          orasrv.com
                 139         9    ACTIVE            SYS       oracle   29447         [email protected] (TNS V1      pts/4          orasrv.com
    --Get the spid for user scott by SID
    SQL> @my_spid_from_sid
    Enter value for input_sid: 15
    old   4: AND s.sid = &input_sid
    new   4: AND s.sid = 15
       SID    SERIAL# SPID
        15        447 29522
    --To find the locked object
    SQL> @lock_obj
    OBJECT_NAME||''||LOCKED_MODE||''||CTIME||''||C.SID||''||SERIAL#
    EMP   3   14   15  447
    EMP   3   83   15  447
    --The trace file exists
    SQL> ho ls -hltr /u01/app/oracle/network/trace/s*29522*
    -rw-r----- 1 oracle oinstall 241K Jun 25 09:59 /u01/app/oracle/network/trace/server_29522.trc
    SQL> set time on;
    10:03:46 SQL> delete scott.emp where deptno=20;  --->try to issue another sql. the sql is blocked
    delete scott.emp where deptno=20
    ERROR at line 1:
    ORA-01013: user requested cancel of current operation
    --Check the server process for scott
    10:04:37 SQL> ho ps -ef | grep 29522 | grep -v grep
    oracle   29522     1  0 09:58 ?        00:00:00 oracleora11g (LOCAL=NO)
    --Could not reach to client
    10:06:51 SQL> ho ping 192.168.7.133
    PING 192.168.7.133 (192.168.7.133) 56(84) bytes of data.
    From 192.168.7.40 icmp_seq=2 Destination Host Unreachable
    From 192.168.7.40 icmp_seq=3 Destination Host Unreachable
    From 192.168.7.40 icmp_seq=4 Destination Host Unreachable
    From 192.168.7.40 icmp_seq=6 Destination Host Unreachable
    From 192.168.7.40 icmp_seq=7 Destination Host Unreachable
    From 192.168.7.40 icmp_seq=8 Destination Host Unreachable
    10:15:08 SQL> select count(*) from v$process;
      COUNT(*)
            27
    10:17:59 SQL> ho ps -ef | grep 29522 | grep -v grep
    oracle   29522     1  0 09:58 ?        00:00:00 oracleora11g (LOCAL=NO)
    -->At this time the server process was released
    10:18:08 SQL> ho ps -ef | grep 29522 | grep -v grep
    10:19:45 SQL> select count(*) from v$process;
      COUNT(*)
            26
    -->the lock was released
    10:19:54 SQL> @lock_obj
    no rows selected
    10:20:03 SQL> @comm_sess_users;
    +----------------------------------------------------+
    | User Sessions (All)                                |
    +----------------------------------------------------+
    Instance     SID Serial ID    Status    Oracle User     O/S User         O/S PID Session Program              Terminal             Machine
    ora11g       125         5  INACTIVE            SYS       oracle    4734         [email protected] (TNS V1      pts/0          orasrv.com
                 139         9    ACTIVE            SYS       oracle   29447         [email protected] (TNS V1      pts/4          orasrv.com
    4. the trace log file.
    [25-JUN-2013 09:58:03:345] nsprecv: FF 01 00 00 00 04 00 00  |........|
    [25-JUN-2013 09:58:03:345] nsprecv: 00 03 0E 13              |....    |
    [25-JUN-2013 09:58:03:345] nsprecv: normal exit
    [25-JUN-2013 09:58:03:345] nsrdr: got NSPTDA packet
    [25-JUN-2013 09:58:03:345] nsrdr: NSPTDA flags: 0x0
    [25-JUN-2013 09:58:03:345] nsrdr: normal exit
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: *what=1, *bl=8145
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: nsctxrnk=0
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: normal exit
    [25-JUN-2013 09:58:03:345] nioqrc: exit
    [25-JUN-2013 09:58:03:345] nioqsn: entry
    [25-JUN-2013 09:58:03:345] nioqsn: exit
    [25-JUN-2013 09:58:03:345] nioqrc: entry
    [25-JUN-2013 09:58:03:345] nsdo: entry
    [25-JUN-2013 09:58:03:345] nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    [25-JUN-2013 09:58:03:345] nsdo: rank=64, nsctxrnk=0
    [25-JUN-2013 09:58:03:345] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [25-JUN-2013 09:58:03:345] nsdo: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:58:03:345] nsdofls: entry
    [25-JUN-2013 09:58:03:345] nsdofls: DATA flags: 0x0
    [25-JUN-2013 09:58:03:345] nsdofls: sending NSPTDA packet
    [25-JUN-2013 09:58:03:345] nspsend: entry
    [25-JUN-2013 09:58:03:345] nspsend: plen=17, type=6
    [25-JUN-2013 09:58:03:345] nttwr: entry
    [25-JUN-2013 09:58:03:345] nttwr: socket 13 had bytes written=17
    [25-JUN-2013 09:58:03:345] nttwr: exit
    [25-JUN-2013 09:58:03:345] nspsend: packet dump
    [25-JUN-2013 09:58:03:345] nspsend: 00 11 00 00 06 00 00 00  |........|
    [25-JUN-2013 09:58:03:345] nspsend: 00 00 09 05 00 00 00 11  |........|
    [25-JUN-2013 09:58:03:345] nspsend: 00                       |.       |
    [25-JUN-2013 09:58:03:345] nspsend: 17 bytes to transport
    [25-JUN-2013 09:58:03:345] nspsend: normal exit
    [25-JUN-2013 09:58:03:345] nsdofls: exit (0)
    [25-JUN-2013 09:58:03:345] nsdo: nsctxrnk=0
    [25-JUN-2013 09:58:03:345] nsdo: normal exit
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: entry
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x0
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: rank=64, nsctxrnk=0
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: nsctx: state=8, flg=0x400c, mvd=0
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:58:03:345] nsfull_pkt_rcv: switching to application buffer
    [25-JUN-2013 09:58:03:345] nsrdr: entry
    [25-JUN-2013 09:58:03:345] nsrdr: recving a packet
    [25-JUN-2013 09:58:03:345] nsprecv: entry
    [25-JUN-2013 09:58:03:345] nsprecv: reading from transport...
    [25-JUN-2013 09:58:03:345] nttrd: entry
    [25-JUN-2013 09:58:03:345] nttrd: socket 13 had bytes read=13
    [25-JUN-2013 09:58:03:345] nttrd: exit
    [25-JUN-2013 09:58:03:345] nsprecv: 13 bytes from transport
    [25-JUN-2013 09:58:03:345] nsprecv: tlen=13, plen=13, type=6
    [25-JUN-2013 09:58:03:345] nsprecv: packet dump
    [25-JUN-2013 09:58:03:345] nsprecv: 00 0D 00 00 06 00 00 00  |........|
    [25-JUN-2013 09:58:03:345] nsprecv: 00 00 03 0E 14           |.....   |
    [25-JUN-2013 09:58:03:345] nsprecv: normal exit
    [25-JUN-2013 09:58:03:345] nsrdr: got NSPTDA packet
    [25-JUN-2013 09:58:03:346] nsrdr: NSPTDA flags: 0x0
    [25-JUN-2013 09:58:03:346] nsrdr: normal exit
    [25-JUN-2013 09:58:03:346] nsfull_pkt_rcv: *what=1, *bl=8145
    [25-JUN-2013 09:58:03:346] nsfull_pkt_rcv: nsctxrnk=0
    [25-JUN-2013 09:58:03:346] nsfull_pkt_rcv: normal exit
    [25-JUN-2013 09:58:03:346] nioqrc: exit
    [25-JUN-2013 09:58:03:346] nioqsn: entry
    [25-JUN-2013 09:58:03:346] nioqsn: exit
    [25-JUN-2013 09:58:03:346] nioqrc: entry
    [25-JUN-2013 09:58:03:346] nsdo: entry
    [25-JUN-2013 09:58:03:346] nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    [25-JUN-2013 09:58:03:346] nsdo: rank=64, nsctxrnk=0
    [25-JUN-2013 09:58:03:346] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [25-JUN-2013 09:58:03:346] nsdo: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:58:03:346] nsdofls: entry
    [25-JUN-2013 09:58:03:346] nsdofls: DATA flags: 0x0
    [25-JUN-2013 09:58:03:346] nsdofls: sending NSPTDA packet
    [25-JUN-2013 09:58:03:346] nspsend: entry
    [25-JUN-2013 09:58:03:346] nspsend: plen=17, type=6
    [25-JUN-2013 09:58:03:346] nttwr: entry
    [25-JUN-2013 09:58:03:346] nttwr: socket 13 had bytes written=17
    [25-JUN-2013 09:58:03:346] nttwr: exit
    [25-JUN-2013 09:58:03:346] nspsend: packet dump
    [25-JUN-2013 09:58:03:346] nspsend: 00 11 00 00 06 00 00 00  |........|
    [25-JUN-2013 09:58:03:346] nspsend: 00 00 09 05 00 00 00 12  |........|
    [25-JUN-2013 09:58:03:346] nspsend: 00                       |.       |
    [25-JUN-2013 09:58:03:347] nspsend: 17 bytes to transport
    [25-JUN-2013 09:58:03:347] nspsend: normal exit
    [25-JUN-2013 09:58:03:347] nsdofls: exit (0)
    [25-JUN-2013 09:58:03:347] nsdo: nsctxrnk=0
    [25-JUN-2013 09:58:03:347] nsdo: normal exit
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: entry
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x0
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: rank=64, nsctxrnk=0
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: nsctx: state=8, flg=0x400c, mvd=0
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:58:03:347] nsfull_pkt_rcv: switching to application buffer
    [25-JUN-2013 09:58:03:347] nsrdr: entry
    [25-JUN-2013 09:58:03:347] nsrdr: recving a packet
    [25-JUN-2013 09:58:03:347] nsprecv: entry
    [25-JUN-2013 09:58:03:347] nsprecv: reading from transport...
    [25-JUN-2013 09:58:03:347] nttrd: entry
    [25-JUN-2013 09:59:13:389] nttrd: socket 13 had bytes read=220
    [25-JUN-2013 09:59:13:390] nttrd: exit
    [25-JUN-2013 09:59:13:390] nsprecv: 220 bytes from transport
    [25-JUN-2013 09:59:13:390] nsprecv: tlen=220, plen=220, type=6
    [25-JUN-2013 09:59:13:390] nsprecv: packet dump
    [25-JUN-2013 09:59:13:390] nsprecv: 00 DC 00 00 06 00 00 00  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 00 03 5E 15 21 80 00  |...^.!..|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 00 00 00 00 FE FF FF  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: FF 7E 00 00 00 FE FF FF  |.~......|
    [25-JUN-2013 09:59:13:390] nsprecv: FF 0D 00 00 00 FE FF FF  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: FF FE FF FF FF 00 00 00  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 01 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 00 00 00 00 FE FF FF  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: FF 00 00 00 00 FE FF FF  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: FF FE FF FF FF 48 10 C1  |.....H..|
    [25-JUN-2013 09:59:13:390] nsprecv: 01 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: 00 FE FF FF FF FE FF FF  |........|
    [25-JUN-2013 09:59:13:390] nsprecv: FF 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 2A 75 70  |.....*up|
    [25-JUN-2013 09:59:13:391] nsprecv: 64 61 74 65 20 65 6D 70  |date.emp|
    [25-JUN-2013 09:59:13:391] nsprecv: 20 73 65 74 20 73 61 6C  |.set.sal|
    [25-JUN-2013 09:59:13:391] nsprecv: 3D 73 61 6C 2A 31 2E 31  |=sal*1.1|
    [25-JUN-2013 09:59:13:391] nsprecv: 20 77 68 65 72 65 20 64  |.where.d|
    [25-JUN-2013 09:59:13:391] nsprecv: 65 70 74 6E 6F 3D 32 30  |eptno=20|
    [25-JUN-2013 09:59:13:391] nsprecv: 01 00 00 00 01 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 02 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:391] nsprecv: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:392] nsprecv: 00 00 00 00              |....    |
    [25-JUN-2013 09:59:13:392] nsprecv: normal exit
    [25-JUN-2013 09:59:13:392] nsrdr: got NSPTDA packet
    [25-JUN-2013 09:59:13:392] nsrdr: NSPTDA flags: 0x0
    [25-JUN-2013 09:59:13:392] nsrdr: normal exit
    [25-JUN-2013 09:59:13:392] nsfull_pkt_rcv: *what=1, *bl=8145
    [25-JUN-2013 09:59:13:392] nsfull_pkt_rcv: nsctxrnk=0
    [25-JUN-2013 09:59:13:392] nsfull_pkt_rcv: normal exit
    [25-JUN-2013 09:59:13:392] nioqrc: exit
    [25-JUN-2013 09:59:13:393] nsmore2recv: entry
    [25-JUN-2013 09:59:13:393] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:393] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:393] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:393] sntpoltsts: exit
    [25-JUN-2013 09:59:13:393] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:393] nioqts: exit
    [25-JUN-2013 09:59:13:393] nioqts: exit
    [25-JUN-2013 09:59:13:394] nioqts: exit
    [25-JUN-2013 09:59:13:395] nsmore2recv: entry
    [25-JUN-2013 09:59:13:395] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:395] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:395] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:395] sntpoltsts: exit
    [25-JUN-2013 09:59:13:395] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:395] nioqts: exit
    [25-JUN-2013 09:59:13:396] nioqts: exit
    [25-JUN-2013 09:59:13:397] nioqts: exit
    [25-JUN-2013 09:59:13:397] nsmore2recv: entry
    [25-JUN-2013 09:59:13:398] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:398] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:398] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:398] sntpoltsts: exit
    [25-JUN-2013 09:59:13:398] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:398] nioqts: exit
    [25-JUN-2013 09:59:13:398] nioqts: exit
    [25-JUN-2013 09:59:13:400] nioqts: exit
    [25-JUN-2013 09:59:13:400] nsmore2recv: entry
    [25-JUN-2013 09:59:13:400] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:400] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:400] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:400] sntpoltsts: exit
    [25-JUN-2013 09:59:13:400] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:400] nioqts: exit
    [25-JUN-2013 09:59:13:401] nioqts: exit
    [25-JUN-2013 09:59:13:402] nioqts: exit
    [25-JUN-2013 09:59:13:402] nsmore2recv: entry
    [25-JUN-2013 09:59:13:402] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:402] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:402] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:402] sntpoltsts: exit
    [25-JUN-2013 09:59:13:402] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:402] nioqts: exit
    [25-JUN-2013 09:59:13:403] nioqts: exit
    [25-JUN-2013 09:59:13:404] nioqts: exit
    [25-JUN-2013 09:59:13:405] nsmore2recv: entry
    [25-JUN-2013 09:59:13:405] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:405] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:405] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:405] sntpoltsts: exit
    [25-JUN-2013 09:59:13:405] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:405] nioqts: exit
    [25-JUN-2013 09:59:13:406] nioqts: exit
    [25-JUN-2013 09:59:13:406] nioqts: exit
    [25-JUN-2013 09:59:13:407] nsmore2recv: entry
    [25-JUN-2013 09:59:13:407] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:407] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:407] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:408] sntpoltsts: exit
    [25-JUN-2013 09:59:13:408] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:408] nioqts: exit
    [25-JUN-2013 09:59:13:409] nioqts: exit
    [25-JUN-2013 09:59:13:410] nioqts: exit
    [25-JUN-2013 09:59:13:410] nsmore2recv: entry
    [25-JUN-2013 09:59:13:410] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:410] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:410] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:410] sntpoltsts: exit
    [25-JUN-2013 09:59:13:410] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:410] nioqts: exit
    [25-JUN-2013 09:59:13:411] nioqts: exit
    [25-JUN-2013 09:59:13:412] nioqts: exit
    [25-JUN-2013 09:59:13:412] nsmore2recv: entry
    [25-JUN-2013 09:59:13:412] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:412] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:412] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:412] sntpoltsts: exit
    [25-JUN-2013 09:59:13:412] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:412] nioqts: exit
    [25-JUN-2013 09:59:13:412] nioqts: exit
    [25-JUN-2013 09:59:13:413] nioqts: exit
    [25-JUN-2013 09:59:13:425] nsmore2recv: entry
    [25-JUN-2013 09:59:13:425] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:425] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:425] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:425] sntpoltsts: exit
    [25-JUN-2013 09:59:13:425] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:425] nioqts: exit
    [25-JUN-2013 09:59:13:426] nioqts: exit
    [25-JUN-2013 09:59:13:427] nioqts: exit
    [25-JUN-2013 09:59:13:427] nsmore2recv: entry
    [25-JUN-2013 09:59:13:427] nsmore2recv: testing for MOREDATA from transport
    [25-JUN-2013 09:59:13:427] sntpoltsts: fd 13 need 41 readiness event, wait time 0
    [25-JUN-2013 09:59:13:427] sntpoltsts: fd 13 has 0 readiness ev
    [25-JUN-2013 09:59:13:427] sntpoltsts: exit
    [25-JUN-2013 09:59:13:427] nsmore2recv: exit (0)
    [25-JUN-2013 09:59:13:427] nioqts: exit
    [25-JUN-2013 09:59:13:428] nioqts: exit
    [25-JUN-2013 09:59:13:428] nioqts: exit
    [25-JUN-2013 09:59:13:428] nioqsn: entry
    [25-JUN-2013 09:59:13:428] nioqsn: exit
    [25-JUN-2013 09:59:13:428] nioqrc: entry
    [25-JUN-2013 09:59:13:428] nsdo: entry
    [25-JUN-2013 09:59:13:428] nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    [25-JUN-2013 09:59:13:428] nsdo: rank=64, nsctxrnk=0
    [25-JUN-2013 09:59:13:429] nsdo: nsctx: state=8, flg=0x8400c, mvd=0
    [25-JUN-2013 09:59:13:429] nsdo: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:59:13:429] nsdofls: entry
    [25-JUN-2013 09:59:13:429] nsdofls: DATA flags: 0x0
    [25-JUN-2013 09:59:13:429] nsdofls: sending NSPTDA packet
    [25-JUN-2013 09:59:13:429] nspsend: entry
    [25-JUN-2013 09:59:13:429] nspsend: plen=125, type=6
    [25-JUN-2013 09:59:13:429] nttwr: entry
    [25-JUN-2013 09:59:13:429] nttwr: socket 13 had bytes written=125
    [25-JUN-2013 09:59:13:429] nttwr: exit
    [25-JUN-2013 09:59:13:429] nspsend: packet dump
    [25-JUN-2013 09:59:13:429] nspsend: 00 7D 00 00 06 00 00 00  |.}......|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 08 06 00 AD B2 2D  |.......-|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 00 00 02 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 01 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 00 00 04 02 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 13 00 05 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 00 00 00 02 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 07 00 06 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 57 24 01 00 04 00 00 8B  |W$......|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 0C 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 15 00 00 01 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 0D 00 0D 01 00 01 24  |.......$|
    [25-JUN-2013 09:59:13:429] nspsend: 57 00 04 00 00 00 8B 00  |W.......|
    [25-JUN-2013 09:59:13:429] nspsend: 0C 00 00 00 00 00 00 00  |........|
    [25-JUN-2013 09:59:13:429] nspsend: 00 00 00 00 00           |.....   |
    [25-JUN-2013 09:59:13:429] nspsend: 125 bytes to transport
    [25-JUN-2013 09:59:13:429] nspsend: normal exit
    [25-JUN-2013 09:59:13:429] nsdofls: exit (0)
    [25-JUN-2013 09:59:13:429] nsdo: nsctxrnk=0
    [25-JUN-2013 09:59:13:429] nsdo: normal exit
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: entry
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x0
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: rank=64, nsctxrnk=0
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: nsctx: state=8, flg=0x400c, mvd=0
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: gtn=168, gtc=168, ptn=10, ptc=8155
    [25-JUN-2013 09:59:13:430] nsfull_pkt_rcv: switching to application buffer
    [25-JUN-2013 09:59:13:430] nsrdr: entry
    [25-JUN-2013 09:59:13:430] nsrdr: recving a packet
    [25-JUN-2013 09:59:13:430] nsprecv: entry
    [25-JUN-2013 09:59:13:430] nsprecv: reading from transport...
    [25-JUN-2013 09:59:13:430] nttrd: entry
    [25-JUN-2013 10:18:26:172] ntt2err: entry
    [25-JUN-2013 10:18:26:172] ntt2err: exit
    [25-JUN-2013 10:18:26:172] nttrd: socket 13 had bytes read=0
    [25-JUN-2013 10:18:26:172] nttrd: exit
    [25-JUN-2013 10:18:26:172] nsprecv: error exit
    [25-JUN-2013 10:18:26:172] nserror: entry
    [25-JUN-2013 10:18:26:172] nserror: nsres: id=0, op=68, ns=12570, ns2=12560; nt[0]=513, nt[1]=113, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [25-JUN-2013 10:18:26:172] nsrdr: error exit
    [25-JUN-2013 10:18:26:172] nsfull_pkt_rcv: nsctxrnk=0
    [25-JUN-2013 10:18:26:172] nsfull_pkt_rcv: error exit
    [25-JUN-2013 10:18:26:172] nioqrc: recv: packet reader error -> translated to IFCR_EOF
    [25-JUN-2013 10:18:26:172] nioqer: entry
    [25-JUN-2013 10:18:26:172] nioqer:  incoming err = 12151
    [25-JUN-2013 10:18:26:172] nioqce: entry
    [25-JUN-2013 10:18:26:172] nioqce: exit
    [25-JUN-2013 10:18:26:172] nioqer:  returning err = 3113
    [25-JUN-2013 10:18:26:172] nioqer: exit
    [25-JUN-2013 10:18:26:172] nioqrc: exit
    [25-JUN-2013 10:18:26:173] nioqds: entry
    [25-JUN-2013 10:18:26:173] nioqds:  disconnecting...
    [25-JUN-2013 10:18:26:173] nsdo: entry
    [25-JUN-2013 10:18:26:173] nsdo: cid=0, opcode=67, *bl=0, *what=1, uflgs=0x2, cflgs=0x3
    [25-JUN-2013 10:18:26:173] nsdo: rank=64, nsctxrnk=0
    [25-JUN-2013 10:18:26:173] nsdo: nsctx: state=1, flg=0x8400c, mvd=0
    [25-JUN-2013 10:18:26:173] nsdo: nsctxrnk=0
    [25-JUN-2013 10:18:26:173] nsdo: error exit
    [25-JUN-2013 10:18:26:173] nsclose: entry
    [25-JUN-2013 10:18:26:173] nsvntx_dei: entry
    [25-JUN-2013 10:18:26:173] nsvntx_dei: exit
    [25-JUN-2013 10:18:26:173] nstimarmed: entry
    [25-JUN-2013 10:18:26:173] nstimarmed: timer is armed, with value 3833
    [25-JUN-2013 10:18:26:173] nstimarmed: normal exit
    [25-JUN-2013 10:18:26:173] nstimclear: entry
    [25-JUN-2013 10:18:26:173] nstimclear: normal exit
    [25-JUN-2013 10:18:26:173] nttctl: entry
    [25-JUN-2013 10:18:26:173] nttctl: entry
    [25-JUN-2013 10:18:26:173] nsfull_cls: entry
    [25-JUN-2013 10:18:26:173] nsfull_cls: cid=0, opcode=65, *bl=0, *what=0, uflgs=0x0, cflgs=0x40
    [25-JUN-2013 10:18:26:173] nsfull_cls: nsctx: state=1, flg=0x84008, mvd=0
    [25-JUN-2013 10:18:26:173] nsbfr: entry
    [25-JUN-2013 10:18:26:173] nsbaddfl: entry
    [25-JUN-2013 10:18:26:173] nsbaddfl: normal exit
    [25-JUN-2013 10:18:26:173] nsbfr: normal exit
    [25-JUN-2013 10:18:26:173] nsbfr: entry
    [25-JUN-2013 10:18:26:173] nsbaddfl: entry
    [25-JUN-2013 10:18:26:173] nsbaddfl: normal exit
    [25-JUN-2013 10:18:26:173] nsbfr: normal exit
    [25-JUN-2013 10:18:26:173] nsfull_cls: normal exit
    [25-JUN-2013 10:18:26:173] nsiocancel: entry
    [25-JUN-2013 10:18:26:173] nsiofrrg: entry
    [25-JUN-2013 10:18:26:173] nsiofrrg: cur = 113663fc
    [25-JUN-2013 10:18:26:173] nsbfr: entry
    [25-JUN-2013 10:18:26:174] nsbaddfl: entry
    [25-JUN-2013 10:18:26:174] nsbaddfl: normal exit
    [25-JUN-2013 10:18:26:174] nsbfr: normal exit
    [25-JUN-2013 10:18:26:174] nsiofrrg: exit
    [25-JUN-2013 10:18:26:174] nsiocancel: exit
    [25-JUN-2013 10:18:26:174] nsclose: closing transport
    [25-JUN-2013 10:18:26:174] nttdisc: entry
    [25-JUN-2013 10:18:26:174] nttdisc: Closed socket 13
    [25-JUN-2013 10:18:26:174] nttdisc: exit
    [25-JUN-2013 10:18:26:174] nsclose: global context check-out (from slot 0) complete
    [25-JUN-2013 10:18:26:174] nsnadisc: entry
    [25-JUN-2013 10:18:26:174] nadisc: entry
    [25-JUN-2013 10:18:26:174] nacomtm: entry
    [25-JUN-2013 10:18:26:174] nacompd: entry
    [25-JUN-2013 10:18:26:174] nacompd: exit
    [25-JUN-2013 10:18:26:174] nacompd: entry
    [25-JUN-2013 10:18:26:174] nacompd: exit
    [25-JUN-2013 10:18:26:174] nacomtm: exit
    [25-JUN-2013 10:18:26:174] nas_dis: entry
    [25-JUN-2013 10:18:26:174] nas_dis: exit
    [25-JUN-2013 10:18:26:174] nau_dis: entry
    [25-JUN-2013 10:18:26:174] nau_dis: exit
    [25-JUN-2013 10:18:26:174] naeetrm: entry
    [25-JUN-2013 10:18:26:174] naeetrm: exit
    [25-JUN-2013 10:18:26:174] naectrm: entry
    [25-JUN-2013 10:18:26:174] naectrm: exit
    [25-JUN-2013 10:18:26:174] nagbltrm: entry
    [25-JUN-2013 10:18:26:174] nagbltrm: exit
    [25-JUN-2013 10:18:26:174] nadisc: exit
    [25-JUN-2013 10:18:26:174] nsnadisc: normal exit
    [25-JUN-2013 10:18:26:174] nsvntx_dei: entry
    [25-JUN-2013 10:18:26:174] nsvntx_dei: exit
    [25-JUN-2013 10:18:26:174] nsopenfree_nsntx: nlhthdel from mplx_ht_nsgbu, ctx=11365f08 nsntx=11363180
    [25-JUN-2013 10:18:26:174] nsiocancel: entry
    [25-JUN-2013 10:18:26:174] nsiofrrg: entry
    [25-JUN-2013 10:18:26:174] nsiofrrg: exit
    [25-JUN-2013 10:18:26:174] nsiocancel: exit
    [25-JUN-2013 10:18:26:174] nsmfr: entry
    [25-JUN-2013 10:18:26:174] nsmfr: 2020 bytes at 0x11363180
    [25-JUN-2013 10:18:26:174] nsmfr: normal exit
    [25-JUN-2013 10:18:26:174] nsmfr: entry
    [25-JUN-2013 10:18:26:174] nsmfr: 1012 bytes at 0x11365f08
    [25-JUN-2013 10:18:26:174] nsmfr: normal exit
    [25-JUN-2013 10:18:26:174] nsclose: normal exit
    [25-JUN-2013 10:18:26:174] nioqds: exit
    [25-JUN-2013 10:18:26:174] nsbfree: entry
    [25-JUN-2013 10:18:26:174] nsbgetfl: entry
    [25-JUN-2013 10:18:26:175] nsbgetfl: normal exit
    [25-JUN-2013 10:18:26:175] nsbaddfl: entry
    [25-JUN-2013 10:18:26:175] nsbaddfl: normal exit
    [25-JUN-2013 10:18:26:175] nsbfree: normal exit
    [25-JUN-2013 10:18:26:175] nsbfree: entry
    [25-JUN-2013 10:18:26:175] nsbgetfl: entry
    [25-JUN-2013 10:18:26:175] nsbgetfl: normal exit
    [25-JUN-2013 10:18:26:175] nsbaddfl: entry
    [25-JUN-2013 10:18:26:175] nsbaddfl: normal exit
    [25-JUN-2013 10:18:26:175] nsbfree: normal exit
    [25-JUN-2013 10:18:26:175] nigtrm: Count in the NI global area is now 1
    [25-JUN-2013 10:18:26:175] nstimdei: entry
    [25-JUN-2013 10:18:26:175] nstimdg: entry
    [25-JUN-2013 10:18:26:175] nstimdg: normal exit
    [25-JUN-2013 10:18:26:175] nstimdei: normal exit
    [25-JUN-2013 10:18:26:175] nsbfrfl: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: nsbfs at 0x11363e20, data at 0x11363ee8.
    [25-JUN-2013 10:18:26:175] nsbrfr: normal exit
    [25-JUN-2013 10:18:26:175] nsbrfr: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: nsbfs at 0x11363d68, data at 0x1136b708.
    [25-JUN-2013 10:18:26:175] nsbrfr: normal exit
    [25-JUN-2013 10:18:26:175] nsbrfr: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: nsbfs at 0x11363e90, data at 0x1136d728.
    [25-JUN-2013 10:18:26:175] nsbrfr: normal exit
    [25-JUN-2013 10:18:26:175] nsbrfr: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: nsbfs at 0x11362c10, data at 0x113696e8.
    [25-JUN-2013 10:18:26:175] nsbrfr: normal exit
    [25-JUN-2013 10:18:26:175] nsbrfr: entry
    [25-JUN-2013 10:18:26:175] nsbrfr: nsbfs at 0x11363bb0, data at 0x1136f748.
    [25-JUN-2013 10:18:26:175] nsbrfr: normal exit
    [25-JUN-2013 10:18:26:175] nsbfrfl: normal exit
    [25-JUN-2013 10:18:26:175] nigtrm: Count in the NL global area is now 3
    [25-JUN-2013 10:18:26:181] nagbltrm: entry
    [25-JUN-2013 10:18:26:181] nau_gtm: entry
    [25-JUN-2013 10:18:26:181] nau_gtm: exit
    [25-JUN-2013 10:18:26:181] nagbltrm: exit
    [25-JUN-2013 10:18:26:181] nnfgdei: entry
    5.question
    a.The value of sqlnet.expire_time is only one minute. Why did the server take about 20 minutes to release the lock and server process?
    b. Is there other factor to delay the lock and server process to releas such as tcp/ip kernel parameter?
    Thanks in advance.
    Robinson

    Hi Awais,
    search the forum for "measure execution time" to find threads like this...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • I'm impatient. How long does the Mountain Lion software take to download?

    I'm wondering if the download will be done by the time I go out, and if it continues to work in sleep mode? How long has everyone elses taken?

    In sleep, your Mac doesn't download, so keep it on. The servers are busy and it depends of the Internet speed, but for me it took 1 hour and 20 minutes at 1 MB/s

  • How long does the internal battery usually last?

    I keep seeing posts about the date going back to 1969 so I'm wondering what timeframe am I looking at to replace the "watch" battery. I bought my PB back in '04. Thanks.

    Until recently, I thought the PB backup batteries simply ran down. While visiting the Apple Store in Portland OR a couple of weeks ago, I mentioned this to one of the techs and he said the PB battery was rechargeable like the ones in the older G3 PowerBooks.
    I was given a 2003-vintage PB17 recently that had been in storage (off power) for about six months. The backup would not support the time needed to change from battery to corded operation when running down the main battery. After having the PB on wall power for several weeks, I tried it again and the backup battery was able to allow the power switchover without the computer shutting down completely.
    Based on a sample size of n=1, the backup could be rechargeable. My big grip is that the batteries are hard to find and darned expensive. Too many offered online are sold as "used." If it's not rechargeable, what's the point of a used battery?
    Even rechargeable batteries have a finite lifespan so, if shopping for one online, get assurances that it is not used. I still have concerns about "new" batteries like this. If Apple has not made new parts recently, then those from inventory could be almost as old as the one you're replacing.

  • HT4623 how long does the download for ios7 take

    I just bought my ipad mini and when I connected to itunes it said update available. But the download time was 6 hours. Is that normal?

    It depends on the download speed of your internet.

  • How long does the process take to get a nano repaired or replaced?

    how long does the process take to get a nano repaired or replaced?
      Windows XP  

    Usually just a few days... they very seldom (if ever) repair them. You'll usually get either a new or refurbished replacement.

  • How long does the number porting process take?

    Hello Everybody! I just got my iphone (witch I LOVE it by the way) but I was wondering, how long does the number porting process take?
    I ported my phone number over from SprintPCS last night at around 7pm EST and right now it's 8am EST and my Palm seems to still be working... Is this normal?
    I'm still receiving incoming calls to my Palm, Text messages to my Palm, but yet I can do outgoing calls from my iphone... I'm kinda confused...
    I mean I received the text on my iphone from sprint telling me: "Welcome to AT&T" as well as receiving the e-mail saying my new phone number is the same one I've had for 6 years now... Is 13 hours considered normal?
    Thanx! :-D

    QueenYvette,
    If it continues to be an issue tomorrow, I would recomend calling again, and getting in contact with AT&T's porting department. They are familiar with resolving any issues that may arise.
    Powering off both phones is to make sure that the old phone is not maintaining an active connection with the old carrier that can interfere with the last steps of the porting process. If at all possible its a good idea to leave the old phone powered off, and restart the new phone about once an hour so that it will resync with the towers.
    Hope this helps,
    Nathan C.

  • HT1600 How long does the Apple TV take to update? It looks as though mine got jammed! What do I do?

    How long does the Apple TV take to update? It looks as though mine got jammed! What do I do?

    Welcome to the Apple Community.
    Mine's usually about 5 minutes, but it wouldn't be more than 30-40, if it's any longer.......
    You can't do much else besides pull the plug. If it causes further problems you should be able to restore as below:
    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.
    On the other hand you may be able to simply start the update again. If however the update continues to fail, you should try the restore routine above.

  • How long does the book take to be delivered to my home?

    How long does the book take to be delivered to my home?
    Thank you

    Is it an Apple PhotoBook?
    what shipping method did you choose?
    what country are you in?
    See shipping information under yoru country here - http://store.apple.com/us/help/print_products/routing
    LN

Maybe you are looking for

  • IPhoto is frozen only when I click on "print?"

    Please forgive me, I am really not great at this. But I printed a picture earlier via iPhoto, and everything was fine. Later on, I went back to iPhoto because I uninstalled my printer as I have a new one coming tomorrow. Only when I click on print, m

  • Keyboard shortcut to switch between Song/Album/Artist

    Is there a keyboard shortcut for switching between Song/Album/Artist/Composer etc. view in the top right corner of iTunes? If there's not, then consider this a feature request!

  • TS3989 iCloud does not show my Photo Stream

    I have a 4S.  Photo Stream is turned on my phone and on iCloud, but there is no Photo Stream on iCloud.  Apple could not help me with this.  Any suggestions??

  • Full load- duplicate error

    Hi, If R/3 data is loaded to BW infocube through Infopackage (and the processing type is PSA and then data targets). How it will handle the duplicate data (both TD and MD) in BW . And it will always be a full load andd there is no DSO? Thanks Pra

  • Cannot uninstall Scene Builder v1.1 b15

    Hello, I have Scene Builder 1.0 and Scene Builder 1.1 b15 installed on my Win7 x64. Now I want to upgrade SB v1.1 b15 to v1.1 b17. Installing SB v1.1 b17 cannot continue because install says that I already have previous version of that product instal