Question on Usage

I have BT Infinity Option 2. I dont download movies etc or use P-2-P (I used to but havent for a while!), however I am using Skyplayer heavily now that I have a nice fast connection. Does anyone know how much data would be used watching a movie on Skyplayer at the highest quality?

andylong42 wrote:
I have BT Infinity Option 2. I dont download movies etc or use P-2-P (I used to but havent for a while!), however I am using Skyplayer heavily now that I have a nice fast connection. Does anyone know how much data would be used watching a movie on Skyplayer at the highest quality?
Hi.
I believe Skyplayer HD is about 1.5GB per hour, and half that for standard definition. I believe that skyplayer is a p2p application and that you would also incur uploads too.
http://www.andyweb.co.uk/shortcuts
http://www.andyweb.co.uk/pictures

Similar Messages

  • Basic questions on usage of indexes

    Hi All,
    I have the following questions on the usage of indexes. I would be glad if you could answer the same.
    1)     Will using two different indexes for comparison reduce the performance for eg. If in a query I were to compare columns of two different tables, in which on one we have a non unique index while on the other we have a unique index will the query’s performance be poor? If so does it mean to have optimum performance we need to compare columns having same indexes?
    2)     Does deleting records from a table remove the indexes present on a given column? If no whether the space occupied by this particular index is overwritten by new indexes or these indexes simply exist without any mapping?
    3)     Does the order of conditions in where clause have a significance in terms that we should use the columns having index on them first and so on so that the column not having index comes last in the where clause?
    4)     Are indexes optimally used when we compare them in the where condition using LIKE? Or indexes are optimally used only when we compare using =, >, <, <=,>= in the WHERE clause?
    5)     If I have the following four columns C1, C2, C3 and C4 and if I were to create a composite index including all the four in the given order (C1, C2, C3 and C4); while I were to write a query with the columns C2, C3 and C4 (excluding C1); will it be a correct usage of the composite index? If no why?
    6)     If I have three columns C1, C2 and C3 and if I were to put a composite index on all the three but while writing a query use C1 and C2 only or C1 and C3 only will the index be used optimally? If no then does it make sense to create two composite indexes C1 and C2 & C2 and C3 to have the optimum usage of indexes?
    Thanks in advance.

    Most of your queries are answered on (directly or indirectly)
    http://richardfoote.wordpress.com/
    For those questions which remain unanswered, I am afraid you need to check it out yourself as you have the access to your environment. We, over here, can only give you the hints.

  • Pacman - short question about usage

    Hi,
    while searching the database with "pacman -Ss foobar", is it possible to show which of the resulting package names are already installed? In Debian it's shown via "aptitude search foobar", but I can't find the corresponding option for pacman in its man page.
    Thanks for your answer.

    Sorry, I've forgot to mention - but I think "repo-add" is more elegant solution. Personaly, I use a script which I call "auri" based on "aur-install", too. It also builds packages.
    If anyone likes it you can improve
    #!/bin/bash
    #/usr/local/sbin/auri
    # Author: Luis Useche <[email protected]>
    # Modified by: aris002 (no warranty and no reponsabilty for the damages to your system)
    # Date: 10/20/2006
    # License: GPL
    # aur-install is a tool to install any AUR package in one command. It is needed
    # to pass the url of the tarball package. It allows to see the code of both
    # PKGBUILD and install file beforme performing the installation.
    ABS_LOCAL_DIR="/var/abs/local"
    WGET="/usr/bin/wget"
    UNTAR="/bin/tar xzf"
    MAKEPKG="/usr/bin/makepkg"
    PACMAN_INSTALL="/usr/bin/pacman -U"
    REMOVE="/bin/rm -rf"
    READER="/bin/less"
    ADD_TO_MY_REPO="/usr/bin/repo-add"
    HOME_REPO_DIR="/home/myrepo"
    HOME_REPO_NAME="myrepo"
    AUR_URLPKGS="http://aur.archlinux.org/packages"
    # Function that make a yes or no question a return true in case of
    # yes otherwise false
    ask_question() {
    echo -n "$1(y/n)[y]: "; read ANSWER
    while [ -n "$ANSWER" ] && [ "$ANSWER" != "y" ] && [ "$ANSWER" != "n" ]; do
    echo -n "\"y\" or \"n\": "; read ANSWER
    done
    return `[ "$ANSWER" = "y" ] || [ -z "$ANSWER" ]`
    # Verifying root permisions
    if [ `id -u` != "0" ]; then
    echo "You need root to execute this script"
    exit 1
    fi
    # Veryfing parameters
    if [ -z "$1" ]; then
    echo "You need to pass an aur package URL or aur package name as an argument"
    echo "Usage: aur-install <pkgname>|<package tarball URL>"
    exit 1
    fi
    # Verifying if the argument is a URL or a pkg name
    if echo $1 | grep -q "http://"; then
    URL_PKGTAR=$1
    TAR_FILE=`basename $1`
    PKGNAME=`basename $1 .tar.gz`
    else
    URL_PKGTAR="$AUR_URLPKGS/$1/$1.tar.gz"
    TAR_FILE="$1.tar.gz"
    PKGNAME="$1"
    fi
    # Changing directory
    pushd $ABS_LOCAL_DIR > /dev/null
    # Download the file and place it in abs dir
    #aris002 TODO check if exists!!!
    $WGET $URL_PKGTAR
    # Untaring tar file
    $UNTAR $TAR_FILE
    # Removing the file
    #aris002 KEEP???
    $REMOVE $TAR_FILE
    # Go inside package directory
    pushd $PKGNAME > /dev/null
    # Verifying the packages
    if ask_question "Do you want to look the PKGBUILD file in case of malicious code?"; then
    $READER PKGBUILD
    # Continue?
    if ! ask_question "Do you want to continue?"; then
    exit 1
    fi
    fi
    # Including PKGBUILD
    source PKGBUILD
    if [ -n "$install" ] && ask_question "Do you want to look the $install file in case of malicious code?"; then
    $READER $install
    # Continue?
    if ! ask_question "Do you want to continue?"; then
    exit 1
    fi
    fi
    #repair (insert) arch=('i686') in PKGBUILD
    sed -i.BAK -e '/^arch/d' -e '/^pkgdesc/a \arch=('\''i686'\'')' $ABS_LOCAL_DIR/$PKGNAME/PKGBUILD
    echo "Making and installing the package..."
    # Making Package
    $MAKEPKG
    #aris002 repo-add
    $ADD_TO_MY_REPO "$HOME_REPO_DIR/$HOME_REPO_NAME.db.tar.gz" "$HOME_REPO_DIR/$pkgname-$pkgver-$pkgrel-i686.pkg.tar.gz"
    # Installing with pacman
    $PACMAN_INSTALL "$HOME_REPO_DIR/$pkgname-$pkgver-$pkgrel-i686.pkg.tar.gz"
    # Returning to the original directory
    popd > /dev/null
    popd > /dev/null

  • Question of usage of old software when you upgrade

    Good day to all.
    Just new here so please be gentle. Do any of you still retain the older version of adobe when you upgrade to the latest software? Like for example CS4 and having CS5.5 on your PC? Since you have license, are we allowed to use both or directly use the newer version and discard the old one? Just want to know what to do on these kind of situation.
    Thanks!

    This question is better asked in the Creative Suites forums. But yes, it is absolutely normal to retain the previous versions. In fact, almost essential for some products. For instance, as an InDesign user, I have CS3, CS4, CS5, and CS5.5 all installed on our machines, because the newer versions cannot write to older version files.
    The installer will not delete older versions. It's entirely your call. And I would suggest you not do so.
    The EULA has some language suggesting that this usage is limited to a transition period, whose time period is undefined. In practice, no one is concerned about such things -- we're just worried about dealing with older documents when they arrive.

  • Two questions about usage

    I've just had an email warning me that I am approaching my Broadband usage limit; this has now beenresolved, but it got me thinking.  Am I correct in thinking that BT Vision usage does not affect my Broadband usage?  Is there a usage limit for BT Vision?
    Thanks
    Mike
    Solved!
    Go to Solution.

    dikul wrote:
    I've just had an email warning me that I am approaching my Broadband usage limit; this has now beenresolved, but it got me thinking.  Am I correct in thinking that BT Vision usage does not affect my Broadband usage?  Is there a usage limit for BT Vision?
    Thanks
    Mike
    Mike it absolutely doesn't count towards the limit and there is no limit set for BT Vision.
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

  • 11i Advanced Pricing Questions on usage of Item Category Segment Values

    Hi All,
    we are on 11i, i am trying to setup on modifiers using Item Categories. Customer has 4 segment category structure.
    Category structure= Vendor, Group, Style, Price code , here is how Data looks = 060.10.800.40
    In 11i, can we setup Modifiers on Segment1 & Segment 2 ( 060.10), so system picks up all values for segment3 and segment4.
    I understand R12 can do this as per Metalink Note: 746020.1. is this supported in 11i.? I am unable to accomplish this.
    regards
    girish

    Hi
    Please donot post more questions in a single thread. If you post it separately, you will get many responses and detailed explanations from more members.
    Regarding your queries.,
    1. Relevant for delivery field in Item Category is for TEXT Items and for others you should configure the field in Schedule lines.
    3. Shipping conditions will be defaulted from the CMR of SP. If a value exists in the sales document type (eg. OR) then it will have priority and will replace the value defaulted from CMR.
    5. The pricing applies to Item Level only. But you cannot determine different procedures for different line items.
    6. Header conditions will not have access sequence and you cannot create condition records for header conditions in VK11.
    7. In consignment process - the first two steps are mandatory i.e., Consignment fillup and consignment issue.
    The other two steps are required only if there are returns from the customer(not consignee) and if there are any unsold stocks at the consignee.
    Thanks,
    Ravi

  • Question about usage unbilled Acccount in Rev Rec

    We are implementing SD Rev Rec and I want to know the usage of un-billed account.
    When we create a credit memo with reference to a billing document, SAP picks up unbilled account while creating accouting document against the billing document. Normally on Sales order SAP uses account from Account determination (Key ERL), but it doesn't do that in case od credit memos. Why SAP treats the invoice as unbilled?

    Got it

  • Newbie Question DVD usage

    Hi everyone,
    This is my first Apple. So this is a whole new world for me.
    I am having some difficulty using the the DVD player in that it won't play them. The error message comes as being an unsupported DVD yet they are store bought DVD's. Titles tried so far: Hackers and Alien vs. Predator.
    Any solutions?

    The real question is, in the future, can I take a completed iDVD disc and extract video/audio from it to create a new project or do I need to have the original 8mm tape?
    Yes you can with an app like:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.products.htm
    but it will lose significant quality. Best to hold on to all source footage /mini dv and hi8 tapes.
    Keep the original tapes or move your iMovie to mini dv tape and keep those for future edits. But you will likely lose your chapter markers. Or save your iDVD's in the form of a disc image to an ext. FW HD (less desireable due to the fact you cannot make future edits unless you opt for the above mentioned app).

  • Basic Question - Update - Usage of index

    Gurus,
    I have a basic question. As per my knowledge, an index will speed up the process while we are selecting the data. If we are doing some DML operations (especially Update), do we need the index to speed up the process eventhough the indexed column is in the where condition?
    Regards
    Edited by: Sarma12 on Apr 17, 2012 5:59 AM

    Have you tried setting up a test scenario? For example:
    SQL> CREATE TABLE test AS SELECT 1 num FROM DUAL CONNECT BY LEVEL <= 1000;
    Table created.
    SQL> UPDATE test SET NUM = 99 WHERE ROWNUM = 1;
    1 row updated.
    SQL> COMMIT;
    Commit complete.
    SQL> UPDATE /*+gather_plan_statistics*/
      2         test
      3  SET    num = 2
      4  WHERE  num = 99
      5  ;
    1 row updated.
    SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(null,null,'ALLSTATS LAST'));
    PLAN_TABLE_OUTPUT
    SQL_ID  96wt4ddwy0sa5, child number 0
    UPDATE /*+gather_plan_statistics*/        test SET    num = 2 WHERE
    num = 99
    Plan hash value: 3859524075
    | Id  | Operation          | Name | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
    |   0 | UPDATE STATEMENT   |      |      1 |        |      0 |00:00:00.01 |       7 |
    |   1 |  UPDATE            | TEST |      1 |        |      0 |00:00:00.01 |       7 |
    |*  2 |   TABLE ACCESS FULL| TEST |      1 |      1 |      1 |00:00:00.01 |       4 |
    Predicate Information (identified by operation id):
       2 - filter("NUM"=99)
    Note
       - dynamic sampling used for this statement (level=2)
    24 rows selected.
    SQL> rollback;
    Rollback complete.
    SQL> CREATE INDEX test_x1 ON test(num);
    Index created.
    SQL> UPDATE /*+gather_plan_statistics*/
      2         test
      3  SET    num = 2
      4  WHERE  num = 99
      5  ;
    1 row updated.
    SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(null,null,'ALLSTATS LAST'));
    PLAN_TABLE_OUTPUT
    SQL_ID  96wt4ddwy0sa5, child number 0
    UPDATE /*+gather_plan_statistics*/        test SET    num = 2 WHERE
    num = 99
    Plan hash value: 734435536
    | Id  | Operation         | Name    | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
    |   0 | UPDATE STATEMENT  |         |      1 |        |      0 |00:00:00.01 |       9 |
    |   1 |  UPDATE           | TEST    |      1 |        |      0 |00:00:00.01 |       9 |
    |*  2 |   INDEX RANGE SCAN| TEST_X1 |      1 |      1 |      1 |00:00:00.01 |       2 |
    Predicate Information (identified by operation id):
       2 - access("NUM"=99)
    Note
       - dynamic sampling used for this statement (level=2)
    24 rows selected.So yes, an index may be used in DML.

  • Question Concerning Usage of Table Controls

    I currently have three screens. The first screen is the main screen and the other two screens are subscreens called from within the main screen. Inside each of the two subscreens, I have a separate table control. Each table control provides a display of specific data. I would like the first table control to be maintained by certain actions done in the second subscreen. At the moment, I do know that the internal table used for the first table control is being modified accordingly. The issue is the table control on the screen is not being modified based on the change reflected on the internal table. If I modify the internal table, the table control on the screen still reflects the old value.
    Is what I am trying to do possible? Do I need to force an event in order for the table control to be modified or refreshed from the internal table? I have no issue in modifying the table control defined in the second subscreen. The table control on the first subscreen is the one where I have the issue with update.
    Thanks in advance.
    --Vince

    Hi,
    If the PBO of the main screen is called..
    THen table control in the first screen should be getting called also..
    In the debugging check if the internal table is having the updated values before hitting the LOOP AT statement of the PBO of the first screen..
    Thanks,
    Naren

  • Question about usage of aaa accounting commands

    Hi everyone,
    I have the problem that Cisco routers and switches do not send some accounting command
    information to ACS.
    Accounting commands do not send to ACS are "show log" and "show version".
    Accounting commands send to ACS are "show runn", "conf t" and "debug"
    The configuration of routers and switches is the following
    aaa new-model
    aaa authentication login default group tacacs+ line
    aaa authorization commands 15 default group tacacs+ none
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    tacacs-server host xxx.xxx.xxx.xxx key yyyy
    I think the commands do not send to ACS are privilege level 1 command and the commands
    send to ACS are privilege level 15 command.
    So I need to additional aaa accounting command below to get routers and switches send level 1
    command to ACS, because the "15" of "aaa accounting commands 15" does not include level 1
    so need to configure "aaa accounting commands 1" for level 1 commands.
    aaa accounting commands 1 default start-stop group tacacs+
    Is my understanding correct ?
    Your information would be greatly appreciated.
    Best regards,

    Hi,
    plese do this and the router will send
    everything to the ACS server, except
    whatever you are doing to the router in http:
    aaa new-model
    aaa authentication login notac none
    aaa authentication login VTY group tacacs+ local
    aaa authentication enable default group tacacs+ enable
    aaa authorization console
    aaa authorization config-commands
    aaa authorization exec notac none
    aaa authorization exec VTY group tacacs+ if-authenticated none
    aaa authorization commands 0 VTY group tacacs+ if-authenticated none
    aaa authorization commands 1 VTY group tacacs+ if-authenticated none
    aaa authorization commands 15 VTY group tacacs+ if-authenticated none
    aaa authorization network VTY group tacacs+ if-authenticated none
    aaa accounting exec VTY start-stop group tacacs+
    aaa accounting commands 0 VTY start-stop group tacacs+
    aaa accounting commands 1 VTY start-stop group tacacs+
    aaa accounting commands 15 VTY start-stop group tacacs+
    aaa accounting network VTY start-stop group tacacs+
    aaa accounting connection VTY start-stop group tacacs+
    aaa session-id common
    ip http authentication aaa login-authentication VTY
    ip http authentication aaa exec-authorization VTY
    tacacs-server host 192.168.15.10 key 7 1446405858517C
    tacacs-server directed-request
    line con 0
    exec-timeout 0 0
    authorization exec notac
    accounting commands 0 VTY
    accounting commands 1 VTY
    accounting commands 15 VTY
    accounting exec VTY
    logging synchronous
    login authentication notac
    line aux 0
    session-timeout 35791
    exec-timeout 35791 23
    authorization exec notac
    accounting commands 0 VTY
    accounting commands 1 VTY
    accounting commands 15 VTY
    accounting exec VTY
    login authentication notac
    transport input all
    line vty 0
    exec-timeout 0 0
    authorization commands 0 VTY
    authorization commands 1 VTY
    authorization commands 15 VTY
    authorization exec VTY
    accounting commands 0 VTY
    accounting commands 1 VTY
    accounting commands 15 VTY
    accounting exec VTY
    login authentication VTY
    David
    CCIE Security

  • Question regarding usage of "count" function in xsl in my bpel process

    Hi,
    Is it ok to use the "count" function in the xsl transformation activity in BPEL PM version is 10.1.2.0.2?
    Thanks a lot for your help.
    Thanks
    Ravi
    Message was edited by:
    user464609

    removed
    Message was edited by:
    Marc Kelderman

  • Question on usage of some events in page flow logic

    Hi Group,
    I don't know how to use the following events and also not came across any example using these events:
    1.OnRequest
    2.OnDestroy
    3.OnCreate
    4.OnManipulation
    please let me get some ideas from you on the above if possible with some simple examples.
    thanks in advance.
    Regards,
    Vishnu.

    <b>OnCreate</b>
    OnCreate is called once when the page is first created (stateful mode), and performs a once-off data initialization or object creation.
    <b>OnRequest</b>
    OnRequest is called whenever a request is made for a particular page and is used to restore the internal data structures from the request. This is important when working in stateless mode.
    <b>OnInitialization</b>
    This event handler is mainly used for data retrieval. For example, it allows data required for displaying the BSP to be read from the database. It can also execute any program.
    <b>OnInputProcessing</b>
    This event handler checks and processes user input. It can also define navigation, that is, whether the user should be taken to the same page or another when the BSP is called.
    <b>OnManipulation</b>
    You can use this event handler to manipulate the HTTP data stream later.
    <b>OnDestroy</b>
    This event handler is available for special functions.
    Refer the below link for more detail..
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm
    Raja T

  • Question regarding usage of CRM pricing conditions using date ranges

    Hi,
    I wonder if someone has a suggestion regarding how to set up pricing conditions in CRM to accomplish the following scenario:
    For existing customers we want to “freeze” the product price for certain customers,
    but at the same time let other customers get another prize for the same product
    and period.
    (We have scenarios where the product price changes retroactively, years back in time, but only for those custoemrs that  fulfill a specific criteria at the time where the prize change was decided to take place..)
    We want the prize to be dependent on the customer status AND when this status was set
    (before a specific date), but there doesn’t seem to be a way to set up pricing
    conditions with date ranges (i e "customer status changed before YYYYMMDD
    renders prize X").
    Since we are talking about quite a lot of customers we do not want to add each and every
    one of them as “individual price items” in the pricing conditions tables.
    Does anyone have an idea regarding how to set this up?
    Thanks
    /Marika Wasserman

    Hi Marika,
    condition records have validity (FROM - TO). Let us assume you have a condition record for product A with 50 EUR per piece and this record is valid from 01.01.2014 until 31.12.2014.
    If you create CRM Sales Order having product A at 4.12.2014 and this date is used as pricing date for the conditon determination, then it will find this condition record with price 50 EUR per piece. This 50 EUR should be the froen price.
    Now how can you achieve that for the same CRM Sales Order another product price is determined for certain customer or a certain customer group?
    The idea is to pass an additional pricing attribute, e.g. customer group. Then you can create a new condition table with this field with the key fields product and customer group. In the access seqeunce first the new condition table is checked and if no record is found, then the second conditon table is checked as shown below:
    Access Sequence ABC
    Access 10: condition table with key fields product + customer group
    Access 20: condition table only key field product
    Instead of customer group you define also any other field. You create your own implementation of the BAdI  CRM_COND_COM_BADI that passes this field with a value to pricing.
    Best regards,
    Baris Yalcin

  • OWA pane usage

    Hello,
    I am new to Developer & XML. I have a couple of questions about usage
    1. The online docs say OWA displays mod_plsql output. Does that mean it is getting it from an Apache server or is it running locally? (i.e. If I write a procedure that outputs XML for web display, can I & how do I point it to OWA). I don't have an instance of Apache to use.
    2. Are there any example procedures I can look at that display XML output in the OWA pane? I am trying to display sql query results in a table format by outputting XML . I have a simple example of producing a table format in XML tags and that is about all.

    Thanks, Barry. For whatever reason, when I closed & re-started SQL Dev, the limitation went away, so I'm OK for the time being.
    - J

Maybe you are looking for