How can i find my usage

How can i find my broadband usage to see what package to change to ? 

BT Broadband does not offer that facility. This thread may be of interest: http://community.bt.com/t5/BB-in-Home/10Gb-monthly-usage-limit-install-a-third-party-meter-No-way/m-...
Oliver.

Similar Messages

  • How can we find the most usage and lowest usage of table in Sql Server by T-SQL

    how can we find the most usage and lowest usage of table in Sql Server by T-SQL
    The table has time stamp column
    StartedOn datetime
    EndedOn datetime

    The Below query has been used , but the textdata column doesnot include the name of the table ServiceLog.
    SELECT
    FROM
    databasename,
    duration
    fn_trace_gettable('F:\Program
    Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\log_148.trc',
    default)
    WHERE
    DATABASENAME='ZTCFUTURE'
    AND TEXTDATA
    IS
    NOT
    NULL
    --AND TEXTDATA LIKE 'SERVICE%'
    order
    by cpu
    desc; 

  • How can i find item category usage in abap program

    HI, EXPERTS
    I HEARD USAGE MAINTAINED IN ABAP PROGRAM .
    ANY ONE KNOW WHERE I CAN FIND ABAP PROGRAM FOR ITEM CATEGORY USAGE??
    THANKS.^
    Edited by: jong seok Lee on Feb 2, 2010 10:01 AM

    Hi,
    Item Category Usage: An item categories usage is defined by SAP when creating a sales order, The system determines for example, that the usage refers to a text item as oppossed to a deliverable item when you enter text in the order item rather than  a material number. Based on this usage, the system will use the item category determination to propose an item category.
    You can also find the usage in Custoemer material info record (T.Code VD51), if you want to determine any customer specific item category you may use the usage field in Custoemr master info record.
    You can devlop an user exit to determine the item category based upon usage field as well.
    regrads
    Vivek.

  • How can I find what scom group a specific server belongs to using powershell?

    Environment:  SCOM 2007 r2
    Server in question:  Running Windows 2003 Std. (yes I know this sounds crazy)
    Why do I need this:  I noticed at the console level we have had server unexpected shutdown events which are not generating email notifications. 
    Source shows: Windows 2003 Server Standard Edition
    Alert Rule:  Windows Shutdown Unexpectedly
    From what I see these are all windows 2003 server Std edition systems.  I did a track and trace using our exchange tracking system which confirmed the alerts were not being emailed. Not sure if there is a better approach for this, but not being a sql
    expert (however I do have someone I can leverage) I am trying to see if I can somehow extract this information using powershell.
    Secondary general question:  How can I find out the current size of our scom 2007 database and the number of objkects\servers being monitored? This is prep work for a migration over to 2012.
    Thanks in advance for the help!

    1. what scom group a specific server belongs to
    function Get-GroupNames {
     [cmdletbinding()]
     param($computerFQDN)
     $containmentRel = Get-RelationshipClass -name:’Microsoft.SystemCenter.InstanceGroupContainsEntities’
    $computerClass = Get-MonitoringClass -name:”Microsoft.Windows.Computer”
    $criteria = [string]::Format(“PrincipalName = ‘{0}’”,$computerFQDN)
     try {
     $computer = Get-MonitoringObject -monitoringClass:$computerClass -criteria:$criteria
     $relatedObjects = $computer.GetMonitoringRelationshipObjectsWhereTarget($containmentRel,[Microsoft.EnterpriseManagement.Configuration.DerivedClassTraversalDepth]::Recursive,[Microsoft.EnterpriseManagement.Common.TraversalDepth]::Recursive)
     catch {
     $_
     write-host “An error occurred while querying groups of $computerFQDN”
    foreach($group in $relatedObjects)
     [array]$Groups = $groups + $group.SourceMonitoringObject.DisplayName
     if($groups) {
     return $groups
     } else {
     write-host “No groups available for $computerFQDN”
    Usage:
     Get-GroupName -ComputerFQDN myserver1
    for detail, pls. refer to
    http://techibee.com/powershell/powershell-get-scom-groups-of-a-computer-account/1129
    Roger

  • I have a massive 267GB yellow 'other' file in my memory. How can i find out what it is?

    I am cleaning up my Mac and have gone through the usual processes of removing downloads, emptying trash and other usual cleaning up of unwanted files.  On my memory storage I have a massive yellow "other" usage of 267Gb but cannot find out what this consists of.  I have the usual music and photo files but how can I find out what this consists of?

    If it doesn't correct itself after a reboot, the Spotlight database on your Mac may be corrupted. Try re-indexing: Spotlight: How to re-index folders or volumes - Apple Support

  • How can I find out who is using all my UNTO tablespace?

    The usage has grown from a usual 60% to 100% this morning, how can I find the culprit?
    Thanks

    Run the following query.
    SET LINESIZE 200
    COLUMN username FORMAT A15
    SELECT s.username,
    s.sid,
    s.serial#,
    t.used_ublk,
    t.used_urec,
    rs.segment_name,
    r.rssize,
    r.status
    FROM v$transaction t,
    v$session s,
    v$rollstat r,
    dba_rollback_segs rs
    WHERE s.saddr = t.ses_addr
    AND t.xidusn = r.usn
    AND rs.segment_id = t.xidusn
    ORDER BY t.used_ublk DESC;

  • How can i find start line of any functions or procedures stored in package body?

    hi
    how can i find start line of any functions or procedures stored in package body?
    is there any way to write a query from for example user_source?
    thanks

    how can i find start line of any functions or procedures stored in package body?
    Why? What will you do differently if a procedure starts on line 173 instead of line 254?
    Tell us what PROBLEM you are trying to solve so we can help you find the best way to solve it.
    If you use PL_SCOPE that info is available in the *_IDENTIFIERS views. See 'Using PL/Scope in the Advanced Dev Doc
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28424/adfns_plscope.htm
    Try this simple sample code. The query is modified from that doc sample:
    -- tell the compiler to collect the info
    ALTER SESSION SET PLSCOPE_SETTINGS='IDENTIFIERS:ALL';
    -- recompile the package
    CREATE OR REPLACE package SCOTT.pack1 as
    PROCEDURE proc1;
    PROCEDURE proc2;
    END;
    CREATE OR REPLACE package BODY SCOTT.pack1 as
    PROCEDURE proc1 IS
    BEGIN
      NULL;
    END;
    PROCEDURE proc2 IS
    BEGIN
      proc1;
    END;
    PROCEDURE proc3 IS
    BEGIN
      proc1;
      proc2;
    END;
    END;
    -- query the info for the package spec
    WITH v AS (
      SELECT    Line,
                Col,
                INITCAP(NAME) Name,
                LOWER(TYPE)   Type,
                LOWER(USAGE)  Usage,
                USAGE_ID,
                USAGE_CONTEXT_ID
        FROM USER_IDENTIFIERS
          WHERE Object_Name = 'PACK1'
            AND Object_Type = 'PACKAGE'
    SELECT LINE, RPAD(LPAD(' ', 2*(Level-1)) ||
                     Name, 20, '.')||' '||
                     RPAD(Type, 20)||
                     RPAD(Usage, 20)
                     IDENTIFIER_USAGE_CONTEXTS
      FROM v
      START WITH USAGE_CONTEXT_ID = 0
      CONNECT BY PRIOR USAGE_ID = USAGE_CONTEXT_ID
      ORDER SIBLINGS BY Line, Col
    LINE,IDENTIFIER_USAGE_CONTEXTS
    1,Pack1............... package             declaration        
    2,  Proc1............. procedure           declaration        
    3,  Proc2............. procedure           declaration        
    -- query the info for the package body - change 'PACKAGE' to 'PACKAGE BODY' in the query above
    LINE,IDENTIFIER_USAGE_CONTEXTS
    1,Pack1............... package             definition         
    2,  Proc1............. procedure           definition         
    6,  Proc2............. procedure           definition         
    8,    Proc1........... procedure           call               
    10,  Proc3............. procedure           declaration        
    10,    Proc3........... procedure           definition         
    12,      Proc1......... procedure           call               
    13,      Proc2......... procedure           call               

  • My messages usage says I have 2.9GB of (saved) Messages. Thing is I have not 1 saved message, I delete them all. How can I clear this usage?

    My messages usage says I have 2.9GB of (saved) Messages. Thing is I have not 1 saved message, I delete them all. How can I clear this usage?

    AnAfromHi wrote:
    My messages usage says I have 2.9GB of (saved) Messages. Thing is I have not 1 saved message, I delete them all. How can I clear this usage?
    Firstly you DO NOT have to do a factory reset / wipe device, it is simply not required to get the space back!!
    Mine had 3GB and I just got rid of it all, here is how:
    METHOD ONE:
    Make a backup in iTunes
    open iBackupBot (Google it)
    Go to the relevant backup
    Click on Multimedia File Manager and click on the other Multimedia files tab
    Sort by filename by clicking the Filename tab
    Find MediaDomain/Library/SMS/Attachments and highlight all of them, then press delete.  You can also click to export to a folder of your choice, if you want to save them that is. 
    Then go to System Files>MediaDomain>Library>SMS>Attachments
    They will be all listed here, highlight them all and press delete
    Then just restore that backup using iTunes! 
      Tadaa! Space recovered, your messages are still there but without the attachments!  METHOD TWO:
    Backup your device in iTunes and then to iCloud
    Go to Settings>iCloud and toggle Documents & Data to OFF
    Then do a 2nd backup to iTunes and iCloud
    Then restore the device from iCloud and the message attachments should be gone, turn Documents & Data back on again in the settings
    PLEASE NOTE: Method two is a much longer process but some users may feel more comfortable with this method.
    P.S You may want to make two backups in case you get any of the above steps wrong, but it is simple to follow the above and not do anything wrong!
    P.P.S You could also just go through every single conversation and delete the attachments one by one, but if you have hundreds or thousands of attachments, this will take a VERY LONG TIME!!!

  • How can i find out what app is using data at 5am

    i have used an unusual amount of data this month.  something on my phone is using data at 5am every morning.  its not me.  how can i find out what it is?

    The times reported for data usage on your bill do not necessarily reflect the time the data was actually used. The system gathers information from the cell sites and reports on a schedule.

  • HT4211 how can you find out what kb are being used by what apps

    how can you find out what kb are being used by what apps there is always alot of kb being used even when I don't use my phone

    Go into settings , general, usage and it tells you what the apps use. If your refering to the memory storage of the apps.

  • How can I find what's really in my Library?

    After several problematic days, I finally installed iTunes 9.
    The new version then imported multiple files (so fast I hardly saw what half of them were, but they were additional to all my regular/ previous files - things like voice memos and other stuff).
    I notice that my memory usage has gone up considerably (even though I cannot see a lot of those new imported files in iTunes anywhere).
    Question: how can I find (and get rid of) what those imported files were please? On my c: drive folder I can see the iTunes folder with album artwork, games, music, applications, previous libraries - but I think there is much more stuff hidden around somewhere - any ideas please?

    What you see in your +My Music\iTunes+ folder is pretty much everything that takes up space. Be careful changing the files here, though. ITunes will not notice if you move or delete something, so the entry that points to it in iTunes will get a "!" mark. Better to review your libraries in iTunes and delete stuff you don't want, opting to move them to the Recycle Bin.
    The only other place iTunes stores anything (except for its own .exe stuff in +Program Files+, of course) is in the hidden system folder Application Data. In your Windows XP, you can view this folder by opening a Run box ( +Start > Run+ ) and typing %appdata%.

  • How can I find out what is running in the background and running my batterie down

    How can I find out what is running in the background

    Hi simpbarby,
    Welcome to the Support Communities!
    The links below will help you understand what apps are running on your iPhone.  You can quit the ones that you aren't using.
    iOS: Understanding multitasking
    http://support.apple.com/kb/ht4211
    This link will provides tips to conserving battery life:
    Apple - Batteries - iPhone
    http://www.apple.com/batteries/iphone.html
    Optimize Your Settings
    Depending on how they are set, a few features may decrease your iPhone battery life. The tips below apply to an iPhone running iOS 7.0 or later.
    Enable Wi-Fi: Having Wi-Fi enabled helps consume less power when doing activities that access data. Go to Settings > Wi-Fi and log in to a Wi-Fi network.
    Adjust brightness: Dim the screen or turn on Auto-Brightness to extend battery life. Turning on Auto-Brightness allows the screen to adjust based on lighting conditions.
    Fetch new data less frequently: The more frequently email or other data is fetched, the quicker your battery may drain. To fetch data manually: Go to Settings > Mail, Contacts, Calendars > Fetch New Data and tap Manually.
    Turn off push notifications: Apps with Push Notification alert you of new data, which may impact battery life. To disable, go to Settings > Notifications, choose the app you want to disable, and do the following:
    Change Alert Style to None.
    Turn Badge App Icon off.
    Turn Sounds off.
    Note: New data will be received when you open the app.
    Minimize use of location services: Apps that actively use location services, such as Maps, may reduce battery life. You can see which applications have recently used location services by going to Settings > Privacy > Location Services.
    Use Airplane Mode in low- or no-coverage areas: Your iPhone always tries to maintain a connection with the cellular network, which may use more power in low- or no-coverage areas. Turn on Airplane Mode to increase battery life in these situations.
    Viewing Usage StatisticsKnowing and understanding your iPhone usage can help you better manage your battery life. To view your iPhone usage statistics, go to Settings > General > Usage. Under “Time since last full charge”:
    Usage: Amount of time iPhone has been awake and in use since the last full charge. iPhone is awake when you’re on a call, using email, listening to music, browsing the web, or sending and receiving text messages, or during certain background tasks such as auto-checking email.
    Standby: Amount of time iPhone has been powered on since its last full charge, including the time the phone has been asleep.
    I hope this information helps ....
    Have a great day!
    - Judy

  • How can I find out what is on my macbook and not on my other macs that results in continual downloads from the satelite dish and resulting overcharges?

    How can I find out what is on my macbook  that results in continual usage and usage charges from the satelite dish when turned on, even in the middle of the night- which doesn't happen with my other macs?

    I have BusyCal installed, but no alarms that I could find.
    However, I do think I've found the source of the sound: the Firefox add-on "LiveJournal." It routinely checks my LJ and plays a "ding.wav" file whenever there are new posts to my Friends' page. I noticed that the sound started happening more frequently, but after I closed Firefox, it stopped. But since Firefox didn't have any sound/notification settings on its own, I thought to check the extensions, and voila!
    I'm pretty sure the problem is solved, but who knows if the sound will mysteriously return...
    I

  • How can I find out when was a particular table last updated?

    How can I find out when was a particular table last updated? I need to find out the usage of this table - when was it last updated, etc. Thanks in advance. The version I am using is Oracle 9i.

    If you don't have any application level logging, and auditing is not enabled, there's not much hope.
    You could, if you have archive logs available, go trawling through archive logs via logminer, but that's likely to prove painful and not very fruitful, unless you're very meticulous and patient...
    -Mark

  • Upgraded my i phone to os8 thru i tunes and lost my contacts how can I find them

    I upgraded my iphone 4s to IOS8 and lost my contacts.  How can I find them?

    There are two likely answers:
    1.  Your iPhone has too much storage being used.  Check Settings > General > Usage and make sure you have a reasonable amount of free storage left (roughly 15% of your total storage minimum).
    2.  If (1) is not the issue, then tell us what account used to house your contacts (e.g., iCloud).  You would need to make sure that same account is set up correctly on your iPhone right now.

Maybe you are looking for