Interpreting results - difference between bar char...

Hi,
I'd like some help interpreting the results of my recent BT speedtest
The results said that my max achievable is 2000kbps and that my DSL connection rate is 5008 kbps (or thereabouts)
I thought the DSL connection rate was the max achievable - so why the barchart figure only going to 2000kbps
I'd appreciate any explanation/help anyone might be able to provide
Thanks
Dominic

Thanks...yes
FAQ
Test1 comprises of Best Effort Test: -provides background information.
Download  Speed
1608 Kbps
0 Kbps
2000 Kbps
Max Achievable Speed
 Download speedachieved during the test was - 1608 Kbps
 For your connection, the acceptable range of speeds is 400-2000 Kbps.
 Additional Information:
 Your DSL Connection Rate :5088 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
 IP Profile for your line is - 1750 Kbps
So my question is why is the max achievable speed at 2000 kbps but the DSL connection rate is 5088kbps - I have a PlusNet teleworker contract that goes up to 8mbps. BTW, I'm working on various ways of getting the IP Profile up - changing telephone, router etc to find out why the IP profile isn't nearer the max speed.
Thanks for any insight here

Similar Messages

  • Difference between Reference char and template

    Hi Guys,
      Can anybody explain me what is tthe difference between  Reference char and template.
    Thanks,
    chinna
    Points will be awarded

    Reference Char:
    when a new Infoobject is referenced to another, all the technical properties will be inhereted by the new InfoObject.Also check this,
    http://help.sap.com/saphelp_nw04/helpdata/en/ff/f470375fbf307ee10000009b38f8cf/frameset.htm

  • Difference between BYTE & CHAR

    hi all,
    In Oracle, As per below syntax, what is the difference between BYTE & CHAR used as datatype size for NAME column:
    CREATE TABLE CLIENT
    NAME VARCHAR2(11 BYTE),
    ID_CLIENT NUMBER
    and
    CREATE TABLE CLIENT
    NAME VARCHAR2(11 CHAR), -- or even VARCHAR2(11)
    ID_CLIENT NUMBER
    rgds,
    pc

    First of - do not use reserved words for columns (NAME).
    If the database character set is UTF-8, which I believe is the default in recent version of Oracle. In this case, some characters take more than 1 byte to store in the database.
    If you define the field as VARCHAR2(11 BYTE), Oracle will allocate 11 bytes for storage, but you may not actually be able to store 11 characters in the field, because some of them take more than one byte to store, e.g. non-English characters.
    By defining the field as VARCHAR2(11 CHAR) you tell Oracle to allocate enough space to store 11 characters, no matter how many bytes it takes to store each one. I believe that in Oracle 10g, 3 bytes per character were used.
    regards,
    Robert.

  • What is the difference between bar and column charts

    To me they are the same. When should I use one of the two,
    but another?

    "glen08" <[email protected]> wrote in
    message
    news:ghvjov$sgi$[email protected]..
    > To me they are the same. When should I use one of the
    two, but another?
    One faces east-west, the other north-south.
    HTH;
    Amy

  • What is the difference between "Replace" and "Replace by Security"

    Hi all,
    I am implementing FDM to Load data to HFM, I set them up with a proper security on the shared service and FDM. When I load data to HFM from FDM, there are 4 options to load data. (Replace, Merge, Accumulate, Replace by Security)
    A document states that
    Replace: Clears all account values from the target application, and replaces that the data in the application with the data in the load file.
    Replace by Security: Loads data to the target application only for members to which you have access.
    However, even if I used “Replace”, it worked with security which I set.
    Does anyone know what the difference between “Replace” and “Replace by Security”?
    Is there any way that FDM works without security?
    Thanks in advance
    taku

    The fact both methods are producing the same results will either be coincidence or perhaps because you are mis-interpreting the difference between the 2. When you run a Replace HFM will clear out all data based on the combination of Scenario, Year, Period, Entity and Value dimensions it does not care if you have set up security classes which may restrict access to any of the other dimensions i.e. Account, Custom1 thru 4. When you use Replace By Security HFM will still clear on the original criteria but it will respect security class restrictions set up on the other dimensions e.g. if you are assigned to a security class which is restricted to accessing only a certain subset of accounts, HFM will not clear data fro the accounts you don't have access to when you use Replace By Security

  • Difference between char and varchar, also the difference between varchar2

    Hi,
    Can anyone explain me the difference between char and varchar, and also the difference between varchar and varchar2...

    Varchar2 is variable width character data type, so if you define column with width 20 and insert only one character to tis column only, one character will be stored in database. Char is not variable width so when you define column with width 20 and insert one character to this column it will be right padded with 19 spaces to desired length, so you will store 20 characters in the dattabase (follow the example 1). Varchar data type from Oracle 9i is automaticlly promoted to varchar2 (follow example 2)
    Example 1:
    SQL> create table tchar(text1 char(10), text2 varchar2(10))
    2 /
    Table created.
    SQL> insert into tchar values('krystian','krystian')
    2 /
    1 row created.
    SQL> select text1, length(text1), text2, length(text2)
    2 from tchar
    3 /
    TEXT1 LENGTH(TEXT1) TEXT2 LENGTH(TEXT2)
    krystian 10 krystian 8
    Example 2:
    create table tvarchar(text varchar(10))
    SQL> select table_name,column_name,data_type
    2 from user_tab_columns
    3 where table_name = 'TVARCHAR'
    4 /
    TABLE_NAME COLUMN_NAME DATA_TYPE
    TVARCHAR TEXT VARCHAR2
    Best Regards
    Krystian Zieja / mob

  • Difference between CHAR and VARCHAR2 datatype

    Difference between CHAR and VARCHAR2 datatype
    CHAR datatype
    If you have an employee name column with size 10; ename CHAR(10) and If a column value 'JOHN' is inserted, 6 empty spaces will be inserted to the right of the value. If this was a VARCHAR column; ename VARCHAR2(10). How would it handle the column value 'JOHN' ?

    The CHAR datatype stores fixed-length character strings, and Oracle compares CHAR values using blank-padded comparison semantics.
    Where as the VARCHAR2 datatype stores variable-length character strings, and Oracle compares VARCHAR2 values using nonpadded comparison semantics.
    This is important when comparing or joining on the columns having these datatypes;
    SQL*Plus: Release 10.2.0.1.0 - Production on Pzt Au 6 09:16:45 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn hr/hr
    Connected.
    SQL> set serveroutput on
    SQL> DECLARE
    2 last_name1 VARCHAR2(10) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is NOT equal to -TONGUC -
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 last_name1 CHAR(6) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is equal to -TONGUC -
    PL/SQL procedure successfully completed.
    Also you may want to read related asktom thread - "Char Vs Varchar" http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1542606219593
    and http://tahitiviews.blogspot.com/2007/05/less-is-more-more-or-less.html
    Best regards.

  • How to calculate the month difference between two date char. in Query?

    Customers would like to see how many months passed between two date type of characteristics (e.g., the month difference between the current date and the scheduled delivery date in the record) and put the result into the column as KF. 
    We would have to grab the fiscal year/period kind of value and then do the subtraction, e.g., if the current date value is 2/28/2008 and the scheduled delivery date value in the record is 12/01/2007, the correct result should be 2 month difference between these two date values, but could someone here give us the technical light on how to make this happen in query design?
    Thanks and we will give you reward points for the correct anwsers!

    Hi Kevin,
    The Badi is RSR_OLAP_BADI.
    You can create an implementation using Transaction  SE18.
    The implementation is per cube and is defined in the filters.
    In the Implementation you have the following methods :
    1. Define : Here you will provide the Keyfigure you need as a virtual one.
    2. Initilialize : Any Init Function you want to do.
    3. Compute. This is called per datarecord and here you can cimpute your value.
    Hope this helps.
    Pralay Ahluwalia

  • What are the functional differences between the iPhone and the iPod Touch, barring of course the differences in service requirements.

    What are the functional differences between the iPhone and the iPod Touch, barring of course the differences in service requirements.

    For one, their form factors are slightly different as the iPhone has a bit more squarish body whereas the iPod Touch has a tapered back to it. 
    The iPhone also has much better front and rear cameras. Exact details as to the difference in megapixels depends on whether or not you talking about the iPhone 4 or 4S.  If you would like to get more details, you can always view
    each models specs on Apple's online store.
    See here for a better explanation.
    http://en.wikipedia.org/wiki/IPod_Touch#Comparison_to_the_iPhone
    I'm sure others will chime in with other things as well.
    B-rock

  • Re: Difference between individual result recording or summarized result rec

    Hi All,
    Please explain me .
    "Difference between individual result recording or summarized result recording"
    Regards,
    vivek

    hi
    individual result recording  is when you measure multiple values, these can record individually and enter in thr RR.and all these values will get sum by the sytem.
    summarized result recording is you need to sum the multi ple values and the one sum value has to enter in the results recording.

  • Difference between doc/lit bare and doc/lit wrapped

    does anybody know the difference between them?
    there are many resources about doc/lit bare, but there aren't that many about doc/lit wrapped.
    is Doc/lit wrapped the one that wrapps the multiple argument into the Java object(setter and getter) and passes it to the web services?
    It would be great if somebody explains clearly.
    Thanks.

    you may find the following article useful:
    http://www.codeproject.com/cs/webservices/Web_Services.asp
    And the JAXWS 2.0 specification is also probably useful.

  • What is the difference between RT(Result table)& CRT(Cumilative result tabl

    what is the difference between RT(Result table)& CRT(Cumilative result table)

    Hi,
    RT Contains all the results of the payroll of the current
    period, i.e, ur current months Basic, HRA, CLA etc. Where as in CRT contains
    all the cummulated amount of the Basic, HRA, CLA, i.e, lets us assume that
    ur basic per month is 5000/- then in RT table u will have Basic amount for
    the month of September will be 5000/- and in CRT for the month of September
    u will have Basic amount as 30,000/- ie, 5000 * 7. And also CRT has Yearly
    amount and also Current month amount. you can check this with the Tcode
    pc00_m40_clsrt
    AWARD POINTS IF USEFUL

  • DIFFERENCE BETWEEN THE DATA DECLARATIONS NVARCHAR2 AND VARCHAR2(x CHAR)

    CAN ANYONE HELP ME FIND THE DIFFERENCE BETWEEN THE DATA DECLARATIONS; NVARCHAR2 AND VARCHAR2(x CHAR), WHERE X IS THE SIZE OF DATA TO BE HELD WITH THE VARIABLE OR ATTRIBUTE

    Duplicate posting....
    Difference between nvarchar2(10) and varchar2(10 char )
    Difference between nvarchar2( 10) and varchar2( 10 char)
    Please refer also...
    Nvarchar2

  • Difference between nvarchar2( 10) and varchar2( 10 char)

    Hi ,
    I had to enhance my application's DB to support unicode data entries(Multilingual data entries) and retrieval. I want to know the basic difference between the following data type decalrations:
    nvarchar2( 10) and varchar2( 10 char)
    Can any one suggest me which would be a optimum choice?
    regards,
    Siddarth

    Yes, you are almost correct.
    Can you read Japanese Character ? (There is no need to understand Japanese words meanings).
    Are you ready? Let's go!
    SQL> create table tab_size(col varchar(3));
    Table created.
    SQL> insert into tab_size values ('abc');
    1 row created.
    SQL> insert into tab_size values ('abcd');
    insert into tab_size values ('abcd')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values('アイウ'); /* This is  3 characters (3byte) */
    1 row created.
    SQL> insert into tab_size values('アイウエ'); /* This is  4 characters (4byte) */
    insert into tab_size values('アイウエ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values ('あ'); /* This is 1 character (2bytes) */
    1 row created.
    SQL> insert into tab_size values ('あい'); /* This is 2 characters (4bytes) */
    insert into tab_size values ('あい')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values ('aあ'); /* This is 2 characters (3bytes) */
    1 row created.
    SQL> insert into tab_size values ('abあ'); /* This is 3 characters (4bytes) */
    insert into tab_size values ('abあ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> drop table tab_size;
    Table dropped.
    SQL> create table tab_char (col varchar2(3 char));
    Table created.
    SQL> insert into tab_char values ('abc');
    1 row created.
    SQL> insert into tab_char values ('abcd');
    insert into tab_char values ('abcd')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4,
    maximum: 3)
    SQL> insert into tab_char values ('あいう');  /* This is 3 characters (6bytes) */
    1 row created.
    SQL> insert into tab_char values ('あいうえ'); /* This is 4 characters (8bytes) */
    insert into tab_char values ('あいうえ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_char values ('aあい'); /* This is 3 characters (5bytes) */
    1 row created.
    SQL> insert into tab_char values ('abあい'); /* This is 4 characters (6bytes) */
    insert into tab_char values ('abあい')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4, maximum: 3)谢谢。
    ありがとう。
    Thank you for reading.

  • Difference between Data Type Char & VarChar

    Hi Experts,
    I a design document that I have, some of the Data Types are mentioned as CHAR(e.g.CHAR(4)), and a few others as VARCHAR(e.g.VARCHAR(20)), can you let me know what is the difference between the two.And how is such an object to be developed in BW seeing that we don't have a DataType called Varchar in BW?
    Thanks
    Aravind

    Hi
    The char is a fixed-length character data type, the varchar is a variable-length character data type.
    Because char is a fixed-length data type, the storage size of the char value is equal to the maximum size for this column. Because varchar is a variable-length data type, the storage size of the varchar value is the actual length of the data entered, not the maximum size for this column.
    You can use char when the data entries in a column are expected to be the same size.
    You can use varchar when the data entries in a column are expected to vary considerably in size.
    but that is no need in SAP BW, any how you are going to assign the length of the variable while creating...
    Thanks
    M Kalpana

Maybe you are looking for

  • HT201253 I cannot sync my 5S with ITunes.  I can sync my iPad with same cord and computer

    I recently sent my 5S through the washing machine and got a replacement 5S.  I am running Windows 7. I was able to "restore" it from iTunes without any issues other than I hadn't back up in a month.  Now when I try to sync with iTunes it gets to step

  • Users not showing in Terminal Server Under Remote desktop services manager and Task Manager

    Hi All, I have a problem here in Terminal Server. I can not see the users logged in to Server but i know users are accessing the files and currently working. 1. From the Task Manager-- Show processes from all users displayed all the processes accessi

  • BOM authorization controls -reg

    Friends , we use only BOM with usage 1 -production BOM , we dont want to maintain many BOMs like engineering bom ,design bom ,production bom like that seperately. in this context we require some authorization control to control the users for BOM chan

  • Central KM Repository

    Hi, Is there a way i can have an Central KM Repository. I have an BW Java portal and a Central Portal .Is there a way i can configure the BW Java portal to Use the KM of Central Portal  . Thanks, sree

  • Using servlet filters- to read the rsponse

    Hi , In my web application i am displaying the final result as an xml in a jsp.Now what ever I am displaying to the user i want to get that as a string and store it in a database. For this i think i have to get that from the response object, i just l