How to tell which GSM band phone is using

I've looked and can't find any info on this...is there a way to tell which of the 4 bands the phone is using and/or a way to pick which band it's using?

The band in use is based on the network you are on. You have no control over it and no real need to know it. In general for a given location there is only one band that is available. The following Wikipedia article discusses bands:
http://en.wikipedia.org/wiki/GSMfrequencybands

Similar Messages

  • "dtutil", how to tell which configuration file for packages using after deployment?

    Hello All, 
    Trying to achieve this feature, 
    Using DOS command to automatic my deployment process--glad I found dtutil. However, it doesnt give you any chance to identify which configuration file to be used by SSIS packages after deployment.
    Deployment Method: file deployment
    Configuration sued: XML file and SQL Table. IN XML file, it tells which DB connection for packages to look up the configuration table.
    Who can share some thoughts on this?
    Derek

    It is NOT about sequence.
    It is about how to point which configuration file to be used by deployed packages as during the "dtutil.exe"
    deployment, you dont have chance to identify which physical location confg files to be used.
    Derek
    That you do only at the time of execution of packages. By default it uses configuration settings created at design time within the package. If you want to override it, you can use \Configfile switch of dtexec for that. You can also set explicit values for
    properties using /SET switch
    http://technet.microsoft.com/en-us/library/ms162810(v=sql.105).aspx
    See this to understand how configs are applied in runtime
    http://technet.microsoft.com/en-us/library/ms141682(v=sql.105).aspx
    and this to understand behaviour difference in ssis 2008 
    http://technet.microsoft.com/en-us/library/bb500430(v=sql.105).aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to tell which Indexes are not being used?

    We are a large development shop and have many customers. Our database design is very generic so that it works for all of our customers. Each night we use an SSIS ETL process to bring down large amounts of data from the iSeries into SQL. One
    particularily large customer takes a very long time and we are looking for ways to speed up thier data import and transformation. I would like to see which indexes he does not use and possibly remove them. Each night we fully repopulate hundreds of staging
    and ods tables and incrementally delete and repopulate the days work for a handful of history type tables. Removing some indexes off of the large tables could make a big impact. 
    How can i tell which indexes the customer does not use?

    > IDENTIFYING UNUSED INDEXES IN A SQL SERVER DATABASE 
       Just because an index is not being used does not necessarily mean it should be removed.
    > Index This: All About SQL Server Indexes
    sp_BlitzIndex
    José Diz     Belo Horizonte, MG - Brasil

  • How to tell which serial number was already used for CS5.5 Web?

    I have a 2 copies of CS 5.5 Web Premium at work.  I need to reinstall them on 2 laptops and 2 PCs.  Each copy has been used before on the laptops, but the hard drives on the laptops crashed and will need to be reinstalled.  Will this cause any issues?  Thanks in Advance!
    -Tim

    Contact Customer Service:
    Contact Customer Care
    Pick a topic like Creative Suite. Then pick a question. Choose the "Still Need Help" option and you should see Web Chat.

  • HT201302 I am trying to upload pictures from my phone to my computer and I'm getting an error message that a photo is corrupted so it can't download.  I don't know how to tell which of the photos is corrupted so that I can delete it and try again?  Thanks

    I am trying to upload pictures from my phone to my computer and I'm getting an error message that a photo is corrupted so it can't download.  I don't know how to tell which of the photos is corrupted so that I can delete it and try again?  Thanks!

    If this is an iCloud account the Outbox only appears when sending an email, so if it is still trying I suppose it should be showing now (not sure though, hard to replicate this)
    What type of email account?

  • How to tell: Which version of camera raw do I have?

    How to tell which version of camera raw I have? The only Google search I found answering this question refers to is 2 years old and seems to no longer apply. There is no File, Edit etc. menu on the new version of Camera Raw with (Photoshop/Bridge CS6). I do use Adobe Application Manager to do my updates telling me if a new version exists or not, nevertheless I would like to know.

    The F key works as described for me in CS6-ACR7.4 with ACR as the window with focus.  The same function is available using the double-arrow-window icon at the right of the Preview checkbox near the top right of the preview area. 
    When in full-screen mode there is no title bar, but when I press the F key or click the double-arrow, again, ACR becomes smaller and I can see the title bar that includes the ACR version and camera model.  This is on Windows7-64-bit on a 1600x1050 monitor.  Perhaps you’re ACR’s title bar is off the top of the screen so you can’t see it, or maybe ACR optimizes some things if you have a smallish display—do you?
    A plug-in is a program that interfaces with another program but is not independently runnable application, itself, bit is independently updatable, so in this instance, Photoshop doesn’t need to be downloaded and installed every time Adobe adds support for a few more cameras.

  • How to tell which photos in iPhoto are HDR images.

    Does anyone know how to tell which photos in iPhoto are HDR images.  When I click on the Info button for the image it doesn't indicate if it was an HDR.
    Does anyone have any information about this?
    I'm using a new iPhone 5s with basically a new iMac.
    Thanks,
    Hagrid...

    You can do a filter on your library with "File Status" is "Missing". The "File Status" query is not available by default, but you can add it by clicking the upper-right button in the filter window.
    nathan

  • How to tell which JButton is clicked?

    I have a layout with 3 panels. Each panel has an 'Add' button inside it. However, I can't work out how to tell which 'Add' button has been clicked by the user. Normally I would put code to select from the text on the button, but this time they are all the same. Any ideas how I can do it?
    Thanks

    DrLaszloJamf: Do you have a simple example that you
    could post? I thought all
    ActionListeners/MouseListeners in the same class had
    to be dealt with in the same place.I'll give you an example in a mo', but here's another solution if you really
    want one ActionListener to listen to multiple sources: explicitly set the
    button's actionCommand strings. This string defaults to the button's text,
    but can be explicitly set to anything you want. This is useful, for obvious
    reasons, if you are writing a multilingual app (I'm Canadian, so that's
    part of the furniture).
    import java.awt.event.*;
    import javax.swing.*;
    public class Example implements ActionListener {
        private static final String MUG_COMMAND = "mug";
        private static final String WUMP_COMMAND = "wump";
        public void actionPerformed(ActionEvent event) {
            String actionCommand = event.getActionCommand();
            if (MUG_COMMAND.equals(actionCommand))
                System.out.println("doing mug action");
            else if (WUMP_COMMAND.equals(actionCommand))
                System.out.println("doing wump action");
            else
                System.out.println("neither mug nor wump: " + actionCommand);
        public static void main(String[] args) {
            ActionListener app = new Example();
            JPanel contentPane = new JPanel();
            JButton button1 = new JButton("add");
            button1.setActionCommand(MUG_COMMAND);
            button1.addActionListener(app);
            contentPane.add(button1);
            JButton button2 = new JButton("add");
            button2.setActionCommand(WUMP_COMMAND);
            button2.addActionListener(app);
            contentPane.add(button2);
            JButton button3 = new JButton("add");
            button3.addActionListener(app);
            contentPane.add(button3);
            JFrame.setDefaultLookAndFeelDecorated(true);
            final JFrame f = new JFrame("Mugwump");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(contentPane);
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • How to tell which node a session connects to in 9i RAC

    I have a 6 nodes 9i RAC database. While running a process, how to tell which node it is connecting to?

    Hi,
    SQL> select inst_id, sid, username from gv$session ;
    inst_id is the instance number a session is running on.
    select from the v$instance view to know to instance number you are actually connect to
    SQL> select instance_number from v$instance ;
    INSTANCE_NUMBER
    1
    note the the "g" before the view "v$session", that's for GLOBAL (all instances of the cluster) : check the views gv$parameter, etc...
    Fred

  • How to tell which model?

    I am trying to identify exactly which model MacBook my friend has. I emailed a copy of her System Profile to my laptop, figuring that's all I needed. Her machine is no longer available to me to look at.
    Well, she has a white MacBook that fits two closely related models and I can't tell which one hers is just using the Profile. It is either the Apple MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (MA700LL/A) or the Apple MacBook "Core 2 Duo" 2.0 13" (White/07) Specs (MB061LL/A). I can't find a part number in the Profile. The main difference seems to be that the standard optical drive for the 06 was a 6x Superdrive and for the 07 was an 8x Combo drive. The Disc Burning subsection of the Profile is:
    Firmware Revision: BE38
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: To show the available burn speeds, insert a disc and choose View > Refresh
    I'm not really clear on what this stuff means. It looks to me as though it must be a Superdrive, which would make her MacBook the 06 model. Can anyone tell me definitively?

    Possibly a quicker solution: plug her serial number into the online service assistant and it should tell you the resulting model.
    Matt

  • Please tell which BAPI need to be used to Upload AP upload ability ie F-43

    Hi Friends,
    This Is the Requirement
    functionality of being able to enter an SAP AP invoice using an excel upload.   The t-code should post to a vendor account, allow for both cost center and profit center postings and have the ability to pass charges across company codes.  This ability will allow for more efficient processing of invoices that are charged to multiple account numbers and entities.
    Please tell which BAPI need to be used to post vendor invoice.
    Thanks,
    Ravi
    <LOCKED BY MODERATOR - URGENT, PLEASE HELP OR SIMILAR ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Aug 22, 2008 5:41 PM

    Thx

  • After I click on a link and come back the link is not a differet color any more so I can't tell which links I have already used.

    I recently had to get a new hard drive and reinstall Firefox. Now when ever I click on an link to look at something and then return to the previous page (like in Craigs list or something) the link is not a different color like it always has been so I can tell which links I have already used, why?

    * Make sure that the History is set to at least 1 day: Tools > Options > Privacy > History: "Remember visited pages for at least"
    * Make sure that you do not run Firefox in Private Browsing mode (Tools > Stop Private Browsing is grayed, see [[Private Browsing]])
    * To see History and Cookie settings in Tools > Options > Privacy, choose the setting "Firefox will: Use custom settings for history"
    You can look at these prefs on the about:config page to make sure that you keep history.
    *http://kb.mozillazine.org/browser.history_expire_days (180) (also affects saved form data)
    *http://kb.mozillazine.org/browser.history_expire_days_min (90)

  • How to know which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • How to tell which maps are the latest?

    I have Maps v3.01 loaded on my 6710 Navigator (came with free worldwide licence) and Map Loader v3.0.28 on my PC.
    How do I tell which maps are loaded on my Nokia and what version/date the maps availalble on Map Loader are?
    Map Loader does not state which maps are already on my phone, nor does it state the date or version of the maps which can be uploaded.
    Obviously, I'd like to install newer versions of my country map if and when it is available, but how do I know which version is available and which I already have?
    Ovi.com does not seem to be the answer either as all maps were downloaded using Map Loader.
    Solved!
    Go to Solution.

    If you already have a free worldwide license and V 3.01 is working well for you then you are right to leave it for the moment. I hear of problems  searching for addresses etc with V3.03.  Can always update later when everything is sorted.
    I believe if you delete all your maps and then use Ovi Suite to download new maps, Ovi Suite will at least tell you what maps you have on your phone. I haven;t tried it myself because I can't stand Ovi Suite.
    Speed warning is available for Ireland but just like you I have to import the speed camera locations as landmarks. Hopefully, we will see these as new features in future updates.

  • How to tell which version of 1130AP

    The Aironet 1130AG Series is available in:
    A lightweight version
    An autonomous version that can be field-upgraded to lightweight operation
    A single-band 802.11g version for use in regulatory domains that do not
    allow 802.11a/5 GHz operation
    Is this firmware/software only, or is the hardware different.
    How do I tell which one I have?
    Thanks.

    A lightweight version
    An autonomous version that can be field-upgraded to lightweight operation
    Software.
    Do a "dir flash:"
    If the IOS is "K9W7" then it's autonomous.  If it's "K9W8" or "rcv" then it's LWAP.

Maybe you are looking for