How To Determine FTTC Modem Stats?

As per subject really.
FTTC modem ia a Huawei Echolife HG612.
If I run the BB test (via the Help link at MyBT) then it gives me download and upload speeds, AND says the download connection (sync) is 39.9meg. However it does NOT advise on the Upload sync.
All speed tests (whether wifi or wired) are showing an Upload speed of 4meg ... I would expect to be getting at least twice that. I was activated on Friday (12th) so I realise DLM is in operation, but I would have expected some movement by now. How often does DLM adjust the line profile?
I'm off on holiday tomorrow, so I'll recheck the speedtest when I return. If it hasn't increased, how best do I get the profile reset?
Thanks,
Ian
Thanks
Ian
http://www.siteguru.co.uk/be/ADSL2PlusForDummies.pdf - Having ADSL issues? Then read this PDF
Please don't click the star beside my name - too many stars makes you look like a swot!

sjtp wrote:
That does tell you your IP Profile.  But it doesn't tell you whether it is the appropriate profile for your sync speed.  It often is, but there are various reasons for the IP Profile to get wrong, so a real sync speed is more useful, ...
My sync speed is 39.9Mbps which I get from the standard BT speed test. In what way could this not be a 'real' sync speed? Can the BT Retail page give a misleading figure? I'm on Infinity 1 with the capped rate so it is exactly what I would expect. It looks like the OP is probably also on Infinity 1.
The Down IP profile should be 96.79% of the sync speed, and at 38.72Mbps mine is exactly that.
The Up IP profile should match the upload speed I'm paying for. On Infinity 1 I'm paying for 10Mbps and my Up IP profile is exactly that.
So I was just suggesting that this is an easy way of checking what the OP seemed to really want to know without having to unlock the modem. He can check his Up IP profile using the BT Wholesale page. He seemed concerned that it wasn't set to 10 or 20 or whatever upload speed he is paying for.
Agreed an unlocked modem would give lots of other information as well.

Similar Messages

  • How to determine whether a recordset is Empty or not ?

    Please see my snippet code below :
    <%     
         String sql="";
         String username="CDS";
         try
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                Connection con = DriverManager.getConnection("jdbc:odbc:Employees","","");
                Statement stmt = con.createStatement();
                ResultSet rs=null;
                   sql = "Select * from Employee where code='" + username + "'";
                   rs = stmt.executeQuery(sql);
                   rs.next();
                   if (rs==null)
                   %>
                        <jsp:forward page="Login.jsp?msg=Username not recognized"></jsp:forward>     
                   <%     
                else
                   %>
                        <jsp:forward page="Login.jsp?msg=Halo"></jsp:forward>
                   <%
              catch(ClassNotFoundException e)
                   out.println("Driver not found");
                    catch(SQLException e2)
                            out.println(e2.getMessage());
                            out.println("<BR>");
                            out.println("Wrong SQL Statement");
                            out.println("<BR>");
                            out.println(sql);
                            out.println("<BR>");
         %>How to determine whether a recordset has no result ?
    From the above code, i use if (rs==null) and that's not worked.
    Help me, guys.

    ResultSet rs = stmt.executeQuery(sql);
    if (rs.next()) {
    %>
        <jsp:forward page="Login.jsp?msg=Halo"/>
    <%
    } else {
    %>
        <jsp:forward page="Login.jsp?msg=Username not > recognized"/>
    <%
    }

  • How to determine the field size

    I am going to make a multiplatform application that hopefully
    will run on linux and windows 2000.If the os is 2000, then I will use
    vb.net/aspx else I'll use java servlets. I make the connection
    to the web server ( through HTTP) not directly to database server.
    So, the resultset will be stored in the String object. The columns
    will be separated by delimeter. Our problem is how to determine
    the size and type of the fields of mssql,oracle and postgres database
    so that we can include it in the String object.
    Ex.
    String sResultSet=new String();
    ResultSet rs=statement.executeQuery(sSQL);
    while(rs.next()){
    sResultset=sResultSet + rs.getString(field1) + "||" + rs.getString(field2) + "||";
    vertical bars acts as delimeter
    supposedly this is the code:
    sResultset=sResultSet + rs.getString(field1) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||" + rs.getString(field2) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||";
    supposedly this is the code if rs.getFieldType() and rs.getFieldSize() methods are existing
    Anyone can give me an idea how to get the field type and field size of the database?
    thanks in advance

    Yes, but I dont know how to do it.
    Can you give me an example of using it.
    Thanks in advance

  • Event handler for dropdownlistbox how to determine selection ?

    Hello,
    As a newby in BSP programming, I'm trying to build a small application with a menu structure . This menu is defined in a page fragment and consists of dropdownlistboxes. The event handling is located in the main page which contains the page fragment.
    My problem is that I cannot get these dropdownlist boxes to work. The coding in the page fragment is :
    ==========================
    <htmlb:content>
      <htmlb:form>
        <htmlb:dropdownListBox id             = "myDropdownListBox1"
                                 tooltip        = "Tooltip for my DropdownListBox"
                                 onClientSelect = "alert('myDropdownListBox1')"
                                 onSelect       = "mySelect" >
            <htmlb:listBoxItem key   = "k1"
                               value = "MenuChoice1" />
            <htmlb:listBoxItem key   = "k2"
                               value = "MenuChoice2" />
            <htmlb:listBoxItem key   = "k3"
                               value = "MenuChoice3" />
            <htmlb:listBoxItem key   = "k4"
                               value = "MenuChoice4" />
            <htmlb:listBoxItem key   = "k5"
                               value = "MenuChoice5" />
            <htmlb:listBoxItem key   = "k6"
                               value = "MenuChoice6" />
          </htmlb:dropdownListBox>
        </htmlb:form>
    </htmlb:content>
    ==========================
    The event handler ( OnInputProcessing ) code is :
    ==========================
    CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
      DATA: event TYPE REF TO if_htmlb_data,
            ddlb_event TYPE REF TO CL_HTMLB_EVENT_SELECTION.
      event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
      IF event IS NOT INITIAL AND event->event_name =
                 'dropdownListBox'.
          ddlb_event ?= event.
        CASE event->event_id.
          WHEN 'myDropdownListBox1'.
            CASE ddlb_event->selection.
           WHEN 'k1'.
            .......( Contains other statements )
           WHEN 'k2'.
            .......( Contains other statements )
           WHEN 'k3'.
            .......( Contains other statements )
           WHEN 'k4'.
            .......( Contains other statements )
           WHEN 'k5'.
            .......( Contains other statements )
           WHEN 'k6'.
            .......( Contains other statements )
         ENDCASE.
        ENDCASE.
        ENDIF.
    ==========================
    I have tried several different event handlers including the example in the documentation of the dropdownlistbox HTMLB element, but in the event handler I don't know how to determine the selection made.
    I would appreciate it hugely if someone could give me an example how to do this ?
    With regards,
    Fred van de Langenberg

    Hello,
    Thanks for your answers & suggestions Subramanian, Ulli & Sebastian.
    I forgot the <htmlb:content> tags ( thanks Ulli ) and eventually I got things working with the following :
    Main page layout : dopdownlistbox element
       <htmlb:dropdownListBox
                id          = "Ddlb1"
                onSelect    = "OnInputProcessing" >
                selection   = "<%= selection1 %>"
            <htmlb:listBoxItem key   = " "
                               value = " "/>
            <htmlb:listBoxItem key   = "k1"
                               value = "k1" />
            <htmlb:listBoxItem key   = "k2"
                               value = "k2" />
            <htmlb:listBoxItem key   = "k3"
                               value = "k3" />
            <htmlb:listBoxItem key   = "k4"
                               value = "k4" />
            <htmlb:listBoxItem key   = "k5"
                               value = "k5" />
          </htmlb:dropdownListBox>
    Event handler
    CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
    IF event_id = CL_HTMLB_MANAGER=>EVENT_ID.
    Scenario 1: Read event from manager.
      DATA: event TYPE REF TO CL_HTMLB_EVENT.
      event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
      IF event IS NOT INITIAL AND event->name = 'dropdownListBox'.
        DATA: data TYPE REF TO CL_HTMLB_DROPDOWNLISTBOX.
        data ?= CL_HTMLB_MANAGER=>GET_DATA(
                  request = runtime->server->request
                  name    = 'dropdownListBox'
                  id      = 'Ddlb1'
         CASE data->selection.
           WHEN 'k1'.
           WHEN 'k2'.
           WHEN 'k3'.
           WHEN 'k4'.
           WHEN 'k5'.
         ENDCASE.
       ENDIF.
    ENDIF.
    Fred van de Langenberg

  • How to determine max netstreams before failure

    Hi
    Everything on Adobe's website is listed as "unlimited" and scalable but I would like to know approximate actual numbers to estimate server hardware required
    I can't find out how to determine how many live audio/video netstreams per instance, specifically
    1) How many broadcasters per instance?
    2) How many subscribers/viewers per  broadcast?
    3) Does seperate application/instance provide better performance?
    I understand the exact number is based on the publish settings so everyone's setup is different, but is it just bandwidth consideration?
    Is there any server side functions and/or metrics besides general OS cpu/ram stats?

    • How do I determine how many songs will fit on a CD?
    Already answered by others.
    • I heard that the LAME encoder is the best out there, is there an easy way to use that encoder to convert AAC files?
    I don't think LAME is part of itunes. You need to find a different encoder. I think Max CDripper uses LAME. It's pretty common in other encoding tools so you need to search for one that you like and at a price you like.
    • Can I use the LAME encoder to convert the files and then use those files in iTunes instead of using iTunes to convert them?
    Yes. Understand though that nothing will convert iTunes AAC format DRM protected files except iTunes and then only to audio CD.
    • I have a play list I want to burn to an MP3 CD for the car. The playlist is composed of songs with both AAC and MP3 formats. Is there an easy way to convert an then use the AAC files for this playlist?
    iTunes will do this, or other audio encoders. The DRM limitation still applies, even to iTunes.
    Is there a high quality way of recording streamed songs along with the title/artist info?
    It depends upon the source. Different sources stream different ways, so what works with one will not always work with another. The one exception is something that captures any audio output from your computer. That doesn't capture with artist and song information, just any sound that happens to be coming from your computer. If it isn't easy to do it is probably because the people streaming the music really don't want to you do it, probably because of licensing, in which case the Terms of Use of this website don't let us discuss how to do it.

  • How to determine network bandwidth for EP 6.0 implementation

    Hi
         can you please guide me how to determine the network bandwith requirment for SAP EP6.0 implementation for smoother operation
    Thanks & Regards
    Ashutosh

    Hi Ashutosh,
    luckily network bandwidth is mostly not a problem as long as it is not very small, e.g. a modem dial-up 56kbps connection on client side. To make sure that the server side outgoing line is strong enough, you'd need to do some math and calculate from the expected request volume how much bandwidth you'd need. Some guidance might be taken out of the how to paper under this link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to perform sap enterprise portal load testing.zip.
    Check chapter 2.4 in the pdf file.
    For "smooth operation" you'd need network wise not only worry about bandwidth but also about network latency times and sometimes network quality in regard to % package losses or similar. If your end users are more then 1000 miles away you usualy start seeing response time increases from latency times...
    The impacts of networking on performance are many, but so are the tuning possibilities. If you have a lot of end-users accessing EP over a WAN, perhaps even over the Internet, and if they do so over long distance you might want to make EP landscape WAN tuning a dedicated task in your project.
    In addition the network requirements of Portal are discussed in this paper : http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000757275&_SCENARIO=01100035870000000112&_OBJECT=011000358700003943521999E , chapter  3.5.2 Enterprise Portal.
    Best Regards, Joerg

  • How we determine publisher take the role for call processing?

    dear sir,
    I've an iptel environment with only 1 publisher and subscriber . I was told that the current device that handling all the call processing is the only subscriber but will be backup by publisher for call processing in case of subscriber down. How we determine that? which part of ccm we should look into?
    please advise.

    Charles:
    Check your CCM group (under System) to see if your cluster is configured for sub as call processing engine and pub as backup. The order matters - top of the list is the main call processing engine, primary backup next, secondary backup next.
    The routers should also contain the pub and sub in your dhcp pool option 150 statement and the pub in the ccm-manager redundant host statement.
    Hope that helps.
    Tom

  • How to determine a certain gl account where it belongs? Purchase or Sales ?

    Hi gurus,
    I'm still struggling how to optimize the select statement in bsis. My last option is to limit the gl account in where statment (where hkont in so_hkont). I want to know the gl account for localpurchases.
    The user tol me that they used numbers of gl accounts for purchase report. Some are AP Non trade/Trade an others.
    Is there another table that categorized the GL Accounts?
    Need your help. Points will be given for the helpful ieas....Thank you

    Hi ashish,
    here's my code:
    select a~mandt            
            a~belnr            
            a~buzei            
            a~mwskz            
            a~budat            
            a~shkzg            
            a~dmbtr            
            b~lifnr            
            b~name1            
            b~ktokk            
    appending corresponding   
    fields of table lt_tab1   
    from bsak as a            
    inner join lfa1 as b      
    on a~lifnr = b~lifnr      
    where a~bukrs eq so_ccode 
    an hkont in so_hkont
    and umsks eq space        
    and umskz eq space        
    and a~gjahr eq lv_year    
    and a~budat in so_postp   
    and mwskz in so_txcde.    
    My problem here is the content of my so_hkont... Since the client doesn't want to give the gl account they are using for purchase report. I retrieve all the glaccount from SKAT  delete  input and output tax an place it in so_hkont.
    I want to lessen the gl account and remain that is for purchases (like AP trade or Non trade) to optimize the sql.
    Is there a table that determines this GL Account is used for purchases, another GL Account is for sales,... another is for employees salary..and so forth.
    Thanks...

  • 11i: How to determine current CU level?

    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".
    Thx.
    Don

    903322 wrote:
    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".SQL> select release_name
    from fnd_product_groups;
    https://forums.oracle.com/forums/search.jspa?threadID=&q=RELEASE_NAME+AND+fnd_product_groups&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    From the application: Help > About
    Thanks,
    Hussein

  • How do I use SQL statements to perform calculations with form fields????

    Please help!!! I don't know how to use a SQL statement within my APEX form......
    My form is below. The user will enter the values in the form. Click on Submit. Then we need to run a SQL select statement with those values.
    Our form looks like this:
    Start_Date ____________
    Per_Period ____________
    Period ____________
    [Submit Button]
    The user will enter these 3 values in the form.
    This is an example of an user providing the values:
    Start_Date 03/14/08_______
    Per_Period $200.00________
    Period 4____________
    [Submit Button]
    Then they will click the Submit Button.
    The SQL statement (BELOW) returns output based on the users selections:
    START_DATE PER_PERIOD PERIOD
    14-MAR-2008 00:00 200 Week 1 of 4
    21-MAR-2008 00:00 200 Week 2 of 4
    28-MAR-2008 00:00 200 Week 3 of 4
    04-APR-2008 00:00 200 Week 4 of 4
    Total 800
    This is the full text of the SQL that makes the output above:
    with criteria as (select to_date('03/14/08', 'mm/dd/rr') as start_date,
    4 as periods,
    'Week' as period,
    200 per_period from dual),
    periods as (select 'Week' period, 7 days, 0 months from dual
    union all select 'BiWeek', 14, 0 from dual
    union all select 'Month', 0, 1 from dual
    union all select 'ByMonth', 0, 2 from dual
    union all select 'Quarter', 0, 3 from dual
    union all select 'Year', 0 , 12 from dual
    t1 as (
    select add_months(start_date,months*(level-1))+days*(level-1) start_date,
    per_period,
    c.period||' '||level||' of '||c.periods period
    from criteria c join periods p on c.period = p.period
    connect by level <= periods)
    select case grouping(start_date)
    when 1 then 'Total'
    else to_char(start_date)
    end start_date,
    sum(per_period) per_period,
    period
    from t1
    group by rollup ((start_date, period))
    THANKS VERY MUCH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    You're just doing a parameterized report, where the input fields are your parameters.
    Check out the Advanced Tutorial titled Parameterized Report here:
    http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10497/rprt_query.htm#BGBEEBJA
    Good luck,
    Stew

  • How to determine logical database in a program?

    Hello guys!
    How to determine logical database in a program on Eclipse?
    I have not found any options:
    Thanks!

    Welcome to SDN
    Check the table RSOSFIELDMAP
    Assign points if useful
    Regards
    N Ganesh

  • How do we use if statement in labview?moreover can i use if statement inside for loop?

    how do we use if statement in labview?moreover can i use if statement inside for loop?

    The if statement in LabVIEW is the Case structure. You can find that on the Structures palette right next to the For Loop. If you're still on the same subject about terminating a for loop early, then what you do is enclose your functions inside the loop with a case statment and make one of the case's empty except for one or more constants that you might have to wire. Hopefully, the attached picture will explain what I mean. Also, as I mentioned in one of your other posts, I think this technique is not as good as using a while loop. The array in the attached example is the same size no matter what and you may have to handle stripping extra or invalid elements.
    Attachments:
    For_Loop_with_Case.jpg ‏21 KB

  • How to use an if statement in javascript code

    Hello,
    I have a batch processing script to search for text "employee signature" on each page in a multiple page file and to then list in the console any pages that do not have the "Employee Signature" text included.
    The script is not yet functional as an if statement needs to be included.
    Can anyone please advise how to use an if statement in javascript code?
    var numpages = this.numPages;
    for (var i=0; i < numpages; i++)
    search.query("Employee Signature", "ActiveDoc");
    console.println('Pages that do not include an employee signature: ' + this.pageNum +' ');
    Any assistance will be most appreciated.

    Thank you very much for your assistance try.
    I have modified the code as suggested and the page numbers are now listing correctly, thank you, but....................,
    The console  lists every page as having an "employee signature" when there are pages in the document that do not have an employee signature.
    The code (revised as follows) is not processing the "getPageNthWord part of the statement" in the console report?
    Can you please advise where the code needs reworking?
    var ckWords; // word pair to test
    var bFound = false; // logical status of found words
    // loop through pages
    for (var i = 0; i < this.numPages; i++ ) {
       bFound = false; // set found flag to false
       numWords = this.getPageNumWords(i); // number of words on page
       // loop through the words on page
       for (var j = 0; j < numWords; j++) {
          // get word pair to test
          ckWords = this.getPageNthWord(i, j) + ' ' + this.getPageNthWord(i, j + 1); // test words
          // check to see if word pair is 'Employee' string is present
          if ( ckWord == "Employee") {
             bFound = true; // indicate found logical value
             console.println('Pages that includes an employee signature: ' + (i + 1) +' ');
             break; // no need to further test for this page
          } // end Employee Signature
       } // end word loop
       // test to see if words not found
       if(bFound == false) {
             console.println('Pages that do include an employee signature: ' + (i + 1) +' ');
        } // end not found on page  
    } // end page loop
    Thank you

  • Anyone know how to determine Macbook Air screen tech? Causing migraines

    Hi There,
    Last year, I expereinced a lot of mild migraines which I've traced back to a new Macbook Air.
    At first I had no idea of the cause (diet, stress etc) but have noticed that my eyes feel uncomfortable looking at the screen of my Macbook Air (I don't have this issue with my Dell monitor).
    My eyes don't hurt per se, but I can detect a sublte jittering with the screen - which can turn into a migraine.
    After doing a bit of research, it seems like most (but not all) LCD and LED LCD displays use something called pulse-width modulation to control brightness but after calling Apple support, they told me my MBA doesn't use this technology.
    Does anyone know how to determine the underlaying technology in Apple displays so I can research the cauase of my headaches? I found a good Ukranian website (in english) that explained pulse-width modulation but it didn't really talk about other technologies.
    Any pointers in the right direction would be much appreciated.
    Cheers
    Ben

    What version of OS X are you using? If Yosemite, you need to update to 10.10.1 or higher.
    In any case, start by going to the editor preferences>general, clicking this button and restarting the editor:

  • How to execute a SELECT statement  in java??

    Hello !!
    In my java program , i need to delete a record of number X, so
    i accept the number X from the keyboard
    Then before deleting it
    i want the program to show me the name, age of the record which has the number X
    How to do this

    hello kylas
    actually i didnt get why this program example?? wats
    its executing ??? Look at reply #3 in your other thread:
    http://forum.java.sun.com/thread.jspa?threadID=713289&messageID=4126346
    Notice the similarity? You've now asked "How to delete a record in Java" and "how to execute a select statement in java". You may have noticed that, aside from the SQL and the call to execute and executeUpdate (for delete) it's the same code. This is because you don't so much do these things in Java, you do them in SQL. The Java code simply asks the Driver to execute whatever SQL you write. So, I really hope your next post isn't "how do I execute an UPDATE statement in Java".
    Good Luck
    Lee

Maybe you are looking for

  • DVD Playing Problems

    Lately, I've been having problems occasionally playing dvds on my Powerbook G4 laptop. Usually I put in a dvd and eventually the DVD Player opens up and the movie loads up. But lately i put in a dvd and nothing opens up. If I open DVD Player myself a

  • SG500X-24P firmware 1.2.0.83

    I recently got an old SG500X-24P switch with an active firmware 1.2.0.81. I can't seem to update it. I ran an update to 1.2.0.9, reboot, the firmware still shows 1.2.0.81. I can update the non-active firmware, but can't switch to it. Whatever I do it

  • High sea procurement ????

    hii experts Can anybody explain me about the Hige sea procurement in SAP. What is this business process?? How it 'll be carried out in SAP.;??? Thanks SAP-MM

  • Supported Specifications

    Hi, Can someone point me to the page where i can find what versions of following specifications are implemented in WLS 7.0 : - SOAP, UDDI, WSDL and JAX-RPC thanks Manoj

  • Where do i find new alert sounds? to download

    thanx