How to determine mobile operator used

I have bought a second hand iPhone 4s. The seller did not know which operator used. I need this info in order to unlock the mobile and switch operator. How can I determine the old operator used?

Go to settings, general, about, and see what it says for carrier. I would be concerned about a phone that I purchased where the person selling it did not know who the carrier was. Did they not know who they paid for sevice? I would not be surprised if you cannot use this phone.

Similar Messages

  • How to perform merge operation using Data services designer?

    I am new here and new to Data Services Desinger as well.
    And currently, I want to do a merge operation using query transform or table comparison transform. But sadly, neither one of them is giving me what I want.
    So, wonder if you could help clarify if either one of them could achieve MERGE operation between and source and target tables?
    if positive, then how?
    PS:
    by MERGE, i mean, if data exists in target table, then only do update, else, do insert. same with the standard MERGE operation of oracle.
    If you need any more info, let me know!
    Thanks in advance.

    You can do this.
    You don't need the Tabe_Comparison transform actually.
    Just query the data you need and output the flow from your query to your target table.
    Then, you'll have to check the "Auto correct load" option: this will insert new lines and updates old ones. One checked, you can ckeck the "Auto correct load" checkbox.
    By default, BODS will know a line already exists based uppon the primary key columns of your target table. If you want to change the columns used to determine if a line should be inserted or updated, use the "Use input key" checkbox (and define some PK column in your query).
    Hope this helps
    Guillaume

  • How to determine what's using data store temp space?

    How can one determine what's using data store temp space? We are interested to know what structures are occupying space in temp space and if possible what pid/process connected to TimesTen created them.
    Also, is there a procedure that will work if temp space is full?
    Recently one of our data stores ran of space. We we're unable to run commands like "monitor", "select * from monitor", "select count(*) from my_application_table", etc. These commands failed because they required temp space to run and temp space was full. We killed the application processes, this in turned freed up temp space, then we were able to run these queries.
    Ideally, we'd like to have a procedure to figure out what's using temp space when temp space is full.
    The other thing we could do is periodically monitor temp space prior to it filling to determine what's using temp space.

    That was my original thought, but once you click the slider track or thumb, and then enter a value in the text control, the clickTarget on the change event envoked by the change to the bound data (after entering a value in the text control) will be whatever slider element had last been clicked. If you've never clicked the slider, clickTarget=null. But once you've clicked the slider the clickTarget always has a value of "thumb" or "track", regardless of what triggered the change event.

  • How to determine color book used in customer-supplied PS file?

    Using CS5. I am unable to open two files supplied by our client. These two files pre-date CS6, and were made by a branch of our client in Germany. We are in North America. There are many layers of bureaucracy between us and the actual creators in Germany, so communication is impossible.
    An attempt at opening the files results in the error, "Could not complete your request because the specified color book cannot be found".
    I am well aware of the workarounds suggested by Adobe for this problem. However, in this case it is NOT POSSIBLE to "work with the file creator", and it is NOT POSSIBLE to use a different version of PS with the correct books.
    I have Color Manager, and I have cluttered up my CS5 installation with every likely-looking color book from Manager in the hopes that one of them would be the right one, but to no avail.
    So. What do I do? Surely by now Adobe has created some sort of utilty that allows PS to simply tell you WHICH color book is missing so you will know which one to go and get? No?
    (Update: I think I may have put this question into the wrong forum, but if so I have no idea how to correct this.)

    I think I'm understanding now: While fonts are identified to PS by name, color books are identified to PS by number, and those numbers are not associated with a name that would be embedded into a document the way a font name would be.
    It's appearing to me that
    1) Adobe-registered color books are identified by numbers that any installation of Photoshop will recognize, provided that that PS installation is new (or updated) enough to recognize those numbers;
    2) a 3rd-party number that is unregistered with Adobe will only be known to the specific PS installation which has that specific book; everybody else will only get a number which is unassociated with any color book, and the program will error.
    If #2 is correct, how are color-book number conflicts avoided?

  • How to determine which locale uses the specific process

    Hi,
    I would like to get to know which locale uses the specific process.
    I mean that when the process starts it should use the current system locale.
    Where I can check that information which locale are used by the running process?
    I ask because I would like to make sure that for example when the locale are French or Japanese the process/deamon use the current locale.
    Kind regards,
    Daniel

    VivaLaVida wrote:
    Hi,
    currently we are in the process of consolidating our databases. One of the neccessary steps is to figure out which user connects to the database at all. That's easy, we implemented a logon-trigger and log the collected information into a separate table.It could have been even easier by turning on the built-in audit feature.
    If a user with objects (e.g. tables, views, procedures) exists - but this user never connects to the database - does that automatically mean that these objects are not used at all? No need to say that this is not true. But how can we figure out if a connected user has selected an object of this user?audit would be a good choice.
    Our porblem is that we have alot of schemas in our database - but the developers don't know if this schema is not used by an application or not (sad but true).Not sure what developer will do with used/not used application.
    To enable auditing would be one choice to figure out if an object was ever used or not. What's wrong in auditing ?
    Even though audit may have a footprint on performance, that would probably be less costly than any custom solution.
    Nicolas.

  • How to determine all tables used in a series of maps?

    Hi, I'd like to find out all of the tables in the source warehouse builder schemas that are actually being used during ETL. I imported the entire databases at the start of the project, and want to find out which of the 2000 tables are actually being used.
    Is there a simple query I can run against the repository owner views to determine all tables actively being queried?
    Thanks in advance for the help!
    Scott

    Scott,
    maybe the simplest way to report tables usage in mappings is extracting this info from DB dictionary view DBA_DEPENDENCIES.
    Of course this method has several limitations:
    - all mappings must be of type PLSQL
    - all mappings must be deployed to target database
    - maybe it doesn't work for non-Oracle source databases
    For example, this query (when executed in target DWH schema) shows remote databases (and number of used tables in each source DB) used by PLSQL packages (mappings, of course you need to exclude "non-mapping" packages with additional filter)
    select REFERENCED_LINK_NAME,count(distinct REFERENCED_OWNER||'.'||REFERENCED_NAME) from user_dependencies
    where REFERENCED_LINK_NAME is not null and type='PACKAGE BODY'
    group by REFERENCED_LINK_NAME;
    When source and target schemas are in the same DB this query will be different
    (in this this case source system will be identified by REFERENCED_OWNER column and REFERENCED_LINK_NAME will be NULL).
    As I know OWB repository tables/views for lineage/impact analysis are not published/documented by Oracle.
    Regards,
    Oleg

  • How to determine which user uses which database-object

    Hi,
    currently we are in the process of consolidating our databases. One of the neccessary steps is to figure out which user connects to the database at all. That's easy, we implemented a logon-trigger and log the collected information into a separate table.
    If a user with objects (e.g. tables, views, procedures) exists - but this user never connects to the database - does that automatically mean that these objects are not used at all? No need to say that this is not true. But how can we figure out if a connected user has selected an object of this user?
    Our porblem is that we have alot of schemas in our database - but the developers don't know if this schema is not used by an application or not (sad but true).
    To enable auditing would be one choice to figure out if an object was ever used or not.
    Are there any other possibilities?
    Any help will be appricated
    Rgds
    Jan

    VivaLaVida wrote:
    Hi,
    currently we are in the process of consolidating our databases. One of the neccessary steps is to figure out which user connects to the database at all. That's easy, we implemented a logon-trigger and log the collected information into a separate table.It could have been even easier by turning on the built-in audit feature.
    If a user with objects (e.g. tables, views, procedures) exists - but this user never connects to the database - does that automatically mean that these objects are not used at all? No need to say that this is not true. But how can we figure out if a connected user has selected an object of this user?audit would be a good choice.
    Our porblem is that we have alot of schemas in our database - but the developers don't know if this schema is not used by an application or not (sad but true).Not sure what developer will do with used/not used application.
    To enable auditing would be one choice to figure out if an object was ever used or not. What's wrong in auditing ?
    Even though audit may have a footprint on performance, that would probably be less costly than any custom solution.
    Nicolas.

  • How many devices can I use my creative account (student account), including mobile devices?

    How many devices can I use my creative account (student account), including mobile devices?

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each
    -Both computer Cloud subscriptions may not be in use at the same time
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • How to determine if "File in use"

    How can I determine if a file is currently being 'used' that would prevent me from copying over the file. I would like to be able to determine who is using this file (win id). As a test i tried the following and got an error as expected:
    PS C:\src> move-item -path "main14.fmx" -destination "c:\forms" -force
    Move-Item : Cannot create a file when that file already exists.
    At line:1 char:10
    + move-item <<<<  -path "main14.fmx" -destination "c:\forms" -force
        + CategoryInfo          : WriteError: (C:\forms\main14.fmx:FileInfo) [Move-Item], IOException
        + FullyQualifiedErrorId : MoveFileInfoItemIOError,Microsoft.PowerShell.Commands.MoveItemCommand
    In my script I would like to know WHO is currently using the file; a "try...catch" scenario would only keep me from completing the copy, but I would want to know who is using the file so that I  can call USER and ask him/her to close the file
    so that I can copy latest version.

    PS C:\> openfiles /?
    Note that this is not a support forum for the
    openfiles command.
    -- Bill Stewart [Bill_Stewart]

  • How to remove a mounted drive at startup in a mobile account, using netinfo

    How does one remove an mounted drive at startup in a mobile account, using netinfo?
    One of the user automatically mounts a network drive on her new intel Macbook in her portable account. Trouble is that the network drive is only available on the intranet. So when she is on the road, it take the Macbook very long 3-4 minutes before it let's her log in.
    Simply I thought to remove the drive on her macbook through the system preferences -> account -> login items. However the "login Item" GUI is very slow to respond and if it respond it does not let me remove the network drive. I tried this both on the intranet and off the network.
    I tried to remove the mounted drive at start up through the workgroup manager, but it does not show up there.
    So I thought that I try to use netinfo on the local machine. But I can't find where mounting info is stored in a mobile account. I thought it would be in the local @ localhost or should I connect to an other DB?

    The login items are not stored in Netinfo, they are stored in loginwindow.plist in the users Library/Preferences. You can either remove the entries for the server or simply trash that file and let a default one get recreated.

  • How do I determine what is using the most memory.

    The hard disk memory is filling up and I was wondering what is the best way to determine what is using the most memory. Is there a way to show a graph of how the memory is used. Like on my ipod. When I am checking the memory, it will show how much is music, and how much is applications and so on.
    Also, I seemed to have lost the "all movies" in the list to the left when the hard disk is opened. It still shows the all imagess, and all documents but the all movies is gone.
    Thank you for any help
    Marco

    Try Grand Perspective or OmniDiskSweeper - CNet Downloads or MacUpdate.
    Just for future reference space on a hard drive is called, "storage," not "memory."  Memory refers to the installed RAM in your computer.
    Open Finder Preferences from its Finder menu.  Click on the Sidebar icon in the toolbar.  Check the box for your missing item.

  • In OLS, how to determine the list of labels a user is allowed to use?

    subject says it all; we have determined how to determine ALL labels available, but how do we filter it via existing lbac tables to show the labels the current user (either direct or via proxy) can use?
    thanks, alan

    Hi there,
    maybe these views do help:
    http://st-doc.us.oracle.com/10/102/network.102/b14267/admpriv.htm#i1012870
    Thanks, Peter

  • How to delete an operation from order using the bapi

    Can somebody please tell me how to delete an operation from order using the bapi
    BAPI_ALM_ORDER_MAINTAIN.
    Following was the test data for the BAPI.
    000000 OPERATION DELETE 0000040052810070
    000000 SAVE 0000040052810070
    Even I tried entering the operation table. The BAPI control ends fine, but when I check the order using IW32, the operation still exists.
    So, can you please tell me where Iam going wrong.

    Hi Subash Mohanvel,
    Check bapireturn parameter of the bapi BAPI_ALM_ORDER_MAINTAIN after execution of the code , and if there is no error message in the return table then call bapi_Transaction_commit.
    Unless you call this database saving of the records/values will not get reflected in the system.
    Hope that helps.
    Regards
    Kapadia
    ***Assigning points is the way to say thanks in SDN.***

  • How to determine the IPS throughput using Cisco ASA 5500 IPS Solution?

    Hello there!
    I´ve been desinging a solution to protect de Server Farm and I intend to use the ASA 5500 series with AIP-SSM module. There´s any tool to determine the real throughput that I need? I mean, how to determine the performance (Firewall + IPS  throughput), what main points I should consinder?

    If the server farm is running production levels of traffic today you can get statistics off a variety of networking devices passing the existing traffic. Switches, routers and firewalls all count every byte of traffic they pass. There are plenty of tools that can gather this traffic into tables via SNMP too, such as MRTG.
    Do not average your traffic over too great a time peroid, you will miss busy hour peaks. At most, use 5 min averages.
    - Bob

  • How to determine the patch number used (installed using runInstaller)

    Whilst it easy to find the patch number installed using opatch by using the lsinventory argument.
    Is there a way to find patch number for a patch applied via runInstalled?
    META-INF/MANIFEST.MF from platform/iam-platform-kernel.jar,gives the following:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 19.1-b02 (Sun Microsystems Inc.)
    Product-Version: 11.1.1.3.0
    Build-Number: 11.1.1.3.0.0.0
    Built-By: aime1
    Build-Tag: Build_11.1_1_3.0_0_0
    Built-at: 05/02/2011 06:46
    Version: 11.1.1.3.0
    Build-Label: IAM_11.1.1.5.0_GENERIC_110502.0500
    Build-Transaction: NONE
    But I need the exact patch number, eg, p1234567.
    Anyone know where to find this information?
    The system has been patched from 11.1.1.3 to 11.1.1.5
    I am looking for the patches used for WLS, SOA and OIM.
    Regards
    Hanif

    Another way to get it is:
    SELECT XSD_CODE,XSD_VALUE FROM dev_oim.XSD WHERE xsd_code='XL_ADE_LABEL';
    Check Note: 1247564.1 for 11.1.1.3 and 1360009.1 for 11.1.1.5 for builds to patch mapping. Check Note:1299977.1 for how to determine build numbers.
    For WLS you can use: http://docs.oracle.com/cd/E13222_01/wls/docs81/admin_ref/clic.html
    For OIM as mentioned above
    For SOA: $mw_home\Oracle_SOA\bin\soaversion.cmd (or soaversion.sh) to know the SOA version or
    SELECT version, status, owner FROM schema_version_registry where owner = 'DEV_SOAINFRA';-Bikash

Maybe you are looking for

  • Data recovery from dead Mac?

    Hey people, Sorry if this isn't quite the right place to post but thought it would get best results. My Mac (PowerMac G5) died the other day - some sort of spillage on the logic board etc, means that the repair will be lots of money, I'm therefore, b

  • Currency type 10,30 and 00 need to extract data from R/3 to BI

    Hi Experts, I am working ECC6.0 version with BI 7.0, I have a issue, when I extracting data from R/3 data source (0FI_AP_3) only currency type 10 comming but I need currency type 30 and 00 also.... when I check in data source abap code it was hard co

  • Inbound Idoc error

    Hi , I am getting error in Inbound idoc as follows "CC. .EX.593 does not exist" when i go to BD 87 and process it says "order is not valid for making status changes ". can some one please guide how to solve this  error "CC. .EX.593 does not exist"? T

  • RAM or GHz?

    i was just wandering what was more important...more RAM or more GHz?

  • Puzzled by the redefinition of the methods in java.util.Set

    Hi all, I don't understand why those methods in java.util.Set redefined since their counterparts have alrealdy been defined in java.util.Collection and java.util.Set extends java.util.Collection. I agree to redefine boolean add(Object o) because its