Oracle Primary key error on a sequence number generator

I have a table called table 1 and I am trying to insert a few values in this table and i am constantly getting bogged down by a primary key error. Strange thing is this primary key called "ID" on the table is a sytem generated sequence value number. The error is
"ORA-00001: unique constraint (Schema1.LICN_PK) violated"
Any idea?
I will post the structure of the table below and my SQL statement as well.
Table structure:
CREATE TABLE schema1.table1
ID NUMBER(12),
LITM_ID NUMBER(12),
PROG_PROGRAM_CD VARCHAR2(2 BYTE),
SCHED_NBR VARCHAR2(3 BYTE),
SCHD_VERSION_YR NUMBER(4),
SCHD_VERSION_NBR NUMBER(3),
LITM_LINE_ITEM_NBR VARCHAR2(3 BYTE),
SLIN_LINE_ITEM_ID NUMBER(12),
COND_CD VARCHAR2(15 BYTE),
COND_TYPE VARCHAR2(1 BYTE) DEFAULT 'O',
COND_TEXT VARCHAR2(240 BYTE),
DERIVE_COMPRSN_IND VARCHAR2(1 BYTE),
DISPLAY_SEQ_NBR NUMBER(5),
SEVRTY_CD VARCHAR2(1 BYTE),
OVRRDBL_IND VARCHAR2(1 BYTE),
NEVER_OVRRDBL_IND VARCHAR2(1 BYTE),
CREATED_BY VARCHAR2(8 BYTE),
CREATED_TMST DATE,
MODIFIED_BY VARCHAR2(8 BYTE),
MODIFIED_TMST DATE
CREATE UNIQUE INDEX schema1.LICN_PK ON schema1.table1
(ID)
NOLOGGING
TABLESPACE INDEX_STAT1
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 128K
NEXT 128K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE UNIQUE INDEX schema1.LICN_UK ON schema1.table1
(LITM_ID, COND_CD)
NOLOGGING
TABLESPACE INDEX_STAT1
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 128K
NEXT 128K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
NOPARALLEL;
Table structure ends
****************Insert statement*************
insert into table1
(id,
litm_id,
prog_program_cd,
sched_nbr,
schd_version_yr,
schd_version_nbr,
litm_line_item_nbr,
slin_line_item_id,
cond_cd,
cond_type,
cond_text,
derive_comprsn_ind,
display_seq_nbr,
sevrty_cd,
ovrrdbl_ind,
never_ovrrdbl_ind,
created_by,
created_tmst,
modified_by,
modified_tmst)
values
(LITM_ID_SQ.nextval,
5678,
'28',
000,
2005,
1,
'007',
28,
'0008',
'E',
'No advance',
'N',
80,
'M',
'N',
'Y',
USER,
SYSDATE,
USER,
SYSDATE);
*************End***********************
Any idea why the error is coming up and any way to resolve it. I checked the max sequence number value and kept running it for a while and then tried to run my insert statement but no luck yet.
Please help!!!

Hi,
Are you tring to do the same insert more than once?
The sequence for ID will be generated and there will be no problem with that.
But what about UNIQUE INDEX schema1.LICN_UK ON schema1.table1(LITM_ID, COND_CD)?
you are trying to insert the same values again into those columns... and there is a unique index.
Test your insert by dropping the unique index LICN_UK
DROP INDEX schema1.LICN_UK;Now it will work. But if you need the uniqueness, you need to insert different values for those columns each time you insert.
G.

Similar Messages

  • Generating a Primary Key WITHOUT using a Sequence Number

    Hi Everyone:
    I am trying to generate a primary key without using a sequence number or row count. What the user wants is the maximum value of the highest primary key already in the row set plus 1.
    For example, this is a Oracle Table (eg. named BatchSubmit) used to initiate batch job submission, and the primary key is an integer named "Runcard_Number". If there are 4 rows in this table and the Runcard_Numbers are 2, 6, 8 & 12, then the next generated Runcard_Number would be 13.
    I have looked throughout this forum and see how to generate numbers using a DBSequence, but the user does not want that. The numbers mean something to them, and they don't want them randomly assigned other than the max in the rowset plus 1. To do it in SQL it would be - select max(Runcard_Number) + 1 from BatchSubmit;
    I have been looking at using a hasnext loop and moving the maximum value to the new Runcard_Number, but I am very new to JHeadstart/JDev and I do not know where to put this. I am assuming the BatchSubmitImpl.java, but I'm not sure where to put it or which method to utilize
    I would appreciate any assistance.
    Mary
    U o Windsor

    Mary you're in luck, 'cause, I've been playing with the same thing, these days and found that..
    You can do that in two ways (that I know):
    - by calling a stored function that does max+1 (you can look it up in Dev's guide for Forms&4GLDevs 10g chapter 25.5 Invoking Stored Procedures and Functions)
    - by calling hardcoded or dinamicaly written statement, that does the same
    public Number callStatement(String stmt)
    Number id = new Number(0);
    Row idRow = getDBTransaction().createViewObjectFromQueryStmt(stmt).next();
    if(idRow != null)
    Object o = idRow.getAttribute(0);
    if(o != null)
    if(o instanceof Number)
    id = (Number)o;
    else
    throw new JboException("Conversion error!");
    return id;
    You should call it in
    protected void doDML(int operation, TransactionEvent transactionEvent)
    switch (operation)
    case DML_INSERT:
    // call here
    super.doDML(operation, transactionEvent);
    break;
    case DML_UPDATE:
    super.doDML(operation, transactionEvent);
    break;
    case DML_DELETE:
    super.doDML(operation, transactionEvent);
    break;
    Enjoy!
    S. Julijan

  • Application Translation Not Working - Primary Key Error

    I had created an application translation to Spanish but it wasn't displaying my Spanish translation. I was going to try and redo it so I tried creating a new mapping and then seeding the translatable text. I got a primary key error "ORA-20001: Seed insert error: WWV_FLOW_TOPLEVEL_TABS.TAB_TEXT ORA-00001: unique constraint (FLOWS_030100.WWV_FLOW_TRANSLATABLE_TEXT_PK) violated".
    I went in and deleted what I had done through APEX for this app and tried to create a new application but still get the primary key error when I try to seed it. I gave it a new translated application ID but that doesn't seem to help. Anyone have this problem or no of the reason I'm having this issue?
    Thanks.

    Hi David,
    Thanks for reporting this. This was an interesting problem to solve.
    As it turns out, it was a logic error in Application Express (i.e., bug). When deleting a translation mapping, the associated strings in the translation repository would be deleted for that application, but if and only if you had actually published the application.
    I think this is why you could never get Spanish working properly - you had never actually published the application the first time. So I'll bet what you did is deleted the original mapping, then you recreated the mapping for the same language but with a different translated application ID. Since you had never published the application from the original translation mapping, and there were orphaned rows in the translation repository, you encountered a "collision" when you tried to seed the second time with the different translated application ID.
    Your action of deleting rows from WWV_FLOW_TRANSLATABLE_TEXT$ cleaned up these orphaned rows. As you stated, this isn't recommended to perform DML on the underlying APEX tables. A couple alternatives could have been:
    1) Before deleting the translated application mapping, actually publish the application and then delete the mapping.
    2) If you had deleted the mapping already, you could recreate the mapping for the same language and with the original translated application ID. Then, publish the application and then go back and delete the mapping.
    I realize all this sounds crazy. But it was only an issue because you had not actually published the application. Not your fault, though, as this is a bug in APEX.
    This bug will be fixed in Application Express 4.0. This way, you won't have to worry about if you published or didn't publish. The orphaned rows will be cleaned up when you delete a mapping.
    Thanks again for reporting this.
    Joel

  • JBO-25013: Too many objects match the primary key oracle.jbo.key error

    I have implemented dependant dropdown in ADF.
    My page contains two dropdowns First one is independant and values in the second one is populated depending on the value chosen in the first one.
    I have used simple selecy query in my view objects and one entity object.
    but while running the page i am getting the error JBO-25013: Too many objects match the primary key oracle.jbo.key
    please help me with how to debug the error.

    Hi,
    Basically that error means exactly what it says. The primary key of your parent VO isn't unique and too many items in the parent VO have the same primary key.
    Post the sql here for your two VO's, and let us know what the primary key is.
    Are you using setCurrentRowWithKeyValue as the VO method to set the current row, or are you using setCurrentRowWithKey?
    -Chris

  • LOV gives "Too many objects match the primary key oracle.jbo.Key" error.

    Hello,
    I'm using JDeveloper 11.1.1.3. I have created 2 VO's which are related to the same EO. In one of the views i added a list of value (combo box with list of values) to an attribute. In my page, i'm using the first view that doesn't have the LOV. Also in my page there is a button with a popup in which i'm using the second VO to list the values of the attributes and filter a table (which is also in the popup). Initially, when i press this button all rows are viewed in the table in the popup. However, when i try to filter the table using the LOV i'm getting an error:
    Too many objects match the primary key oracle.jbo.KeyAny ideas?
    Mohamed

    Hello again,
    Thank you all for your reply! I solved my problem. Apparently it wasn't a problem with duplicate data nor wrong primary key! I was implementing the LOV approach wrong. I was creating a 'List of Value' in my VO and dragging the attribute from data control as 'Select one Choice'. I was doing this because i thought i had to declare a type before i can use it in my data control. As i concluded, i should either create it in my VO and not use the default SOC option. Or, i could not create a LOV and use the default JDeveloper SOC option.
    Thanks again for your help.
    Mohamed.

  • Primary Key Error

    I imported some tables from a CSV file. When I imported, I chose to use the original Primary Key and generated a new sequence for the primary key's trigger. Now, Whenever I use the forms to add a new record to the table, I get the following error message:
    ORA-00001: unique constraint (MOBILE_INV.TBL_NEXTELPHONE_PK) violated
    What should I do?
    Is there something wrong with the trigger?
    reate or replace trigger "bi_TBL_NEXTELPHONE"
    before insert on "TBL_NEXTELPHONE"
    for each row
    begin
    if :new."PHONEID" is null then
    select "TBL_NEXTELPHONE_SEQ".nextval into :new."PHONEID" from dual;
    end if;
    end;
    Is there something wrong with the sequence? (Here's my current sequence)
    Min Value 1
    Max Value 999999999999999999999999999
    Increment By 1
    Cycle Flag N
    Order Flag N
    Cache Size 20
    Last Number 21

    Hello,
    It looks like you already had some records in your table before you created the sequence and triggers. Recreate the sequence and use as Min value the value +1 of the max in your table.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • ORA-02266: unique/primary keys - error while using Exchange Partition

    Hi All,
    While using EXCHANGE PARTITION statement as given below,
    ALTER TABLE SOURCE_TABLE EXCHANGE PARTITION PRT_EXCG_PRTN WITH TABLE TARGET_TABLE
    we are getting this error,
    ORA-02266: unique/primary keys in table referenced by enabled foreign keys
    However, there are no tables have foreign keys referring this TARGET_TABLE, we checked this by referring
    USER_CONSTRAINTS table, it has only primary key and NOT NULL constraints.
    SELECT * FROM USER_CONSTRAINTS WHERE TABLE_NAME like 'TARGET_TABLE';
    We are using the following version,
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE     9.2.0.6.0     Production
    TNS for IBM/AIX RISC System/6000: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    Is it due to any error in our end or it could be a bug in Oracle and should we go for any patch updation ?
    Please guide us to resolve this error as soon as possible, thank you.
    Regards,
    Deva

    *** Duplicate Post ***
    Please Ignore.

  • Composite Primary Key Error

    I am using Sun One App Server PE8.
    I have a class with a composite primary key field. When I place the following method in my Home interface:
    public MyEjb findByPrimaryKey(MyEjbPrimaryKey pk) throws FinderException, RemoteException;I get the following error when deploying:
    ejbFindByPrimaryKey(EjbPrimaryKey) is already defined in MyEjb1368202910_ConcreteImpl
        public MyEjbPrimaryKey ejbFindByPrimaryKey (MyEjbPrimaryKey key)However, If i remove this method from the Home interface, i get the following error when running the verification tool:
    Error: No single arg findByPrimaryKey(PrimaryKeyClass) method was found in home interface class [ MyEjb ].However, I can still deploy the EAR successfully.
    Another related symptom of this problem, is if I include the following method in my Home interface:
    public MyEjb findByPrimaryKey(String pkField1, String pkField2) throws FinderException, RemoteException;And call this method, I get the following exception at runtime:
    java.rmi.RemoteException: Bean class for ejb [MyEjb] does not define a method corresponding to [Home] interface method [public abstract MyEjb MyEjbHome.findByPrimaryKey(java.lang.String,java
    .lang.String) throws javax.ejb.FinderException,java.rmi.RemoteException]I get these same problems with all EJB's that use composite keys. Has anyone else had this problem?
    Thanks
    toby

    This is a CMP bean, with no ejbFindByPrimaryKey in the Bean class. Below, i have included the Home interface and the Bean class (with unneccessary code removed)
    Thanks for looking at this for me.
    BEAN CLASS
    package lands.mc.bus.prod;
    import java.rmi.*;
    import java.util.*;
    import javax.ejb.*;
    public abstract class TopoMapBean implements EntityBean
      private EntityContext entity;
      public TopoMapBean()
      public void setEntityContext(EntityContext ctx)
        entity = ctx;
      public void unsetEntityContext()
        entity = null;
      public TopoMapPrimaryKey ejbCreate(String mapName, String mapNumber, String mnemonic,String edition, String scale)
      throws CreateException
        // call setters...
        return null;
      public void ejbPostCreate( String mapName,
                                                   String mapNumber,
                                             String mnemonic,
                                             String edition,
                                             String scale )
      removed set/get methods
      public void ejbStore() {}
      public void ejbLoad() {}
      public void ejbActivate() {}
      public void ejbPassivate() {}
      public void ejbRemove() {}
    }HOME INTERFACE
    package lands.mc.bus.prod;
    import java.rmi.*;
    import java.util.*;
    import javax.ejb.*;
    public interface TopoMapHome extends EJBHome
      public TopoMap create(String mapName,
                            String mapNumber,
                            String mnemonic,
                            String edition,
                            String scale
      throws CreateException, RemoteException;
      public TopoMap findByPrimaryKey(String mapNumber, String edition) throws FinderException, RemoteException;
    // doesnt deploy with this signature
    //  public TopoMap findByPrimaryKey(TopoMapPrimaryKey pkey) throws FinderException;
    // have to use this method instead of findByPrimaryKey(String, String) above
      public TopoMap findTopoMap(String mapNumber, String edition) throws FinderException, RemoteException;

  • Too many objects match the primary key error

    Hi
    I have a detail table with a primary key consisting of 3 fields. I add a new row to the table and it is OK but when I try to add another record to the table it says that
    JBO-25013: Too many objects match the primary key oracle.jbo.Key[null 123 null]. I want to add two or more rows to the table at once and after that I fill the rows and submit the form. What should I do?
    Anyway, I am using JDev 11.1.1.4
    Thanks
    Ferez

    Hi ADF 7(!),
    Many thanks for the links. My problem is exactly the same problem mentioned by user5108636 at the bottom of the thread which is not answered yet, i.e.,
    "How do I prevent the multiple PK with null, if the user just keeps click 'CreateInsert' after 'CreateInsert' "
    Is it possible to defer the primary key validation to commit time? I don't know why the framework checks for the unique key constraint immediately after inserting the row and before committing it (I have created a new thread for this here: How to defer the primary key validation to commit time
    Maybe a workaround such as disabling the create button after pressing it and re-enabling it again after commit or rollback would work, but I do not want prohibit the user from creating multiple new rows at once, filling them all together, and committing them at the same time.
    Thanks,
    Ferez

  • Sequence number generator

    First of all, my sincere thanks to Mike, Nick and others for responding.
    Is there a way to generate sequence numbers like 1,2,3,4,5,etc?
    Balaji

    Within the context of the run of a process, Add Message Id will add such numbers to each record it receives. This is obviously not quite the same thing as a DB sequence number, where the sequence is driven by the entry of data into the table.
    As Nick said, some customers add a variable (for example a number value added by Add Number Attribute that is externalized and set at runtime) to the Message Id to make a unique id across runs but this is something of a workaround. Also if you split records within an EDQ process these split records will be derived from the same Message Id so will share it. Finally, there is no cross-run context for message ids, so if the same record is pushed through the process again it may well have a different message id as EDQ simply allocates these in the order in which it processes the records.
    EDQ does include a Hash Key Generator processor for where a 'sticky' record identifier that is derived from data is needed.

  • Error in planning sequence- 'Cannot generate combinations of multiprovider'

    Hi Gurus,
                       I am facing a problem while executing my planning sequence in modeller. Aggregation level contains all characteristics in multiprovider. Multiprovider contains actual and planned cubes. Filter is based on product name in modeller. Planning function is copy. Characteristics to be changed in calyear. But the error generated while executing planning sequence is
    'To value - 1 for subprocess 1 produces following errors.
    'Cannot generate combinations for multiprovider'
    'Cannot generate combinations in step 00'.
    I would really appreciate the time and effort which will be taken by gurus.
    Thanks in advance.
    Jerry.

    Hi,
    1  Before                 Unchanged   2007                 300,00                  2,000                 600,00  IC_MODEL
    1   After                   Unchanged   2007                  300,00                  2,000                 600,00  IC_MODEL
    2  Reference Data                         2007                  300,00                  2,000                 600,00  IC_MODEL
    2007 is the calyear in the actual cube ic_model.
    in copy function i have specified that 2007 should be changed to 2011 and ic_model(actual cube) to planned cube.

  • Primary Key in tabular form is not a number

    I created a table called tblRegions.
    The primary key is RegionCode(VarChar2) - example - USA.
    I then tried to create an updateable Tabular Form using tblRegions, but it won't let me choose the primary key as an updateable field.

    O.K.
    1. create a trigger which will populate a real primary key out of a sequence - search internet
    on triggers and sequences in oracle
    2. use this primary key for tabular form processing
    3. if you need a manually entered pseudo (fake) primary key, you can handle this column
    as any other - tabular form will not complain about it
    4. you may create a constraint on your table, which will take care this column is allways
    populated and unique - this is not the nicest way since it involves processing and the errors
    you gat may not look user friendly. However, this is the most secure and easiest way -
    you don't need to write any code on the application side to handle eventual errors.
    Search internet on constraints.
    5. you may decide to create a manual validation process to fetch the eventual errors
    before you commit the changes to the database. This forum is full of the threads on
    the topic "tabular form" and "manual creation of tabular forms". If you are new to apex,
    you should stay away from that for the first (this is only my opinion).
    Denes Kubicek

  • JBO-25014: Another user has changed the row with primary key oracle.jbo.Key

    Hi,
    I am developing a Fusion Web Application using Jdeveloper 11.1.2.1.0. I have a home.jspx page that has a ADF table built on efttBilling View Object. . When you click on one of the rows in the table, it will take you to detail.jspx where you can edit the row and save. When 'save' is clicked, stored procedures are executed to update/insert rows into few tables , and then go back to home.jspx where you need to see updated content for that row.
    To get down to the exact issue, updates are made to the tables on which the efttBilling View Object is built using a stored procedure. Once this is done, I am trying to requery view object to see new content. But I keep getting JBO-25014: Another user has changed the row with primary key oracle.jbo.Key error. Following are the approaches I followed to query new results:
    a. Executed Application Modules Commit Method. Created 'Commit' Action binding and tied it to homePageDef.xml. Called this binding from a view scope bean.
        BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
         OperationBinding operationBinding = bindings.getOperationBinding("Commit");
        Object result = operationBinding.execute();
       if (!operationBinding.getErrors().isEmpty())
        return null;
    b. Marked 'Refresh on Insert' , 'Refresh on Update', 'Change Indicator' checkboxes for all the attributes in the entities associated with efttBilling View Object.
    c. Tried to Requery View Object. Created a refreshViewObject method in Application Module Impl.java file, exposed this method to the client interface and created a invokeMethod Action binding in home.jspx
    Code in Application Module:
      public void refresheftTransactionsforBillingAccountViewObj1View()
        System.out.println("In eftTransactionsforBillingAccountViewObj1");
      findViewObject("eftTransactionsforBillingAccountViewObj1").executeQuery();
    Code in view scope bean
            DCBindingContainer bindings =
           (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
            OperationBinding operation =
            bindings.getOperationBinding("refresheftTransactionsforBillingAccountViewObj1View");
            operation.execute();
    I have searched web, ADF forums and tried methods suggested in there but no sucess.
    Could anyone please provide some insight in this issue. I have been battling with this since quite some time. I can provide you with the log file too.
    Thanks!
    Shai.

    What code does your Commit method have .. can you try using the Commit executable from the AM itself instead ?
    Also -
    Shai wrote:
    'Change Indicator' checkboxes for all the attributes in the entities associated with efttBilling View Object.
    which all attributes you set this property for . it should just be for History columns as such.
    Did you also check if this could be your scenario ?
    Decompiling ADF Binaries: Yet another reason for "JBO-25014: Another user has changed the row with primary key orac…
    OR
    JBO-25014: Another user has changed the row with primary key oracle.jbo.Key
    OR
    Another user has changed the row with primary key -Table changed externally
    Message was edited by: SudiptoDesmukh

  • Problem in universe while joining as the primary key is NUMBER

    Hi,
    I'm trying to join TEST.SUMMARY.NUMBER to TEST.RESPONSE.FOREIGN_KEY. The problem arises from the first of these, as the primary key is in a column NUMBER. Stupid? Definitely. Rename? Not an option.
    I think NUMBER is seen as a magic word (type), and once parsing (for example in "edit join", I get the message "Exception: DBD, ORA-01747: invalid user.table.column, table.column, or column specification State: N/A" .
    Normally putting " around the word would do the trick ("NUMBER"), but is seems universe designer removes those during the parsing (?). I come to this conclusion, because if I choose the join line from the graphical menu, and then write to the function line TEST.SUMMARY."NUMBER"=TEST.RESPONSE.FOREIGN_KEY (and press enter), the " are removed. (To get the NUMBER's to the report is good, though, by creating a variable with TEST.SUMMARY."NUMBER")
    The database is oracle, and universe is on BusinessObjecs XI 3.1.  I've tried to join in the edit join, create a derived table and use ANSI92. No good so far. I also tried to join the fields on report (WebI), but the result was always too many or not enough data from one of the tables. Merging dimensions leads to other problems. I was checking on JOIN_BY_SQL as well as PARSE_SELECT_IN_JOIN in universe parameters, but at glance I didn't find how to solve this with them.
    Any ways to force the join, or achieve the data from the both tables in one report table otherwise?

    Well, I managed to sort this out somehow by using custom SQL in the Web Intelligence report, and joining the tables there with
    LEFT JOIN TEST.RESPONSE
    ON TEST.SUMMARY."NUMBER"=TEST.RESPONSE.FOREIGN_KEY
    Smells like duck tape, but it's  working at least somehow. I guess the custom SQL is passed to some lower level, and so the universe-automatic-whatever doesn't handle it in the fly.
    Any other ideas?

  • Primary key population through sequence using SQL loader

    Hi Experts,
    Is it possible to populate primary key column using a sequence while trying to load the data through SQL loader?
    Requirement is like that..
    Flat file contains 4 fields and I need to populate 5th Column which will be primary key and will be from one sequence available in database.
    Regards,
    SKP

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/ldr_field_list.htm#sthref1274
    Alternatively, you could load data, then populate the required column with unique values using sequence and then add primary key constraint.

Maybe you are looking for

  • Compressor Batch Window Will NOT open

    Please help. I have read some posting on this subject but I cannot get Compressor Batch window to open. I have un-installed and installed following the Apple instructions several times, updated the software, all to no avail. I need this work and I am

  • ADF Table - Copy Content

    Hi guys, I have a "adf:table" and I need to copy the content of table to external application as: Microsoft Word, Notepad. I found this sample [http://one-size-doesnt-fit-all.blogspot.com/2011/04/aftable-restoring-basic-browser-copy.html] but this it

  • Recovering un-saved files from Pages 09.

    I have been doing a project on Pages 09 on my MacBook Pro and suddenly Pages 09 closed on me without warning and then another window opened asking me if i would like to re-open. So i re-opened Pages 09 and all my work had gone as i didn't save my wor

  • Where to get new cord for North American wall outlet (110V) for macbook pro 2011?

    Hello, all. I work in Korea, bought a macbook pro here.  It's really great but I have a problem -- I need a standard north american, three pronged, power cord which will run from the wall outlet to the 60v mag adapter, as the wall outlets here are di

  • HT201415 iphone 3GS showing no service, please help!!

    My iphone 3gs is showing "no service" tried everything please help!!!