How much is the average standy time of your iphone4s? Mine is 11 hours ONLY!

How much is the average stand by time of your Iphone 4s? Mine is 11 hours ONLY. I think this is not normal.

Please search this forum before posting.  Your issue has been addressed in hundreds of posts already.  Either use the search box at the upper right hand corner, or look in the "More Like This" box immediately to your right.

Similar Messages

  • Measure the average read time of a single database block for hardware.

    Hi,
    how to Measure the average read time of a single database block for hardware ?
    Many thanks.

    Hi,
    A STATSPACK report has data file level I/O tunings, but they include buffered reads, so they are biased.
    Try this in 9i:
    http://www.dba-oracle.com/oracle_tips_cost_adj.htm
    select
    a.average_wait c1,
    b.average_wait c2,
    a.total_waits /(a.total_waits + b.total_waits)*100 c3,
    b.total_waits /(a.total_waits + b.total_waits)*100 c4,
    (b.average_wait / a.average_wait)*100 c5
    from
    v$system_event a,
    v$system_event b
    where
    a.event = 'db file scattered read'
    and
    b.event = 'db file sequential read';
    Or this, in 10g:
    col c1 heading 'Average Waits for|Full Scan Read I/O' format 9999.999
    col c2 heading 'Average Waits for|Index Read I/O' format 9999.999
    col c3 heading 'Percent of| I/O Waits|for scattered|Full Scans' format 9.99
    col c4 heading 'Percent of| I/O Waits|for sequential|Index Scans' format 9.99
    col c5 heading 'Starting|Value|for|optimizer|index|cost|adj' format 999
    select
    sum(a.time_waited_micro)/sum(a.total_waits)/1000000 c1,
    sum(b.time_waited_micro)/sum(b.total_waits)/1000000 c2,
    sum(a.total_waits) /
    sum(a.total_waits + b.total_waits)
    ) * 100 c3,
    sum(b.total_waits) /
    sum(a.total_waits + b.total_waits)
    ) * 100 c4,
    sum(b.time_waited_micro) /
    sum(b.total_waits)) /
    (sum(a.time_waited_micro)/sum(a.total_waits)
    ) * 100 c5
    from
    dba_hist_system_event a,
    dba_hist_system_event b
    where
    a.snap_id = b.snap_id
    and
    a.event_name = 'db file scattered read'
    and
    b.event_name = 'db file sequential read';

  • The Average Wait Time of SQL instance "CONFIGMGRSEC" on computer " SEC_SITE_SERVER " is too high

    I have a SCCM 2012 SP1 CU4 environment with SCOM monitoring installed.
    I also do have 4 secondary sites installed below my primary. The secondaries are using SQL 2012 Express version default deployed using the secondary site installation.
    My SCOM monitoring is generating tickets with the following message:
    The Average Wait Time of SQL instance "CONFIGMGRSEC" on computer "<SEC_SITE_SERVER>" is too high
    How can i solve this ? Or do I need to ignore this ?

    Never ignore messages, but tune them.
    In this specific case you might want to take a look at this:
    http://social.technet.microsoft.com/Forums/en-US/ffeefe0d-0ef7-49a3-862e-9be27989dc5d/scom2012-alert-sql-2008-db-average-wait-time-recompilationis-too-high?forum=operationsmanagergeneral
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to do an average on time series data?

    I need to generate average hold times for various stock of companies as follows:
    The data looks like:
    stock        timestamp (sec)            quantity
    GOOG          12459.6                    -100        <-- SALE
    GOOG          12634.0                    +100        <-- PURCHASE
    GOOG          12636.2                    +200
    GOOG          12464.8                    -100
    GOOG          12568.3                    -300
    GOOG          12678.0                    +200
    The rules are
    1. begin and end day with balance 0
    2. can short sell, i.e. can sell shares even if balance is currently 0
    3. hold time is defined as number of seconds stock was held before it was sold
    4. first stock purchased are sold first
    I need to generate the average hold times seconds per share.  I'd prefer to do this using SQL and NOT a procedure.
    Any tips on how to go about calculating this?  I have looked at various analytic functions, but still not sure.
    Thank you.

    I'm afraid you might be after something like below:
    this is a simplified scenario where the quantity balance always reaches 0 before changing sign (not very probable in real life)
    Simple examples are reserved for the lecturer was a pretty common phrase in my university times
    I dont know how to deal with a general case yet
    select * from trade_0 order by position,time
    TIME
    POSITION
    DIRECTION
    QUANTITY
    8
    GOOG
    S
    100
    13
    GOOG
    B
    20
    16
    GOOG
    B
    30
    17
    GOOG
    B
    30
    19
    GOOG
    B
    20
    22
    GOOG
    B
    20
    25
    GOOG
    B
    30
    26
    GOOG
    B
    20
    30
    GOOG
    B
    30
    34
    GOOG
    B
    20
    38
    GOOG
    B
    30
    41
    GOOG
    S
    150
    7
    YHOO
    S
    10
    12
    YHOO
    S
    20
    15
    YHOO
    S
    30
    16
    YHOO
    S
    40
    18
    YHOO
    S
    60
    21
    YHOO
    S
    30
    24
    YHOO
    S
    10
    25
    YHOO
    B
    100
    29
    YHOO
    B
    300
    33
    YHOO
    S
    100
    37
    YHOO
    S
    80
    40
    YHOO
    S
    20
    your condition 4. first stock purchased are sold first requires a procedural solution so model clause must be used if you want to do it in SQL.
    Model Men, bear with me, please !
    select m.*,
           avg(abs(x_time - decode(kind,'B',time_b,time_s))) over (partition by position
                                                                       order by rn rows between unbounded preceding
                                                                                            and unbounded following
              ) average
      from (select *
              from (select nvl(b.position,s.position) position,
                           nvl(b.rn,s.rn) rn,
                           nvl(b.cnt,0) cnt_b,
                           nvl(s.cnt,0) cnt_s,
                           b.time time_b,
                           s.time time_s,
                           b.quantity qty_b,
                           s.quantity qty_s
                      from (select time,position,quantity,
                                   row_number() over (partition by position order by time) rn,
                                   count(*) over (partition by position) cnt
                              from trade_0
                             where direction = 'B'
                           ) b
                           full outer join
                           (select time,position,quantity,
                                   row_number() over (partition by position order by time) rn,
                                   count(*) over (partition by position) cnt
                              from trade_0
                             where direction = 'S'
                           ) s
                        on b.position = s.position
                       and b.rn = s.rn
             model
             partition by (position)
             dimension by (rn)
             measures (0 loc,
                       case when cnt_b >= cnt_s then 'B' else 'S' end kind,
                       time_b,
                       time_s,
                       qty_b,
                       qty_s,
                       0 qty_left,
                       0 x_time
             rules iterate (1000000) until (loc[iteration_number] is null)
              loc[0] = nvl2(loc[0],loc[0],1),
              qty_left[loc[0]] = case when iteration_number > 0
                                      then qty_left[loc[0]] + case when kind[iteration_number] = 'B'
                                                                   then qty_b[iteration_number]
                                                                   else qty_s[iteration_number]
                                                              end
                                      else 0
                                 end,
              x_time[iteration_number] = case when kind[iteration_number] = 'B'
                                              then time_s[loc[0]]
                                              else time_b[loc[0]]
                                         end,
              loc[0] = loc[0] + case when qty_left[loc[0]] = case when kind[iteration_number] = 'B'
                                                                  then qty_s[loc[0]]
                                                                  else qty_b[loc[0]]
                                                             end
                                     then 1
                                     else 0
                                end
           ) m
    where kind is not null
    order by position,rn
    POSITION
    RN
    LOC
    KIND
    TIME_B
    TIME_S
    QTY_B
    QTY_S
    QTY_LEFT
    X_TIME
    AVERAGE
    GOOG
    1
    0
    B
    13
    8
    20
    100
    100
    8
    10.4
    GOOG
    2
    0
    B
    16
    41
    30
    150
    150
    8
    10.4
    GOOG
    3
    0
    B
    17
    30
    8
    10.4
    GOOG
    4
    0
    B
    19
    20
    0
    8
    10.4
    GOOG
    5
    0
    B
    22
    20
    0
    41
    10.4
    GOOG
    6
    0
    B
    25
    30
    0
    41
    10.4
    GOOG
    7
    0

  • How much is the expansion of the creativecloud membership tofrom 1 computer to 2?

    Hello,
    I can't connect to the support line, they put me on standby for 40-45 minutes everytime I try... Chat doesn't work, I don't know any email address. The only thing remaining is the forum.
    So I would like to know if someone here knows how much costs the expansion of a creative cloud membership from 1 computer to 2. I'm in Italy, I don't know if it's relevant.
    Or if someone knows an email for the support, please tell me.
    Thank you in advance.

    Hi Silvius,
    Creative cloud enables you to install Creative Cloud apps on 2 machines without any additional cost, however, as per terms of use you can not use both the machine at the same time.
    If you wish to use both the machine at the same time, what you can do is, you can purchase 1 more subscription of creative cloud on another Adobe ID, or you can go for creative cloud for teams.
    Please check the link below for more info:
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    Terms of use: General-terms
    Thanks,
    Atul Saini

  • How much does the 500 gb cost?

    There are older versions of the time capsule, how much does the 500gb time capsule ost &amp; can it do just as much as the 1 TB?

    Both the 1TB and 500 GB versions are out of production, so you'll need to check the used market if you want one of these devices.
    Apple may still have some refurbished 1 TB versions with new warranty. Might be worth a look.
                                 Refurbished Time Capsule - 1TB, w/Simultaneous Dual-Band Wi-Fi                        

  • How much does the iphone cost each month

    How much does the monthly plan cost?? How do I find out how much??

    There is no monthly cost from Apple... the iPhone is a one time purchase cost.
    Monthly costs are for service from the carriers.  Contact the carrier that you intend to use and ask them.

  • TS3274 I am thiking of buying iPad to use it at school. Can I open textbook withought using WiFi? How much will the Internet fee be?

    I am thiking of buying iPad to use it at school.
    Can I open textbook withought WiFi?
    How much will the Internet fee be?

    What is your grade level? Most (many?) schools at the secondary and college/university level have wifi, so if using it at school you would be set there and if you have wi-fi at home, you should be all set, there, too. Having cellular can be expensive for what you get in terms of space, and depending on where you live, you might want to do some research to see what your best options are.
    That said...
    I had questions as soon as I read your post. Are all of your books available for ipad? Do you have a computer, because you'll need one, etc.(I know you're using one now...)  If you do, then the ipad could work for you. My younger son is starting his junior year in college and he's getting an ipad for convenience. But he has an imac in his dorm room, so he'll be set. He knows that's more important for productivity than an ipad, but loves the idea that he can bring it to class for notes, put them on his imac for editing in microsoft office and excel, upload files he needs from classes, etc.
    I opened a thread to the right on this page to see if there was information re these questions, and there are. There are also many threads where people have your same questions, and many have very helpful answers. The only thing is it might be time consuming. You might have to go way back to read them. There are so many questions asked 24/7 that a new question on this site might be ten pages back in a matter of hours. I don't do it often, but I check them out and and I've gotten some very helpful info. Take notes and perhaps what you learn can help you make your decision.
    One thing I would skip as an option would be a netbook. They crawl... class would be half over before you'd get to start your note taking, and they are not powerful at all and have limited space even if you max it out with a larger hard drive. We bought two for my sons to take notes in college and don't use them anymore. 
    If you let us know more about your school level, specific situation, and why you want 4g, hopefully people can possibly help you better. All the best as you make your decision!

  • How to find the number of times method being called.....

    hi,
    can any one pls tell me how to find the number of times the method being called......herez the example....
    Refrence ref = new Refrence();
    for(int i = 0;i < arr.length; i++){
    if(somecondition){
    ref.getMethod();
    here i want to know how many times the getMethod() is calling...Is there any method to do this.. i have seen StrackTraceElement class..but not sure about that....pls tell me the solution....

    can any one pls tell me how to find the number of times the method being called......
    herez the example.... http://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal ? in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

  • How to change the default Real-Time Collaboration page?

    Who can tell me how to change the default Real-Time Collaboration page?
    If I want to add my corporation logo in the top of the default page.How to do?
    Thanks!

    Thanks for your help.
    "Click the Sites tab to display all sites and their IDs for your system." But I clicked the sites tab ,it showed "http://hostname:7777/imtapp/app/home.uix". I could not find the siteID parameter from it. Why?
    How to get it from command?

  • How to change the day and time seen on the calendar

    Hi.
    I am a bit confused as to how to restrict the day and time shown on a calendar.
    The ical help says this:
    To change the days of the week or the number of hours that appear in the main calendar view, choose iCal > Preferences, and make your choices from the Week and Day pop-up menus in the General pane. For example, you can choose to only see the hours from 9AM to 5PM on Monday through Friday.
    However, in my preferences pane, i don't have a either a week or day pop up menu that i can see, so i can't seem to restrict these fields. It's really frustrating as calendars are beginning at 1am!!!!
    Anybody got any ideas?
    Thanks
    David Tobin

    OK, but what did the help menu mean when it said..
    To view the day's, week's, or month's events, click the Day, Week, or Month button at the bottom of the iCal window.
    To change the days of the week or the number of hours that appear in the main calendar view, choose iCal > Preferences, and make your choices from the Week and Day pop-up menus in the General pane. For example, you can choose to only see the hours from 9AM to 5PM on Monday through Friday.
    To change which months are shown in the mini-month calendar (in the lower-left corner of the iCal window), click the arrows above the mini-month calendar. To see more than one month, drag the mini-month divider (the horizontal gray bar above the diamond) upward.
    To see events that are earlier or later in the day, use the scroll bar on the right side of the main calendar view.
    To change the range of time in the main calendar view that is not shaded (representing your "normal" day), choose iCal > Preferences. In the General pane, choose the times you want to appear in white (not shaded) from the "Day starts at" and "Day ends at" pop-up menus. All times outside that range are shaded.
    This suggests that you should be able to limit the hours actually shown on the calendar to a set range as opposed to just changing the shaded area.
    Have you any idea how to achieve this, as i don't see the popup menu suggested with...
    To change the days of the week or the number of hours that appear in the main calendar view, choose iCal > Preferences, and make your choices from the Week and Day pop-up menus in the General pane. For example, you can choose to only see the hours from 9AM to 5PM on Monday through Friday.
    I am confused!!
    Any other ideas?
    David Tobin

  • How to calculate the average inventory in ABAP

    Dear All,
    Please find the below formula and this formula how to calculate the Average inventory at value.Please let me know the abap base tables and the corresponding fields.
    Formula
    Inventory Turnover = Cost of Goods Sold (COGS) / Average Inventory at value.
    Thanks
    Regards,
    Sai

    Hi Arivazhagan,
    Thanks for your quick response .
    The field MBEWH from the table is fulfill the average inventory at value.
    For Eg :I want to calculate Inventory Turnover = Cost of Goods Sold (COGS)/
    Average Inventory at value.
    so shall i take Inventory Turnover = Cost of Goods Sold (COGS)/MBEWH
    The above formula will meet my requirement to find the average inventory Turnover.
    Thanks
    Regards,
    Sai

  • On a new imac how much of the HDD is already used with the OS,iLife,apps..

    Looking to buy my 1st ever iMac, the one Im going to get is the base one, with 250Gb HDD (I may upgrade to 320Gb for UK £29 though)
    My question is how much of the HDD is already used by OS X and everything on it? I understand there is some free trial stuff onthat can be installed eg MS Office, iWork etc I would want these removed as wouldnt want them so how much is left before you start adding your own stuff
    I also want to install Win XP on it so need to know what to do, 250Gb in todays computing is very stingy I think, so I need an idea
    cheers

    Here's are some disk usage information from my 20" white C2D. The numbers
    are running totals that include periodic software updates and some of my own
    stuff -- but that would be less than 0.5 GB of the final total.
    OS-X with "no optional packages" is a very usable system; it includes 'core'
    applications such as Safari, iTunes, Quicktime. It does not include any of the
    iLife apps or the iWork/MS_Office test-drive bloatwares.
    The large increase in disk usage for a minimum Leopard system is partly due
    to the inclusion of more apps in the 'core' OS package. Some things that were
    optional in Tiger have become part of the "minimum" Leopard install.
    The Xcode software development tools are a standard part of every OS-X
    distribution, but since most customers have no use for them, they're not
    included in the factory-installed disk image. If you don't plan to install
    them, subtract 3.4 GB from the final tally.
    Factory pre-installed Tiger 10.4.8 & bundled software .................. 16.4 GB
    Erase & Install Tiger 10.4.8 with NO optional packages .................. 2.9 GB
    SoftwareUpdate to 10.4.10, with NO optional packages .................. 3.1 GB
    Erase & Install Leopard 10.5.0 with NO optional packages ............... 6.6 GB
    SoftwareUpdate (11/11, immediately after Leopard install) ............. 6.7 GB
    Install Xcode SW development tools from Leopard DVD ................. 10.1 GB
    Install & SoftwareUpdate iLife'08 (except iWeb & GarageBand) ....... 12.3 GB
    SoftwareUpdate to Leopard 10.5.1.................................................. 12.5 GB
    IMO, 250 GB is FAR more than you'll ever need for installable software plus
    a sizeable collection of music/photos. OTOH, no amount of disk space will
    ever be enough for an avid music/photo/video junkie, and everyone should
    have an external backup drive. So, stick with the standard internal drive and
    buy more external storage.
    ...a billion here, a billion there -- and pretty soon you're talkin' 'bout alot of money,
    Looby

  • How to get the current GMT time in java

    Hi,
    How to get the current GMT time in java
    Thanks

    System.getCurrentTimeMillis() or new Date().
    [url http://www.javaworld.com/jw-12-2000/jw-1229-dates.html]Calculating Java dates: Take the time to learn how to create and use dates
    [url http://www.javaalmanac.com/egs/java.text/FormatDate.html]Formatting a Date Using a Custom Format

  • I am now currently studying in Switzerland. I would like to buy a macbook pro in USA so may I ask how much for the shipping fees?

    I am now currently studying in Switzerland and I would like to buy a macbook pro in USA. So may I ask how much for the shipping fees? Thanks a lot

    I'm not so sure if it's possible that Apple ships internationally. Why not just look into getting one in your country that you live in?

Maybe you are looking for

  • Streaming from MacBook Air to Apple TV via Airplay mirroring causes stuttering

    So... I'm trying to stream video from Safari on my Mac to my Apple TV via Airplay mirroring. Most of the time, the video starts off just fine, but after a while, it begins to stutter and lag on my Apple TV. The video is playing just fine on my Mac, b

  • Hard Drive Failure, New Drive Won't Install

    Like many others here, my seagate hard drive failed. After driving two hours to the Apple store in Orlando, FL they told me that they didn't have any appointments for the day. I waited around to see if anyone cancelled and luckily after and hour and

  • Problem when returning from Editor to Organizer

    When I'm finish editing a picture in Elements Editor and save the picture and close Editor, the Elements Organizer shows up in start/top of the library.  Earlier versions went back to the picture I was last editing.  Is it something I can do to fix t

  • Illustrator update does not work

    I've a CS5 on Macbook Pro. Today I tried to open Illustrator on it, but it kept failing. I moved it around from place to place and restarted and so on and so on (thinking this might help) but no improvement. Then I noticed that I need to run some upd

  • Filters tab

    I just loaded studio 8. I am trying to use filters in Flash 8 Pro. But the filters tab does not seem to be present. Can anybody help?