Second sim with same number

I use my phone a lot for work, and want to leave it permanently in the van, can I have a second sim on the same number ?

Orange used to offer exactly this with their "Single Number" facility, but it was never opened up to EE users, and finally closed down at the back end of last year. For what it's worth, the only other network to have ever offered similar was Vodafone with "multi-SIM" but that never let you use data from the second SIM and closed many years ago. As others have suggested, a GSM-divert is now the closest you'll get. You could also use EE "pocket landline" with the "one to many" option if you want multiple phones to ring with incoming calls at the same time. Details at http://ee.co.uk/business/small/connecting-your-business/pocket-landline

Similar Messages

  • I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    Hello Bethanygrace_m7,
    Thank you for contacting Apple Support Communities. You can take a look at this article about transferring content from your old iPhone to a new one:
    Transfer content from an iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Here is another thread from the Communities about migrating data from an old iPhone to a new one:
    Migrating data from old to new iPhone?: Apple Support Communities
    https://discussions.apple.com/thread/2038778
    Regards,
    Jeff D.

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • More Table Blocks in 11g with same number of rows as in 9i

    I was using SQL performance analyzer to compare performance difference between 9i and 11g databases.
    For this purpose I generated a trace file in 9i database and used it to build STS in 11g database.
    After runing two trials and comparison the report showed performance regression (comparing "buffer gets") while using following SQL statement
    *"SELECT * FROM EMP";*
    There were total 14 rows in emp table in both databases( i.e 9i and 11g)
    There was no plan change for above SQL statement in 11g database but still there was performance regression in 11g.
    After querying dba_tables view for number of blocks in emp table on both sides i found that EMP table in 9i database had 1 block where as in 11g emp table had 5 blocks (Even after using alter table emp move;)
    I am unable to understand why emp table has more number of blocks in 11g with same number of rows as in 9i emp table?

    user8916506 wrote:
    Below query was executed in 9i database.
    SQL> select extent_management,initial_extent,allocation_type from dba_tablespaces where tablespace_name='SYSTEM';
    EXTENT_MAN INITIAL_EXTENT ALLOCATIO
    LOCAL 65536 SYSTEM
    Results shows that SYSTEM tablespace in 9i database is locally managed.
    Where as results of below query from 11g database is indicating that users tablespace in 11g is also locally managed.
    SQL> select extent_management,initial_extent,allocation_type from dba_tablespaces where tablespace_name='USERS';
    EXTENT_MAN INITIAL_EXTENT ALLOCATIO
    LOCAL 65536 SYSTEMGood to see that you also picked up the allocation_type at the same time.
    So you have shown that the discrepancy between 9i and 11g isn't down to the difference in extent management.
    Are there any other differences between the tablespaces when you compare 9i system with non-system, and 9i system with 11g non-system ? (Hint - we have an anomaly with space allocation.)
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Author: <b><em>Oracle Core</em></b>

  • Create Equipment with same Number rang at Diff Equipment Catagory

    Hallo Guys,
    client bymistake created some equipments which are actually PRT with catagory M ( Machine)
    now they made deletion indicator to that and inactive the part and now want to create same machine as a PRT with same number range interval
    as that of made at machine, but as per std system is not allowing to create duplicate records.
    How to achive this ?
    Regards,
    Rip

    If no Equipments were created after the Deleted Equipments then you may have an option.
    Tcode OIEN
    Go to Number range interval, Then the Current number  can be changed as under. Reduce this Current number by those many equipments. Then new equipments will have the same numbers of the deleted equipments
    You should do it in trial servers and if suits to you then you can decide to go ahead. You should be prepared to have filters in Selection-screes to avoid the DLFL INAC equipments appear in the reports
    Jogeswara Rao K

  • PR transfer from R/3 to SRM with same number

    We are transfering R/3 PR's to EBP. We want keep Number of Shopping card same as PR number in R/3
    It is always picks up Internal Number range for the shopping card in SRM.
    We have only kept external number assignment for shopping cart transaction type, then in SLG1 it gives error "Internal number range is missing for transaction type. Inform syst. admin"
    Any other method to keep Number of Shopping card same as PR number in R/3?
    Regards,
    NNK
    Edited by: Nitin Khajindar on Apr 23, 2008 5:53 PM

    Hi,
    We are using the SRM 5.0 with PPS ( Procurement for public sector) industry specific component. We transfer the PR's from ECC to SRM and we have same number in the both the systems.
    PR number in ECC is the SRM shopping cart number may be this is public sector sector specific functinality but this is available in SRM 5.0
    Send me your information, I can send you my configuration print screens to you.
    Thank you
    Sreedhar Vetcha

  • Multiple contacts with same number?

    Hello,
    I have multiple contacts in my address book with the same number, for instance "Mom" or "Grandma" or "Mrs. Smith."  Is there a way to ensure that my iPhone 4 chooses the assigned photo and name to each contact? 
    I have all three under "All Contacts" but also have only one under a sub-group that is my primary contact group.  Perhaps my problem is syncing via MobileMe? Doing that means I have All Contacts as well as my sub-group on the iPhone; that may be confusing it?
    Thanks for any help!

    If you have multiple contacts have the same number the iPhone makes a random choice. There is no way to force one over another.

  • REPROCESSING AN IDOC WITH SAME NUMBER

    hi ppl,
    i hv sent an idoc to the inbound system with a  generated idoc number.
    and now i had added some fields fo the same idoc and have to resend  it to the same inbound system
    with the same IDOC NUMBER.
    how can we RESEND AN IDOC with SAME IDOC NUMBER.
    thanx very much...
    regards,
    RAVI.

    >
    ChakravarthiPonnam wrote:
    > with the same IDOC NUMBER.
    > how can we RESEND AN IDOC with SAME IDOC NUMBER.
    Was that IDOC ended with status 53? If so then I donu2019t think if you could able to edit the segments and reprocess straight forward.
    If that IDOC has been ended with Error then just edit this IDOC(WE02>Double click on segment then from menu "Data record>change") now the status has been change to 69. then just reprocess with BD87.
    NOW, if your IDOC has ended with 53 and you want to edit this then a minute work-around we have to do. Like first change the IDOC status from 53 to 69 then do the same like for error one,
    Cheers
    Amit.

  • Retiming with same number of frames

    Hi (couldn't find this) - If I want to convert my source video to a new frame rate -- but keep exactly the same number of frames -- what is the best way to do that?
    Do I just set my desired frame rate in the Encoder tab and then set duration to 100% in the Frame controls? Does that give me the just the original frames in the source, but at a different speed?
    Thanks, PH

    OK -- I figured it out!

  • With new ios 7 my iphone rejects 1st call and allows a second one from same number right away, how can i fix this? i already changed sim card

    Need help on this, it's really annoying for me and the person that calls me, as they need to do a second call so that my phone rings, and it also looks like i rejected the first one, not good for business

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings

  • Multiple people with same number???

    OK i have another problem that i need some sort of system for and I'm looking for suggestions from all of you. What do you guys do for multiple people with the same phone #. For example i have contact info for my aunt, uncle and cousins that all have the same home #. I have multi entry's because i want their birthday info in cal plus their cell phones. But I hate the fact that i have to scroll Thu 4 people with one # and I'm not sure how it picks who to display when someone from the home # calls me. I guess it isn't a huge problem but thought i would throw it out to see what others do. Feedback....
    CC

    I have a couple of contacts that share a phone number. Pretty much the same reasons as yours. When I get a call from the shared number, then it will say "John Doe or Mary Doe calling" Or some thing like that.
    I don't think there is any way around scrolling through each contact since they all have distinct info and are seen as separate

  • IMessage cannot activate after moving to new operator with same number (MNP)

    Hi
    I recently started using a new mobile operator, but kept my number from the previous operator.
    After endless attempts at activating iMessage, I always get "Cannot activate iMessage".
    I tried endless things: completely wiping out my device and starting from scratch without restoring from backup, working on Wi-Fi, working on cellular, changing DNS address, logging out of iMessage on my Mac. I have also verified that I am able to send text messages to international destinations.
    I'm using an iPhone 4 with iOS 6.1.3.
    Please help! I am desperate here.
    Thanks

    Hello. I had exactly the same problem, a few weeks ago I switched from Telcel operator to Movistar Mexico and iMessage / Facetime were unable to activate. The point is that in some plans, Movistar does not allow to send "international" SMS , even the fact that you have unlimited messages to national carriers ( within Mexico ). So you have to purchase an additional "recharge bag" starting from 30 MXN , which will allow your iPhone to send the SMS which will activate iMessage / Facetime. This was the fix ! Best regards.
    In Spanish here :
    Hola. Tuve exactamente el mismo problema, hace algunas semanas me cambie del operador Telcel a Movistar Mexico y entonces iMessage / Facetime ya no se podian activar. El punto es que en algunos "planes", Movistar no permite enviar SMS "internacionales", aun cuando tienes mensajes ilimitados a operadores nacionales ( dentro de Mexico ). Asi que lo que tienes que hacer es comprar una "bolsa adicional de recarga" que puede ser desde 30 pesos mexicanos, lo cual le permitira a tu iPhone que envie el SMS , que activara iMessage / Facetime. Esto soluciono el problema !. Saludos.

  • Install Photoshop on a second computer with same serialnumber

    I would like to install Photoshop on a second computer using the same serialnumber used erlier. Is it possible to install the programe on sereral computers using the same serialnrumber?

    If retail CS6 Serial Number then you can do licensed install on two systems same platform(Win or Mac). This depends for which platform you bought the SN for.
    Hope this answers your query.
    Regards,
    Ashutosh

  • Second battery with same problem

    I have had a new battery replaced by Apple for wearing down prematurely. I had 50 cycles and was getting 70%health. I have had this new battery for approx. 2 months and have noticed that after 20 cycles the health is declining. I am currently at 89% with only 20 cycles. I have calibrated the battery last night, reset the pram, and smc with no avail. Here are my power specs. Please suggest anything that will help. Is there something wrong with my charger ( I don't get alternating lights or anything like that)
    I do have applecare for 3 years.
    Model Information:
    Serial Number: Sony-ASMB012-3934-140f
    Manufacturer: Sony
    Device name: ASMB012
    Pack Lot Code: 0001
    PCB Lot Code: 0000
    Firmware Version: 0110
    Hardware Revision: 0500
    Cell Revision: 0303
    Charge Information:
    Charge remaining (mAh): 4815
    Fully charged: Yes
    Charging: No
    Full charge capacity (mAh): 4963
    Health Information:
    Cycle count: 21
    Condition: Good
    Battery Installed: Yes
    Amperage (mA): -1402
    Voltage (mV): 12149
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 0
    Display Sleep Timer (Minutes): 30
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: No
    Display Sleep Uses Dim: No
    Battery Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 15
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Hardware Configuration:
    UPS Installed: No
    AC Charger Information:
    Connected: No
    Charging: No

    I have a September 2007 battery with 43 cycles on it, and it has consistently been at 100% health the entire time I've had it. I don't think fluctuating health would be considered normal. I would report this to Apple and maybe get a case number. Then keep a log of what it is doing and keep track of any SMC resets and calibrations.
    It's hard to know if this is a battery problem or something else. My niece has just had to replace her battery for the 4th time, and feels there is something wrong with her original MBP that is causing premature battery failure.
    Does your charger seem to work properly? Steady amber light when charging, fully charging the battery, steady green light when not charging? It sounds like you have a fluctuating battery health problem rather than a charging problem. If it's not just another bad battery, there could be some problem with the MBP itself which is causing the battery to fail prematurely.
    However, with Applecare, it will be covered, whatever it is. A 2 month old battery should be working perfectly after just 20 cycles.
    Good luck!

  • Importing theme with same number = new theme?

    I'm adding application enhancements to production from our test database instance. So I exported the theme (#301) from the test db, then imported it to the production db. I was surprised that the Install Theme screen showed:
    Export File Version:      2007.01.08
    Exported From Application ID:      148
    Exported Theme ID:      301
    Exported Theme Name:      Harris - Blue Gray
    Install Into Application      148
    Action:      New theme will be created in application 148.
    I was surprised the Action line says it'll create a new theme, when the documentation says it will update the existing theme. I even looked in the export file and it has a line to delete the old theme. When the installation finishes, I see that Theme 301 is the current theme, plus there's now Theme 302, which never existed before.
    So I was wondering... Are my theme changes from the test instance in Theme 301? And it backed up the old theme to #302 first? Or have my changes not been applied?
    I compared them and it looks like Apex is not replacing my previous theme with the new one. I have to manually switch themes. [sigh]
    I'm running Apex V3.0.1. I did this twice to make sure I wasn't messing up.
    Thanks,
    Stew
    Message was edited by:
    StewStryker

    Gilles-
    I think your problem is likely that you have the option to stack the copy with the original turned on. First, right-click on one of these photos and go to the stacking menu. If Unstack is not grayed out then you have a stack -- select Unstack to reveal all copies.
    To change the automatic stacking of edited copies from Photoshop, when you next choose to edit a file, in the bottom left corner of the dialog is the check box for unstacking. Clear it, and that choice should "stick" until you change it again.
    Hope this helps!
    Tony

Maybe you are looking for

  • HT4061 How to track stolen ipad mini wifi?

    Can any please help me is there a possibilty to track stolen ipad. Regards,

  • Triple state checkbox

    Hi, I have scoured this forum but I can't seem to find out how to make a triple state check box bound to a database column. The checkbox should return the following values, and also pick up whatever is in the database table when the record is loaded

  • 3 topics in  Dev Cons SAP Netweaver 2004 u0096 Enterprise Portal

    Hi All, I read that the following topics form a part of the devlopment consultant EP certy exam. Please take a look at them below and let me know: <i>Are these just theoritical concepts for the exam? In KM you can do stuff through wizards as well as

  • Problems with OC4J 9.0.4 after patch - EJB

    We applied a patch over Oracle iAS 9i. Our OC4J was 9.0.4 and now is 9.0.2.4. Our web app just does not work in some functionalities. It is a standar J2EE app with EJB. One of the errors is: com.evermind.server.rmi.OrionRemoteException: java.lang.Ill

  • Is there a caching issue with DPS

    Facing a unique issue. When I am creating a folio it references to redundent files while build which are not used in the folio, and then the build does not upload to folio producer. Could there be a caching issue and how can I clear the DPS cache (No