Dbms_lob , where did my time go ?

Hi all
After using 10046 to identify the sql that is causing the slowness in a program “ less commits cause my program to go slower” i realised that i am missing something ,
There was a lot of time missing in the tkprof file , and no sql or wait event allocate the missing time , so i put the following test case together in an attempt to understand where the time is going .
Version of test database : 11.1.0.6.0
Name of test database: stdby ( :-) used my standby database)
Database non-default values
#     Parameter     Value1
1:     audit_file_dest     /u01/app/oracle/admin/stdby/adump
2:     audit_trail     DB
3:     compatible     11.1.0.0.0
4:     control_files     /u01/app/oracle/oradata/stdby/control01.ctl
5:     control_files     /u01/app/oracle/oradata/stdby/control02.ctl
6:     control_files     /u01/app/oracle/oradata/stdby/control03.ctl
7:     db_block_size     8192
8:     db_domain     
9:     db_name     stdby
10:     db_recovery_file_dest     /u01/app/oracle/flash_recovery_area
11:     db_recovery_file_dest_size     2147483648
12:     diagnostic_dest     /u01/app/oracle
13:     dispatchers     (PROTOCOL=TCP) (SERVICE=stdbyXDB)
14:     memory_target     314572800
15:     open_cursors     300
16:     processes     150
17:     remote_login_passwordfile     EXCLUSIVE
18:     undo_tablespace     UNDOTBS1More accurately I used existing example from http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4084920819312
I hope Tom does not mind .
create table t ( x clob );
create or replace procedure p( p_open_close in boolean default false,
                                 p_iters in number default 100 )
  as
      l_clob clob;
  begin
      insert into t (x) values ( empty_clob() )
      returning x into l_clob;
      if ( p_open_close )
      then
          dbms_lob.open( l_clob, dbms_lob.lob_readwrite );
      end if;
      for i in 1 .. p_iters
      loop
          dbms_lob.WriteAppend( l_clob, 5, 'abcde' );
      end loop;
      if ( p_open_close )
      then
    dbms_lob.close( l_clob );
end if;
commit;
end;I did the tracing and the run of the pkg with this
alter session set timed_statistics = true;
alter session set max_dump_file_size = unlimited;
alter session set tracefile_identifier = 'test_clob_commit';
alter session set events '10046 trace name context forever, level 12';
exec p(TRUE,20000);
exitDid the tkprof of the 10046 trace file with
tkprof stdby_ora_3656_test_clob_commit.trc stdby_ora_3656_test_clob_commit.trc.tkp sort=(prsela,exeela,fchela) aggregate=yes waits=yes sys=yesWith output of
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
call     count       cpu    elapsed       disk      query    current        rows
Parse        1      0.02       0.02          0          0          0           0
Execute      1     46.89     147.81      38915     235267     492471           1
Fetch        0      0.00       0.00          0          0          0           0
total        2     46.92     147.83      38915     235267     492471           1
Misses in library cache during parse: 1
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                       2        0.00          0.00
  SQL*Net message from client                     2        0.00          0.00
  latch: shared pool                             24        0.05          0.07
  latch: row cache objects                        2        0.00          0.00
  log file sync                                   1        0.01          0.01
OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
call     count       cpu    elapsed       disk      query    current        rows
Parse      117      0.11       0.10          0          0          2           0
Execute    426      0.37       0.40          6          4          9           2
Fetch      645      0.17       0.51         63       1507          0        1952
total     1188      0.65       1.03         69       1511         11        1954
Misses in library cache during parse: 22
Misses in library cache during execute: 22
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                     19778        1.12         30.31
  direct path write                           19209        0.00          0.44
  direct path read                            19206        0.00          0.37
  log file switch completion                      8        0.20          0.70
  latch: cache buffers lru chain                  5        0.01          0.02
    3  user  SQL statements in session.
  424  internal SQL statements in session.
  427  SQL statements in session.And it’s here where the time is being lost.The time of the main pkg p(TRUE,2000) takes 147.83 sec, which is correct , but what is making this time up.
From sorted trace file
SQL ID : catnjk0zv6jz1
BEGIN p(TRUE,20000); END;
call     count       cpu    elapsed       disk      query    current        rows
Parse        1      0.02       0.02          0          0          0           0
Execute      1     46.89     147.81      38915     235267     492471           1
Fetch        0      0.00       0.00          0          0          0           0
total        2     46.92     147.83      38915     235267     492471           1
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 81
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  latch: shared pool                             24        0.05          0.07
  latch: row cache objects                        2        0.00          0.00
  log file sync                                   1        0.01          0.01
  SQL*Net message to client                       1        0.00          0.00
  SQL*Net message from client                     1        0.00          0.00
SQL ID : db78fxqxwxt7r
select /*+ rule */ bucket, endpoint, col#, epvalue
from
histgrm$ where obj#=:1 and intcol#=:2 and row#=:3 order by bucket
intresting , oracle is still using the rule hint in 11g ?
call     count       cpu    elapsed       disk      query    current        rows
Parse        3      0.00       0.00          0          0          0           0
Execute     98      0.05       0.05          0          0          0           0
Fetch       98      0.04       0.17         28        294          0        1538
total      199      0.10       0.22         28        294          0        1538
Misses in library cache during parse: 0
Optimizer mode: RULE
Parsing user id: SYS   (recursive depth: 3)
Rows     Row Source Operation
     20  SORT ORDER BY (cr=3 pr=1 pw=1 time=8 us cost=0 size=0 card=0)
     20   TABLE ACCESS CLUSTER HISTGRM$ (cr=3 pr=1 pw=1 time=11 us)
      1    INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=2 pr=0 pw=0 time=0 us)(object id 408)
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                        28        0.02          0.12
SQL ID : 5n1fs4m2n2y0r
select pos#,intcol#,col#,spare1,bo#,spare2,spare3
from
icol$ where obj#=:1
call     count       cpu    elapsed       disk      query    current        rows
Parse        2      0.00       0.00          0          0          0           0
Execute     19      0.03       0.03          0          0          0           0
Fetch       60      0.00       0.04          1        120          0          41
total       81      0.04       0.08          1        120          0          41
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 2)
Rows     Row Source Operation
      1  TABLE ACCESS BY INDEX ROWID ICOL$ (cr=4 pr=0 pw=0 time=0 us cost=2 size=54 card=2)
      1   INDEX RANGE SCAN I_ICOL1 (cr=3 pr=0 pw=0 time=0 us cost=1 size=0 card=2)(object id 42)
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                         1        0.04          0.04None of the parse , execute ,fetch and wait times makes up the 147.83 seconds.
So i turned to oracles trcanlzr.sql that Carlos Sierra wrote and parsed the same trace file to find the offending sql .
And it starts getting intrestting
Trace Analyzer 11.2.6.2 Report: trcanlzr_75835.html
stdby_ora_3656_test_clob_commit.trc (6970486 bytes)
Total Trace Response Time: 148.901 secs.
2009-MAY-03 20:03:51.771 (start of first db call in trace).
2009-MAY-03 20:06:20.672 (end of last db call in trace).
RESPONSE TIME SUMMARY
~~~~~~~~~~~~~~~~~~~~~
                                          pct of                  pct of                  pct of
                                Time       total        Time       total        Time       total
Response Time Component    (in secs)   resp time   (in secs)   resp time   (in secs)   resp time
                    CPU:      47.579       32.0%
          Non-idle Wait:       0.467        0.3%
     ET Unaccounted-for:     100.825       67.7%
       Total Elapsed(1):                             148.871      100.0%
              Idle Wait:                               0.001        0.0%
     RT Unaccounted-for:                               0.029        0.0%
      Total Response(2):                                                     148.901      100.0%
(1) Total Elapsed = "CPU" + "Non-Idle Wait" + "ET Unaccounted-for".
(2) Total Response = "Total Elapsed Time" + "Idle Wait" + "RT Unaccounted-for".
Total Accounted-for = "CPU" + "Non-Idle Wait" + "Idle Wait" = 148.872 secs.
Total Unccounted-for = "ET Unaccounted-for" + "RT Unaccounted-for" = 100.854 secs.{font:Courier}
{color:red}
{size:19}100.825 seconds Wow , that is a lot 67.7 % of the time is not accounted for {size}
{color}
{font}
I even used TVD$XTAT TriVaDis eXtended Tracefile Analysis Tool with the same conclution .
{font:Courier}
{color:green}
{size:19}Looking at the raw trace file i see a lot of lines like this{size}
{color}
{font}
WAIT #7: nam='direct path read' ela= 11 file number=4 first dba=355935 block cnt=1 obj#=71067 tim=1241337833498756
WAIT #7: nam='direct path write' ela= 12 file number=4 first dba=355936 block cnt=1 obj#=71067 tim=1241337833499153
WAIT #7: nam='db file sequential read' ela= 1095 file#=4 block#=399 blocks=1 obj#=71067 tim=1241337833501366{font:Courier}
{color:green}
{size:19}
What is even more interesting is the sql for "PARSING IN CURSOR #7" is not in the trace file !
The question is where is the time going or is the parser of the 10046 trace file just not putting the detail in ? How do i fix this, without speculating, if I do not know where the problem is ?
I thought of doing a strace on the process . Where else can i look for my 100 sec
Please point me in a direction where i can look for my 100,825 seconds as this is a test case with a production system that is loosing the same amount of time but with a lot more sql arround its dbms_lob.writeappend.
{size}
{color}
{font}
Edited by: user5174849 on 2009/05/16 11:17 PM

user5174849 wrote:
After using 10046 to identify the sql that is causing the slowness in a program “ less commits cause my program to go slower” i realised that i am missing something ,
There was a lot of time missing in the tkprof file , and no sql or wait event allocate the missing time , so i put the following test case together in an attempt to understand where the time is going .
Version of test database : 11.1.0.6.0
What is even more interesting is the sql for "PARSING IN CURSOR #7" is not in the trace file !
The question is where is the time going or is the parser of the 10046 trace file just not putting the detail in ? How do i fix this, without speculating, if I do not know where the problem is ?
I thought of doing a strace on the process . Where else can i look for my 100 sec
Please point me in a direction where i can look for my 100,825 seconds as this is a test case with a production system that is loosing the same amount of time but with a lot more sql arround its dbms_lob.writeappend.I guess that the separate cursor that is opened for the LOB operation is where the time is spent, and unfortunately this part is not very well exposed via the usual interfaces (V$SQL, 10046 trace file etc).
You might want to read this post where Kerry identifies the offending SQL via V$OPEN_CURSOR: http://kerryosborne.oracle-guy.com/2009/04/hidden-sql-why-cant-i-find-my-sql-text/
The waits of this cursor #7 are quite likely rather relevant since they probably show you what the LOB operation is waiting for.
The LOB is created with the default NOCACHE attribute therefore it's read and written using direct path operations.
Regards,
Randolf
Oracle related stuff blog:
http://oracle-randolf.blogspot.com/
SQLTools++ for Oracle (Open source Oracle GUI for Windows):
http://www.sqltools-plusplus.org:7676/
http://sourceforge.net/projects/sqlt-pp/

Similar Messages

  • PP CC: Where did Estimated Time go with MP4 Rendering?

    I'm exporting a MP4 file, not using Media Encoder, just Make Movie from Premiere CC.
    Every version of PP previous to CC used to tell me an estimated time remaining. Now it just says the % and Pass 1 or Pass 2.
    Where is Estimated Time Remaining?

    I don't recall Export ever giving that info, only AME.

  • I have serious reservations about yosemite. Where did the time in the upper right corner go when i open safari? Plus why is my display print lighter and harder to read? this update needs an update!!

    Yosemite is not an improvement !!!where did my clock go in upper right corner ?  some of the print is hard to read on safari ..it looks faded
    how do i get my old display back or else repair these problems?

    Yosemite is not an improvement !!!where did my clock go in upper right corner ?  some of the print is hard to read on safari ..it looks faded
    how do i get my old display back or else repair these problems?

  • HT3275 where did my time machine back up go to on new hard drive?

    Hi, I recently had hard drive fail on my late 2006 iMac.  Had a new hard drive installed.  Restored my computer from the most recent time machine back up from my external drive, but can't find restored data on iMac.  Any ideas?
    Went to the latest backup and hit 'restore' took about 2.5 hours for the data to transfer to new hard drive.  I can tell it's chewing up the new hard drive space but the data/profile from my old mac is nowhere to be found on the new hard drive.

    It might have created a new user and loaded under that.. new user being the old user. But if you have issues do it again, only this time pick where the backup will go.
    http://pondini.org/TM/16.html
    The other questions might also be relevant as a new hard disk will make the Mac appear to the TM backup as a new computer.
    See 14-18 for restore info.

  • Where did Quick Time Pro 7 go?

    I downloaded the program and it was verified in Control panel that it loaded. I am not able to find it anywhere on my computer. I can find Quick Time, but not Pro 7. Where would it be located?

    I'm not sure if this helps but after installing Snow Leopard, I was Option + Opening a video file and it gave the the option for Quicktime 7 which I could not find in my Applications folder. I didn't even realize it was still on the computer after the OS upgrade. I looked in the Utilities folder and there it was.
    Try there.
    -Frank

  • Where did my Time Machine backed up files go?

    I frequently back up my MacBook Pro to an external hard drive using Time Machine. When I am no longer using files I've backed up I delete them from my MacBook Pro and leave them on the backup disk in case I need them later on. The last time I backed up my MacBook Pro Time Machine told me (after it had already deleted the old backups) that my backup disk was full so it had deleted some old backups to make room for the new backup. This seems crazy to me but ok on this forum: http://pondini.org/TM/C4.html it indicates that Time Machine doesn't actually delete the old files, it just deletes everything in the old backup that isn't backed up on another one of the backups. Ok whew. But now I cannot find the old files that were on the deleted backups, but not backed up on any of the other backups, anywhere on my backup disk. Where do they go?
    Would appreciate some help as these were critical archival files and it's hard for me to believe that Apple would create a product that simply deletes saved information without asking first.
    Thanks.

    As Eric says Time Machine is designed to recover the disk drive to its current condition. So if you delete files then they become candidates for deletion by TM when it needs disk space for new backup.
    If you do not wish that to happen then you must not use TM but copy them to another to an archive disk drive without using TM. You can then have TM backup your achieve drive so that the data on it is protected.
    This archive drive can not be the same one that TM is using or else you can do a backup of the archive data for protection.

  • Where did the time zone selection go when making an event in Calendar?

    So in iOS5 and iOS6 there was an option to select the time zone the event was going to be in when creating it in the Calendar app.
    Now in iOS7 it appears it is no longer there unless you turn time zone support ON.
    I want to be able to have time zone support OFF like I had in iOS5 and 6 and still have the time zone selection option when creating events.
    I'm at a loss for why this option was removed. Is there any way to get this back? My coworkers are having issues creating meeting events when out on the road and figuring out the right time zone +/- when moving between time zones.

    You can middle-click a tab with the mouse scroll wheel to close that tab.
    Did you try Save mode to be sure that it is not caused by an extension or theme?
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    You can also check:
    * http://kb.mozillazine.org/browser.tabs.closeButtons (1)
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Where did the time display go and why is the screen stuck on master track? Thanks.

    My time display disappeared and the screen is stuck on master track. Any ideas? Thanks.

    If the GarageBand application window appears to be messed up, parts missing, or in the wrong place, it might be a problem of corrupted preferences files. Try to repair permissions and to remove the file "Your Home Folder/Library/Preferences/com.apple.garageband.plist" from your user library.
    See HangTime's fix for "oddball problems":
    http://www.bulletsandbones.com/GB/GBFAQ.html#oddballprobs
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    Is your profile signature "GarageBand '09, Mac OS X (10.5.8)" still current, John? If not, and you are now using Lion or Mt. Lion, the User Library will be hidden.
    Then you can reveal it from the Finder's "Go" menu:
    Finder > Go,   then hold down the options ⌥ key, until the Library appears in the drop-down menu, select it and open the Library folder. Then go to the "Preferences" sub folder and remove com.apple.garageband.plist.
    Regards
    Léonie

  • Where did this backup window come from on my desktop.  I have always used time machine to backup to an external disc and within the last 2 weeks, this backup window keeps appearing.  Where did it come from?  Thanks for any help

    where did this backup window come from on my desktop. It specifies personal data & settings and tells me when the next backup is scheduled [which I never set up].   I have always used time machine to backup to an external disc and within the last 2 weeks, this backup window keeps appearing.  Where did it come from?  Thanks for any help

    To check your S.M.A.R.T status open disk utility and click on your drive and then click on the info icon.

  • After using time machine my users folder cannot be seen, but all information is still intact. Where did it go?

    After using time machine my users folder cannot be seen, but all information is still intact. Where did it go?

    This is a new feature or bug if you want to call it that in OS X 10.9.3
    Until Apple fixes this, here is a temporary work around.
    Copy and paste the following command in the Terminal and then hit Enter, followed by your password.
    sudo ln -s /Users /Users\ Folder; ln -s /Users/Shared /Users/Shared\ Folder
    This will put a link to the Users folder called "Users Folder" on your Hard Drive and a link to the Shared folder called "Shared Folder" inside of the Users folder.

  • Hi all, my first time on.  I shared my imovie project to Media Browser.  Fine.  Then after it downloaded it 'disappeared.'  Where did it go?  Having found it, how do I then share it with idvd?  I am told the image quality will be much better this route.

    Hi all, my first time on.  I shared my imovie project to Media Browser.  Fine.  Then after it downloaded it 'disappeared.'  Where did it go?  Having found it, how do I then share it with idvd?  I am told the image quality will be much better this route.

    Hi
    I do
    • In iMovie - select a project
    • Share to Media Browser and as Large (not HD or other res.)
    • Close iMovie
    • Open iDVD and select to start a New iDVD Project
    • Import movie - from Media button - down to the right - and here from Movies
    Yours Bengt W

  • HP LaserJet Enterprise 500 551dn - where did the drivers go?

    I go to the download page to download the drivers for this 551dn.  I download all windows 7, 8, 8.1, 2008, 2012, so that i can put them on my print server.  I downloaded them from here..
    <http>//h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=5081348&lang=en&lang=en&cc=lamerica_n...
    when i get the file, lets say for windows 7/64bit, i choose...
    HP LaserJet Enterprise 500 color M551 Printer Series PCL6 Print Driver (no Installer) 61.130.04.12834
    24 Sep 2014 21.3
    I get the file downloaded (LJEnt-color-M551-Drv-no-installer_12297.exe), i run it, get the security warning and Run.  the file extracts - then POOF, the installer is gone.
    where did the files go?  They aren't on the root of the C: drive, a folder/files were not created on my desktop, no files or folder created in my downloads folder.
    I was never asked for a file save location.... ???  really?   is this this basic stuff? 
    Where are the files?  this $$$ printer is a brick until i get drivers! 
    Thanks!
    Jason
    UPDATE- I FOUND THE FILES!!
    First of all, HP... i'm not impressed.
    All the files for all the drivers are in a series of temp folders...
    C:\Users\-myusername-\AppData\Local\Temp\3\7zS4A73
    really?
    hope this helps someone. 

    There is no change to this problem after 6 months since the last post. Put simply, and as stated in the previous posts, there is no way to scan a document and receive the image on your PC. If you are working with graphics for any length of time or want to create an image for inclusion as an image in a document or web page using this piece of equipment will not allow you to do so.
    Great shame as every other function works well - it cannot be beyond the wit of HP to include a Windows application that enables you to scan an image, receive it in the software you are using at the time (e.g. Outlook, Word, Photoshop...) and use it in your work.
    HP Printers several years older than this £1000+ Enterprise printer were able to do this simple job and have done so for a great many years. Just being able to use Microsoft's Fax and Scan would be start.

  • HT5312 I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? th

    I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? then I was unable to enter until 8 hours then called Apple Japan 4 times each time threy asked me would you like to speak with an English speaker,I said yes then they told me sorry today is Sunday no English speakers ,but they refused to speak Japanese, then I called 5th time and a kind guy could speak English we were on 1and 1/2 hours he got me to log in but the reset key chain could not be completed still pending.
    He said do not mess with that ! then I got a text from somewhere to reset 4 pins suddenly it was very strange I said to him that I got this pin this morning but it said you can use maximum 3 hours it had a UK number and I told him I do not like this and will not enter the code he said do not do it if it is from the UK and then I said to him ok you did a lot to help but we can not go any further ! and we cut of I went back to my computer to re do the ID but I found everything a mess so I call and a stupid sounding Japanese women with a squeaky voice came on I was calm at first and they want your phone number your IMEI number your iPhone serial number date of birth Address email address it takes 10 munutes to check then they ask what are you caling about so I try to explain my keychain is broken or problems with language security questions and can not change my pasword because the security question have failed me so it is ONE BIG HEADACHE AND I START I GET STRESSED she says Do want an ENGLISH speaker ,I say yes ,that guy i talked to earlier but I never got his name and first time I ever talked to him but they said he is not here so I said ok and then she said today is sunday so call back in the morning ,I said ,well ok in Japanese but they make you feel stupid because they do not want to speak Jap@anese with none natives and they are to busy,And they feel that I should not bother them ,then I say that Apple Japan is trying to refuse Apple foreign customers and then she wants to hang up and ask me to visit the shop ,but they are the same I have a very bad time with Apple Japan since they do not discuss software problems or security with customer meaning if you have a problem they ask you to come on a time 20 minutes max so they do hardware test and say you phone is fine then I say no I can not reset my ID they say you must call call centre so I am going around in circles ,When I call English it is usually Australia so if my problem is in Japan surely if do not want me to talk to them in Japanese and they ask me to call Australia but every time my call charge is expensive after asking them is this free because I have Apple care they say yes but when the call goes to Australia 0120 277 535 it might change to paid call so I call then I have to ask is this charging they say we can not give you that information ! so what can I do I have have been at the computer and phone all day on my day off work and in tre week I am so busy and can not use my phone I can not work without it ,this new technology for you ,they can not cope with the fact that the customer have problems yet they do not want to deal with us because they can not solve it and so it shows them to be useless they like to walk around in their cool tee shirts and retro shop but when it comes to functionality we are unwelcome they got the money so do not return because apple is perfect that nothing should go wrong .
    But it does somehow my English security answers do not work on a Japanese Question especialy if I did not choose that question I set  up the multiple choice In English and wrote the answers in English or Roman and set them langauge preferences in English, do you really think you can correctly write english name or word in Japanese they write a police patrol car  pato caa パトカア they do not have r and l .So it is my choice to make my security easy for me and as difficult for others to hack.But they also have patororoo choo meaning ' now patrolling ' so why they have pato caa patrol car and patoro patrol and have thousands of Chinese words kanji they can find patrol.
    I am getting off the topic but I am at a loss to fix this problem when they hold the keys and i have all the info to verify my ID.

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • Where did the Stream 7 drivers go?

    The support page for downloading drivers for the HP Stream 7 tablet (any model) has disappeared from the HP website.
    Navigating to the HP Stream 7 support page, Selecting "Software and Drivers", then "Go directly to software and drivers page", Operating System "Windows", then Version "Windows 8.1" (the only choices), then clicking the Update button, gives a message "No software or drivers are available for this product with the selected operating system. Please make a different selection, or visit the product homepage. " This happens using Firefox, IE 11, or Chrome.
    These drivers have been missing for at least a few weeks, and multiple forum users have also had no luck finding them. Before that time the drivers seemed to come and go randomly, but they've stayed missing now for weeks.  One dorum user has posted direct FTP links to the drivers, and they might be the latest version, but not really sure.
    Where did the drivers go, HP?

    This is for the 5701 as of a few days ago.
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​7.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7027​5.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7034​0.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7033​9.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7033​7.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​8.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​5.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​9.exe

  • Where did the Home Video tab go?

    I have a MacBook Pro (15-inch, Mid 2009) running Yosemite 10.10.2 and iTunes 12.1.50.  I also have about 900+ home videos taken by my various cameras and encoded using HandBrake or iMovie over the last 10 years.  30 of these movies have been on my phone for over a year and I regularly watch them.
    I updated my iPhone 4 to iOS8.2 last night by doing a restore as if a new device.  This was recommended by a tech at the Apple Store since so much of my phone's  16GB was taken up by the operating system.  After that, I suddenly had more than 3GB more free space.  Yay!
    But - right away, I noticed that only 3 of my 30 home videos had synched.  I had those 30 in a special playlist so I wouldn't have to sort through the other 870+.  I decided to remove them from the iPhone and try again, but it didn't work.  So, I decided to remove them from the playlist and add them again.  That's when I noticed that I cannot find the Home Videos tab in iTunes on my Mac anymore.  It was there earlier last night because I had just added new ones to iTunes (visual confirmed they were in the Home Video tab once added to library).  I tried to import all 900+ home movies, and it seemed to do something - but I still can't see them.
    I tried to search for "Home Video" in the iTunes help menu - no hits.  I always use "Home Movies Favourites" as the Genre for the 30 I put on my phone, so I tried searching for that in the movie search box.  Nothing found again.  I tried searching for individual file names.  Nothing.
    So - where did Home Videos go and how can I get it back?  My files are still on the hard drive, but I have spent hundreds of hours updating the tags in iTunes with irreplaceable info like dates, locations, memories, etc.
    Apple - please stop making such drastic changes to iTunes every time we just finish getting used to your other changes!

    Hello! I said... I want the ability to input analogue video into my camcorder so I can continue to transfer VHS and input and record video from other sources. The new HD cameras on the market will not allow you to record video from any source except for the lens.
    I have HD cable box. I want to record my HD programs from cable (HBO, Starz, etc) to my camera, download the video to my Mac from the camera and then edit them in iMovie and create professional looking movie DVD's in iMovie.
    iMovie HD can work with mini DV HD cameras and HD video. I was not aware of a system requirement for working with HD content.

Maybe you are looking for