"Copy To Oracle" failed if column sequence is different

Hello,
I am trying to use the "Copy to Oracle" function to copy data from MSSQL 2008 to Oracle 11g. Since I already go the table created on Oracle and thus, I only need to migrate the data.
But I realize that, the copying failed, due to the column sequin between source and destination is different.
E.g. Table A on MSSQL has the column (id, phone, address) but the same table on Oracle is created in the order of (id, address, phone)
It seems to me that the data copying is done with column_id, instead of column_name.
What's your suggestion to get around with the issues? I would take re-creating the table as the last resort as there are like hundreds, if not thousands of tables I am talking about.
Many thanks!
ronnie

Hi Ronnie,
It seems to me that the data copying is done with column_id, instead of column_name. Not exactly. The documentation says:
Note that if the two tables with the same name do not have the same column definitions and if Include Data is specified, the data may or may not be copied, depending on whether the source and destination column data types are compatible.
I have created a table in my SQL Server database of that kind:
create table t1 (id integer, phone char(100), address char(100));
And I inserted one record:
id phone address
1 This is the phone number This is the address
In my Oracle database I created the table so:
create table t1 (id integer, address char(100), phone char(100));
The I used COPY TABLE (with the option APPEND) and the result in Oracle is this:
ID ADDRESS PHONE
1 This is the phone number This is the address
So the data are copied. Because the type of the fields ADDRESS and PHONE are identical. But the data are at the "wrong" place.
I dropped my table in SQL Server, recreated it and inserted 1 record:
create table t1 (id integer, phone integer, address char(100));
id phone address
2 12345 This is the address no.2
I changed the table in Oracle accordingly:
create table t1 (id integer, address char(100), phone integer);
I repeated the COPY with option APPEND. But nothing is copied. Because the data types do not fit.
I hope that makes the behavior clearer. Though, I have no idea how you can avoid the problem in any other way than recreating your table on Oracle side so that the columns fit together.
Regards
Wolfgang

Similar Messages

  • Win 2003 Cluster + Oracle Fail Safe + Dataguard (physical & Logical)

    Hello,<br>
    <br>
    It´s my first post (sorry for my bad english)...I am mounting a high availability solution for test purpose. For the moment i mount the following and runs ok, but i´ve a little problem with the logical database:<br>
    <br>
    Configuration<br>
    ESX Server 2.0 with this machines:<br>
    Windows 2003 Cluster (Enterprise Edition R2, 2 nodes)<br>
    * NODE 1 - Oracle 10gR2 + Patch 9 + Oracle Fail Safe 3.3.4<br>
    * NODE 2 - Oracle 10gR2 + Patch 9 + Oracle Fail Safe 3.3.4<br>
    c:/Windows Software<br>
    e:/Oracle Software/ (pfile -> R:/spfile)<br>
    <br>
    Virtual SAN<br>
    * Datafile, Redos.. are in Virtual SAN.<br>
    R:/ Datafiles & Archivers & dump files & spfile<br>
    S:/ , T:/ ,U:/ -> Redos<br>
    V:/ Undo<br>
    <br>
    Data Guard<br>
    * NODE3 Physical Database<br>
    * NODE4 Logical Database<br>
    <br>
    The Oracle Fail Safe and windows cluster run OK, the switchs... <br>
    The physical database runs OK... (redo aply, switchover, failover, all ok) but the logical receives the redos ok but it has a problem when goes to apply the redo.<br>
    <br>
    The error is the following:<br>
    ORA-12801: error señalizado en el servidor P004 de consultas paralelas<br>
    ORA-06550: linea 1, columna 536:<br>
    PLS-00103: se ha encontrado el simbolo "," cuando se esperaba uno de los siguientes:<br>
    (- + case mod new not null <an identifier>
    <a double-quoted delimited-identifier><a bind variable><avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp interval date <a string literal with character set specification><a number> > a single-quoted SQL string> pipe <an alternatively quoted string literal with character set specification> <an alternativel.<br>
    update "SYS"."JOB$" set "LAST_DATE"=TO_DATE('11/09/07','DD/MM/RR'),<br>
    <br>
    This sql statement i saw in dba_logstdby_events and was joined with the error in alert log and dba_logstdby_events.<br>
    <br>
    I´m a bit lost with this error. I don´t understand why the logical database can´t start to apply the redos received from primary database.<br>
    <br>
    The database has two tables with two columns one integer and the other a varchar2(25). She hasn´t rare types of columns.<br>
    <br>
    Thanks a lot for any help,<br>
    Roberto Marotta<br>

    I recreate the logical database OK, no problem, no errors.<br>
    <br>
    The redo aply run ok. I have done logfile switch in primary database and they were applied in logical and standby databases. But...<br>
    <br>
    When I created a tablespace in primary database when i did a switch logfile in primary the changes transfers ok to standby database, but to logical NO!!!, the redo are in they path in logical ok, but when the process tried to apply, reports me the same error.<br>
    <br>
    SQL> select sequence#, first_time, next_time, dict_begin, dict_end, applied from dba_logstdby_log order by 1;<BR>
    <BR>
    SEQUENCE# FIRST_TI NEXT_TIM DIC DIC APPLIED<BR>
    --------- -------- -------- --- --- -------<BR>
    138 14/09/07 14/09/07 NO NO CURRENT<BR>
    139 14/09/07 14/09/07 NO NO CURRENT<BR>
    <br>
    SQL> select event_time, status, event from dba_logstdby_events order by event_time, timestamp, commit_scn;<br>
    <br>
    14/09/07<br>
    ORA-16222: reintento automatico de la base de datos logica en espera de la ultima accion<br>
    14/09/07<br>
    ORA-16111: extraccion de log y configuracion de aplicacion<br>
    14/09/07<br>
    ORA-06550: linea 1, columna 536:<br>
    PLS-00103: Se ha encontrado el simbolo "," cuando se esperaba uno de los siguientes:<br>
    ( - + case mod new not null <an identifier><br>
    <a double-quoted delimited-identifier> <a bind variable> avg<br>
    count current exists max min prior sql stddev sum variance<br>
    execute forall merge time tiemstamp interval date<br>
    <a string literal with character set specification><br>
    <a number><a single-quoted SQL string> pipe
    <an alternatively-quoted string literal with charactert set specificastion><br>
    <an alternativel<br>
    update "SYS"."JOB$" set "LAST_NAME" = TO_DATE('14/09/07','DD/MM/RR'),<br>
    <br>
    The alert.log report the same message that the dba_logstdby_events view.<br>
    <br>
    Any idea¿?<br>
    <br>
    I´m a bit frustrated. It´s the third time that recreate the logical database OK and reproduce the same error when i create a tablespace in primary database, and i haven´t got any idea because of that.

  • Error when "Copy to Oracle" in Sybase ASE 12.5.3

    I found this thread
    "Copy to Oracle" issue in SQL Developer 3.0
    from google and think I'm having exact same issue.
    Connecting to sybase ASE 12.5.3
    Right-click table, Copy To Oracle..
    Pop up message says "Copy to Oracle finished" and log error:
    Source: o.d.migration.copy.BridgeTableDef
    Message: Issue running BRIDGE command
    I am using JTDS 1.2 and have also tried JTDS 2.1. Oracle SQL Developer 3.0.04
    The sybase table to copy is in the default database of the userid.

    Could you please post a table and some demo data that is failing in your environment - or at least you can also test the table given in the post you are referring to:
    CREATE TABLE sybdb.dbo.fetch (
         f_id           numeric identity(18)      NOT NULL,
         s_id           numeric(18)           NOT NULL,
         added_date      datetime           NOT NULL,
         added_by      varchar(30)           NOT NULL
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1080, 2944, '2011-08-05 03:36:10.64', 'User A');
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1081, 2944, '2011-08-05 03:36:35.486', 'User B');
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1082, 2944, '2011-08-05 03:36:54.24', 'User C');
    Does this work for you or fails also?
    Edited by: kgronau on Dec 7, 2011 8:46 AM
    From which location did you download your JTDS drivers?

  • Database control in a two node oracle fail safe cluster

    os windows server 2003 r2
    db 10.2.0.4
    ofs 3.4.1
    i've configured db control in the following
    D:\oracle\product\10.2.0\db_1\BIN>emca -config dbcontrol db -repos recreate -cluster_name name_of_the_cluster
    is this right?
    next question
    the -cluster flag and the -EM_NODE / -EM_SID_LIST parameters in the emca are only for rac?
    with my configuration i can't login to my database over dbcontrol
    Listener refused the connection with the following error: ORA-12514, TNS:listener does not currently know of service requested in connect descriptor The Connection descriptor used by the client was: (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=node1.blah)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=ABBA)))

    How to Configure the 10.2 DB Control in a Failsafe Environment
    ID: 452305.1
    HOWTO: PUBLISHED 17-OCT-2008
    In this Document
       Goal
       Solution
       References
    Applies to:
    Enterprise Manager Grid Control - Version: 10.2.0.1 to 10.2.0.3
    Information in this document applies to any platform.
    Goal
    The goal of the document is to provide the steps to configure the DB Console in an Oracle Failsafe environment.
    Please note that the solution offered in this document is not certified by Oracle. It's only provided as a workaround for customers who wish to use this setup for the Database Control Console in a failsafe environment. Support for the procedure outlined in this document will be provided on a 'best efforts' approach.
    As an alternative to this approach you can use Grid Control Agents to monitor a database in a failsafe environment. For more details please see:
    Note 396659.1  How To Setup Grid Control Central Agent Manually in Oracle Failsafe Environment
    We assume the following:
    - the database binaries are installed on each node on the local disk
    - you already have a failsafe group with the database, the listener, disk resource, and virtual
    ip/hostname
    Note: This is specific for Windows environments using Oracle Failsafe. For setting up the DB Console in Active/Passive clusters on UNIX please use the following note instead:
    Note 362524.1 Configure DB Control 10.2 for use in Active/Passive High Availability Environments
    Solution
    1. Drop the DB Control repository and configuration files on the active node:
    <ORACLE_HOME>/bin/emca -deconfig dbcontrol db -repos drop
    2. Recreate the DB Control using the virtual hostname:
    - in a command window do the following:
    set oracle_sid=<your_sid>
    set oracle_home=<your_oracle_home>
    set oracle_hostname=<virtual_hostname>
    cd %oracle_home%\bin
    emca -config dbcontrol db -repos create
    -- make sure that the virtual host name was picked up by emca (it will display a summary screen
    before continuing)
    3. Verify that the DB Console works fine and can be accessed using the virtual host name in the URL
    4. Stop the DB Console
    5. Create a directory path on the group disk resource similar to your oracle home path on the local disk.
    For example:
    If the oracle home on the local disk is C:\oracle\product\10.2.0\db_1 and the shared disk is D:
    then create the following path: D:\oracle\product\10.2.0\db_1
    Copy C:\oracle\product\10.2.0\db_1\<hostname_sid> and
    C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_<hostname_sid>
    to D:\oracle\product\10.2.0\db_1\<hostname_sid> and respectively
    D:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_<hostname_sid>
    Remember to change the values enclosed in <> with those in your environment.
    6. Delete the following directories from the local disk
    C:\oracle\product\10.2.0\db_1\<hostname_sid>
    C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_<hostname_sid>
    7. Create NTFS junction points from the local disk to the shared disk (these work like symbolic
    links on UNIX) . It is your responsibility to create these.
    You can find a brief guide as well as some tools that will help you create them at:
    http://en.wikipedia.org/wiki/NTFS_junction_point
    http://www.microsoft.com/technet ... dDisk/Junction.mspx
    Important: Please note that this functionality is not certified nor supported by Oracle. Make sure you understand the
    implications. Especially don't delete the junction points from Windows Explorer !!
    In the end you should have the junction points on the local disk (with the same names as the
    original directories) that would point to the directories you copied on the shared disk.
    8. Start the DB Console service and verify that everything is still working fine.
    9. Stop the DB Console service.
    10. Move the Fail Safe group to the 2nd node.
    11. Once the database is started, create the DB Console configuration files on the 2nd node:
    <ORACLE_HOME>/bin/emca -config dbcontrol db
    12. Stop the DB Console
    13. Delete the created configuration files from the local disk:
    C:\oracle\product\10.2.0\db_1\<hostname_sid>
    C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_<hostname_sid>
    14. Create junction points from the local disk to the directories already located on the shared
    disk.
    15. Start the DB Console service and verify that is working fine.
    16. Add the DB Console service as a resource to the fail safe group and put dependencies on the
    database and listener services.
    17. Perform a fail over and see if everything works fine.
    References
    Note 298238.1 - Oracle10g Grid Control with Oracle Fail Safe
    Note 362524.1 - Configure DB Control 10.2, 11g for use in Active/Passive High Availability Environments
    Note 396659.1 - How To Setup Grid Control Central Agent Manually in Oracle Failsafe Environment
    Keywords
    EMCA ; DB~CONTROL ; FAILSAFE ; DBCONTROL ; ENTERPRISE~MANAGER ;

  • Integrity check fails on column key

    Dear DBA's,
    I am getting error while creating encrypted tablespace "ORA-S8342: Integrity check fails on column key"
    actually i am trying to work on Wallet,
    I created wallet key without auto login option initially and i created the tablespaces, user and tables associated to the tablespace.
    after that i dropped the tablespace, user and tables as well as wallet key using Metalink ID 757936.1.
    after that i created wallet key using orapki option after I tried to create the tablespace it is giving above error.
    kindly help me how to resolve this issue.
    I have one doubt that we can create encrypted tablespace only ones for a database instance?
    to create one more encrypted tablespace what will be the procedure to remove the previous encrypted tablespace?
    Best Regards,
    SG

    after that i created wallet key using orapki option after I tried to create the tablespace it is giving above error.Please log a SR for this issue.
    I have one doubt that we can create encrypted tablespace only ones for a database instance?You can create more than one.
    to create one more encrypted tablespace what will be the procedure to remove the previous encrypted tablespace?Drop the encrypted tablespace like dropping any other tablespace -- Use "DROP TABLESPACE <tablespace name> INCLUDING CONTENTS AND DATAFILES;" command.
    See this link in addition to Oracle documentation -- http://www.oracle-base.com/articles/11g/TablespaceEncryption_11gR1.php
    Thanks,
    Hussein

  • Copy Inventory Organization fails with error

    Hi,
    I am trying to create a new organization by using Copy Inventory Organization concurrent but it fails with error. Below is the error message in the log:
    Tue May 18 09:25:13 EEST 2010[ERROR]Copy of InventoryParameters failed.
    Tue May 18 09:25:13 EEST 2010[BELOG Contents]An error occurred in API 'ParametersAM'
    View Object 'ParametersVO'
    OrganizationId = 'null'
    The following attribute is mandatory. Please enter a not null value.
    Primary Key : OrganizationCode = '999'
    Attribute : Organization Name, Business Group Name
    But the strange thing is this error happens for only one organization while the others succeed.
    I checked Metalink Note:752372.1 which seems appropriate for the current situation yet as I said I am getting this error for only one organization. We have Oracle 9.2.0.8 and EBS 11.5.10.2.
    Any help will be greatly appreciated.
    Regards...
    Edited by: Burak on 19.May.2010 23:00

    Hi Burak;
    This error mention in 3 notes in metalink
    Copy Inventory Organization Request Fails With 'An Error Occurred In API' [ID 752372.1]<< you already mention it
    R12 Unable To Copy Organization Parameters Using Organization Copy Feature [ID 788851.1]
    Oracle Inventory News Volume 18: Nov./Dec., 2008 [ID 780837.1] << which is mention note 752372.1
    Solution seems to applying patch, but you cant apply r12 patch to r11 release, So i belive check below part of error.
    The following attribute is mandatory. Please enter a not null value.Primary Key : OrganizationCode = '999'
    Attribute : Organization Name, Business Group Name
    It reminds you something? If no than i suggest log a SR while you are waiting other forum users response here
    Hope it helps
    Regard
    Helios

  • Copying from Oracle SQL Developer to Microsoft Word doesn't retain formatting (Font,colors etc)

    Copying from Oracle SQL Developer Worksheet doesn't retain formatting (font,color etc...)in Microsoft Word but copying from other programs such as
    visual studio, chrome browser etc works fine. This doesn't work even after changed the setting to Keep Source formatting of Options-> Copy and Paste Settings

    Hi,
    I notice that you have cross posted in Answers forum and Oracle forum. Have you tried Mr. Peter's suggestion?
    Then, I recommend we check the Word settings:
    1. Go to: Options > Advanced > Cut, Copy and Paste
    2.  Make sure that Use smart cut and paste is ticked. 
    3. Click the Settings button next to this option
    4. Make sure that Smart Style
    Behavior is checked.
    If the issue still exists, please upload a sample through One Drive, I want to test.
    Regards,
    George Zhao
    TechNet Community Support

  • Error in Creating the Oracle Fail Safe Group during installation on MSCS

    Hi All,
    I am installing ECC 6 dual stack on MSCS.
    I have done steps till CI installation as per installation guide.
    I am gettig the following error in the step "Creating the Oracle fail safe group" while changing physical hostname into the virtual databse hostname using configtool in secure store parameter jdbc/pool/<SAPSID>Url as per the installation guide.
    "Error occurred while working with configuration(scanning)
    MSG:Error while connecting to the database"
    I think it is not accepting the virtual hostname.
    In our scenario CI is running CI node and DB instance is running on DB node.
    I have followed the steps as per the installation guide.
    Please let me know how to resolve this issue.
    Database - Oracle 10g,OS is Windows server 2008 enterprse edition.
    Regards,
    Dinakar
    Edited by: mutnuru dinakar on Jun 1, 2011 1:39 PM
    Edited by: mutnuru dinakar on Jun 1, 2011 1:40 PM

    Hi,
    Thanks for your reply.
    1) did you stop the CI before making the modifications as stated in the installation guide?
         Yes
    2) is your database currently running on the same physical cluster node as your CI?
        No.Database instance is running on DB node and CI is on CI node.
    3) is your database online?
         Yes,it is up and running
    Please let me know if there is anyway to resolve this issue.
    Regards,
    Dinakar

  • How can I copy and then insert a column in Numbers 09

    I have a column in a Table that I would like to copy and then insert this column into another existing table on the same sheet. I don't want to copy and paste this, but rather insert it between existing columns.
    Thanks
    Eric

    Thanks SG,
    I have reverted back to 09' because of the nonexistant functionality of 3.0. I tried the option method you mentioned and it doesn't seem to work in 09'. Have you tried it in this version.
    Eric
    PS 3.0 has beautiful interface, perhaps they will add some functionality someday.

  • Why oracle text index column taking long  time

    why oracle text index column is taking long time to return result.I created text index on a column if I run the query on a single table result is very fast.If I join table with other table (10 records only )
    it is taking long time but in explain plan it is searching by index only.
    I created this index for searching a varchar2 column,the data is comma seperated values like ( UK,US,IT,BR) and the table having records 20 lakhs.Normally if I query with like operater
    ( like '%US%' ) it is taking full table scan because I am using '%' both sides. Please help me on this regard how to search the data with less time. Here is may sample code and explain plan.
    SQL*Plus: Release 9.2.0.1.0 - Production on Wed Jan 28 16:54:22 2009
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    SQL&gt; set timing on
    SQL&gt; set linesize 180
    SQL&gt; explain plan for SELECT T.esongid FROM (SELECT A.ESONGID FROM wcmedeco.EDECO_ESONGS_TERR_CTRY 
    A WHERE CONTAINS(A.TERR_CTRY_NAMES,'US')&gt;0  
      2  GROUP BY A.ESONGID)K,T
      3  WHERE  K.ESONGID=T.ESONGID;
    Explained.
    Elapsed: 00:00:00.01
    SQL&gt; select *from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    | Id  | Operation                      |  Name                   | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT               |                         |     1 |    26 |     4 |
    |   1 |  NESTED LOOPS                  |                         |     1 |    26 |     4 |
    |   2 |   VIEW                         |                         |     1 |    13 |     4 |
    |   3 |    SORT GROUP BY               |                         |     1 |    89 |     4 |
    |   4 |     TABLE ACCESS BY INDEX ROWID| EDECO_ESONGS_TERR_CTRY  |     1 |    89 |     2 |
    |   5 |      DOMAIN INDEX              | IDX_TERR_CTRY_NAMES     |       |       |     0 |
    |   6 |   INDEX RANGE SCAN             | IDX_ESONGID_T           |     1 |    13 |     1 |
    PLAN_TABLE_OUTPUT
    Note: cpu costing is off, 'PLAN_TABLE' is old version
    14 rows selected.
    Elapsed: 00:00:00.00
    SQL&gt; Regards,
    Rajasekhar

    You have not formatted your code properly so we cannot see the query you're executing. Please put some line breaks in.
    Secondly, how fresh are the statistics on those tables? Are you really returning one record out of twenty million?
    Cheers, APC
    blog: http://radiofreetooting.blogspot.com

  • Installation of oracle fail safe on windows cluster - plz very urgent

    hi everybody,
    this is the first time i am going to install oracle failsafe on windows clusters.
    i am going to install oracle 9i release 2 software.
    so i have to install the patches.
    plz tell me with oracle cmds how to do the following.
    1. after installing oracle 9i rel 2 how to install the patches to it in windows environment?
    2. how to create oracle database on one node using shared disk for storage.
    3. how to install oracle fail safe on each cluster?
    4. how to configure cluster using fail safemanager?
    plz provide me soln asap very urgent.
    and don't forget to give me the soln with commands aqnd step by step.
    plz plz plz
    thanks in advance
    suresh

    For 9i , this is better:
    http://download-uk.oracle.com/docs/cd/B10501_01/rac.920/a96600/toc.htm

  • Attempting to copy to disk failed.

    I was using my iPod in cold weather the other night. The battery died and when it warmed back up the screen was in grayscale and it was in "disk mode". I have since restored it several times and am trying to sync it with iTunes. I keep getting an error message "Attempting to copy to disk failed. You do not have enough access privileges for this operation". The iPod was syncing just fine prior to the cold crash. I tried changing the permissions in my iTunes music library and xml file. Help?

    First, reset the iPod
    http://support.apple.com/kb/HT1320
    and restart the Mac with the iPod connected; then try it again.
    If that does not help, connect the iPod to the Mac. With iTunes not running, run Disk Utility. Does the iPod's hard drive appear in the Disk Utility sidebar? If so, select the iPod's DRIVE, not the volume indented under the drive, in the sidebar and go to the Erase tab. Set the format type to +Mac OS Extended (Journaled)+ and erase the iPod's drive.
    If the erase completes successfully, quit Disk Utility and run iTunes. Immediately use the Restore button to install and initialize the iPod's software. You can then set it up and sync it as desired.

  • Why use oracle fail safe???

    hi
    i have one question..
    why use oracle fail safe???
    In the case windows HA System, our systems is operating Oracle database using only Windows Cluster (MSCS) without Oracle Fail Safe!!
    Without oracle fail safe, our systems was installed Oracle database.....
    if using oracle fail safe, how is merit???.
    Thanks...

    Hi Kim,
    why use oracle fail safe???Refer http://download.oracle.com/docs/html/B12070_01/intro.htm#i1005996
    Hope helps
    Regrads,
    Xaheer

  • When synching my IPhone 3Gs I now get a sign "Attempting to copy to Disk failed. The required disk cannot be found." This is after synching a new Iphone 4s.. Help!!

    When attempting to synch my IPhone 3Gs I now get a sign "Attempting to copy to Disk failed. The required disk cannot be found."
    This is after synching a new Iphone 4s and having received some help from Apple Support who assisted with some setting
    changes. Unfortunately this was over a protracted period of time and I cannot recall what was changed. Apparently my 3Gs is out of
    its warranty and so they cannot help me unless I pay £25....
    Can anyone help??
    Johnm2429

    Well, attempted again today and now my iTunes locks up whenever I select a song! Also, my Volume Mixer on my Windows 7 will not open. Just terrific. Where's my MacBook???????????????

  • RMAN Automatic backup/recovery with oracle fail safe, windows cluster

    Hello,
    I have question,
    1) Whether it is possible to do "RMAN Automatic Backup and recovery" in environment as ?
    Environment: -
    a. Windows clustering with windows server 2003 Enterprise Edition R2 (Two Node Clustering)
    b. Shared disk ( RAID )
    c. Oracle 10g standard edition one
    d. Oracle fail safe v3.3.3 (for redundancy)
    Here we have single oracle instance operating on single database whose files are located on shared disk.
    2) If answer to above question is yes please specify if there is some good documentation to it.
    Any help regarding this will be greatly appreciated.
    Thanks in advance,
    Rahul

    You just need to make sure that the RMAN scripts are always able to connect to the target database instance whether instance runs on cluster node 1 or cluster node 2
    here, If oracle services(resources) will shift from Node1 to Node2 (due to media or any failure) during RMAN Backup then there will be break in connection, will it destroy my backup or will it get started automatically without any harm?
    and also I want to know,
    Do we need to setup another server which will have RMAN backup script running?

Maybe you are looking for

  • Copy selection criteria from quotation to Sales order

    Hi Experts, I am creating a quotation. For the quotation line item, i am going to batch determination. Then i am clicking the SELECTION CRITERIA button. It gives me the batch characteristics screen. There i am entering the values to the characteristi

  • Duplicate invoices in vendor history

    HI All. If i am entering the same invoice second time in MIRO system is showing only the warning message, system should not allow the user to post the same invoice second it should show error message, how to change the message status. I have selected

  • How would you go about making this in LiveCycle?

    Hi everyone, I need to make the shape attached in LiveCycle for one of my forms. I can not figure out what the best way to tackle it is. If I draw the rectangle, then cut it with a line, I still am stuck having to fill the entire rectangle one color.

  • Display Screen (vertical vs. horizontal)

    How can I prevent the display screen from flipping from vertical to horizontal when I turn the phone sideways?

  • Illustrator CC will not snap to grid, no matter what!

    Hello, I apologize if this seems a redundant post, I've read many people asking this but have seen no definitive answer, so I wanted to simplify the question and see if we can get a real answer: I'm using Illustrator CC, and snap to grid DOES NOT WOR