COPY DATABASE ON THE SAME UNIX MACHINE

제품 : ORACLE SERVER
작성날짜 : 1997-10-10
INTRODUCTION
The following article deals with creating a copy of a database on the same
unix machine. A database might need to be copied in order to duplicate the
production system, for example for testing purposes. It is recommended that
the reader refer also to the following documentation:
-Oracle 7 Server Administrators Guide
Performing full backups: Chapter 18 page 18-7
OVERVIEW OF PROCEDURE
Before copying the database to a new location, it is necessary to perform
a full cold backup of the database, whilst the database is shutdown. This
will ensure that no data will be lost if the copying of the database is
unsuccessful.
WARNING
Creating a copy of a database involves usage of the CREATE CONTROLFILE command
(explained below). If this command is not executed correctly it could corrupt
the production database. If this happens, and if the files in question are
important, this will mean that the original database will need to be restored
from a backup.
Note: If you are using Oracle 7.1.6 on Sun Solaris 2.X there is a serious
bug with CREATE CONTROLFILE. Call Oracle Worldwide Support asking for
details of <Bug:274054> before proceeding.
1. OBTAIN DATABASE INFORMATION FROM CONTROLFILE
In order to move the database, it is necessary to create a script containing
information about the files of the database.
This is done by executing the following commands.
a. SQLDBA
b. CONNECT INTERNAL, STARTUP MOUNT
c. ALTER DATABASE BACKUP CONTROLFILE TO TRACE RESETLOGS;
This will create a trace file in the trace file directory. The file
will have the extension .trc, and is located either in the directory
defined by the initialization parameter 'user_dump_dest', or, if
this is not defined, in ORACLE_HOME/rdbms/log. The file should be
copied to a name such as ccf<NEW_SID>.sql, where <NEW_SID> is to be
the ORACLE_SID of the copied database.
2. IDENTIFY FILES TO BACKUP/COPY
a. Identify database and log files
The CREATE CONTROLFILE command in the file ccf<NEW_SID>.sql can then be
used to identify the various database files and redo log files that need
to be backed up. The file names will be in single quotes and separated
by commas after the words LOGFILE and DATAFILE, e.g:
CREATE CONTROLFILE REUSE DATABASE "FRITZ" RESETLOGS ARCHIVELOG
MAXLOGFILES 6
MAXLOGMEMBERS 2
MAXDATAFILES 10
MAXINSTANCES 1
MAXLOGHISTORY 100
LOGFILE
GROUP 1 (
'/oracle/tberryha/fritz/log_disk1/fritzlog1v713.dbf',
'/oracle/tberryha/fritz/log_disk2/fritzlog1v713.dbf'
) SIZE 50K,
GROUP 2 (
'/oracle/tberryha/fritz/log_disk1/fritzlog2v713.dbf',
'/oracle/tberryha/fritz/log_disk2/fritzlog2v713.dbf'
) SIZE 50K
DATAFILE
'/oracle/tberryha/fritz/fritz_system/fritz_system01.dbf' SIZE 8M,
'/oracle/tberryha/fritz/fritz_data/fritz_data01.dbf' SIZE 20M,
'/oracle/tberryha/fritz/fritz_rollback/fritz_rollback01.dbf' SIZE 20M,
'/oracle/tberryha/fritz/fritz_temp/fritz_temp01.dbf' SIZE 20M,
'/oracle/tberryha/fritz/fritz_data/fritz_data02.dbf' SIZE 5M,
'/oracle/d2/V7141/dbs/x' SIZE 1M
It is also possible to obtain a listing of the files of the database
by executing the following sql commands:
SQLPLUS username/password
Note: The user must have sufficient privileges to be able to see
the dba views 'sys.dba_data_files', 'sys.v$logfile' and in addition
the database must be open.
SPOOL files.log
SELECT file_name FROM sys.dba_data_files ORDER BY tablespace_name;
SELECT member FROM sys.v$logfile
SPOOL OFF
Note: This will create a spool file called 'files.log' which
will record the results of the previous commands.
b. Identify controlfiles
This can be done either by referring to the init<SID>.ora
'control_files' parameter, or from 7.0.16 onwards, the table
sys.v$controlfile can be used to identify the controlfiles of the
database via the following statement:
SPOOL control.log
SELECT name FROM v$controlfile;
SPOOL OFF
This will create a file called control.log in the current directory
which will contain the names of the controlfiles for the database.
3. BACKUP EXISTING DATABASE
Shutdown instance via SQLDBA, SHUTDOWN NORMAL, and then take full cold
backup of:
a. All the files identified in step 2 above.
b. All parameter files.
Note: the main parameter file will usually be called init<SID>.ora, in
addition to which there may also be other parameter files. These will
be identified by 'ifile' (included file) parameters in the init<SID>.ora.
These additional parameter files are usually called config<SID>.ora.
4. MAKE A COPY OF THE DATABASE
Copy all parameter files, controlfiles, and all files noted in step 1 above
to their new location taking care to preserve ownership and permissions.
When the database has been copied, it will not be possible to use the same
SID and therefore the ORACLE_SID environment variable must
be changed to a new SID, and the copied init<SID>.ora must be
renamed to init<NEW_SID>.ora, and any parameter files pointed to by an
'ifile' parameter (e.g. parameter files such as config<SID>.ora) should be
renamed to incorporate the NEW_SID (i.e. config<NEW_SID>.ora).
5. SET UP PARAMETER FILES FOR THE COPIED DATABASE
Edit the value of the control_files parameter in the init<NEW_SID>.ora to be
the name and location that you want to use for the new control files.
The controlfiles should be given a different name to distinguish them from
the old database. In addition, change the DB_NAME parameter in the
init<NEW_SID>.ora to be an appropriate name for the new database. Any
'ifile' parameters of the parameter file will need to be edited to point to
the new name of the include file in the new location.
6. PREPARE THE 'CREATE CONTROLFILE COMMAND' FOR THE COPIED DATABASE
In order to establish the new database in the new location, the CREATE
CONTROLFILE command in the file ccf<NEW_SID>.sql should be executed. The
following steps illustrate how CREATE CONTROLFILE command is prepared.
a. The file ccf<NEW_SID>.sql must be edited before use. The CREATE
CONTROLFILE command will be preceded by a series of comments and a
STARTUP NOMOUNT command. These need to be stripped out of the file. In
addition, after the create controlfile command, there will be a number
of comments and the commands RECOVER DATABASE and ALTER DATABASE OPEN,
which should also be stripped out, leaving just the create controlfile
command itself.
b. The CREATE CONTROLFILE command itself should also be edited. Change
the CREATE CONTROLFILE command in 'ccf<NEW_SID>.sql' to have the new
database name, and add the word 'SET', e.g:
CREATE CONTROLFILE REUSE DATABASE "olddbname" RESETLOGS
becomes
CREATE CONTROLFILE REUSE set DATABASE "newdbname" RESETLOGS
c. The CREATE CONTROLFILE command also specifies the files which make up
the database, and these must also be changed to name the files of the
new database in the new location, e.g:
LOGFILE
GROUP 1 (
'/old_path/old_logfile_name1',
'/old_path/old_logfile_name2'
) SIZE 50k
would become:
LOGFILE
GROUP 1 (
'/new_path/new_logfile_name1',
'/new_path/new_logfile_name2'
) SIZE 50k
and
DATAFILE
'/old_path/old_file_name1' SIZE 5M,
'/old_path/old_file_name2' SIZE 10M
would become:
DATAFILE
'/new_path/new_file_name1' SIZE 5M,
'/new_path/new_file_name2' SIZE 10M
7. EXECUTE THE 'CREATE CONTROLFILE' COMMAND FOR THE COPIED DATABASE
Having prepared the create controlfile script, it is now necessary to run
the script from within the new instance. This is done by executing the
following:
a. at the operating system prompt, change the value of the environment
variable ORACLE_SID from OLD_SID to NEW_SID. This can be done by using
the following unix command from within the C shell:
%setenv ORACLE_SID NEW_SID
b. SQLDBA
c. CONNECT INTERNAL, STARTUP NOMOUNT PFILE=/<full path>/init<NEW_SID>.ora
d. @ccf<NEW_SID>
Note: if any files which should be specified in the CREATE CONTROLFILE
command are omitted, these files cannot be added to the new database
at a later date. In addition, if any of the files specified in the
CREATE CONTROLFILE command are NOT changed from their original names,
then the corresponding files of the original database will become part
of the copied database, and it will not be possible to restore them to
the original database. If this happens, and if the files in question
are important, this will mean that the original database will need to
be restored from a backup.
e. ALTER DATABASE OPEN RESETLOGS
8. MAKE A FULL COLD BACKUP OF THE COPIED DATABASE
SHUTDOWN and take a full cold backup of the database in the new location.
The full cold backup can be done as detailed in steps 2 and 3.

Yes.
vipul wrote:
>
Thanks Peter,
But in such a case do we need to configure the WSL in the ubb file and set environment
variables like WSNADDR, WSENVFILE etc .etc. for the WS client.
Regards
Vipul.
Peter Holditch <[email protected]> wrote:
vipul,
Yes.
In fact, you don't even need 2 installs. If you do a server installation
of
Tuxedo onto your UNIX machine, and build all the clients with the buildlcient
-w
option, then the clients will use /WS libraries, instead of the native
ones, to
contact Tuxedo.
Regards,
Peter.
vipul wrote:
Can I install Tuxedo/T server and Tuxedo/WS on the same UNIX machinein different
directories
and make the application behave like a client-server. In such a casecan we make
the clients act
like WS clients and not native clients.

Similar Messages

  • How do i create multiple databases on the same unix box?

    Hello experts.
    Please send me some guidelines on how to create multiple databases on the same unix box and how to configure their startups including listeners.
    Please also, list me the possible precautions to takes especially if the existing database is a production one!
    thanks very much for you reply
    Best Regards
    Yogeeraj

    Hello,
    I tried the following:
    svrmgrl> startup nomount pfile=I:\d01\oracle\admin\cmttest\pfile\init.ora
    then
    svrmgrl> CREATE DATABASE cmttest
    LOGFILE 'i:\d01\oracle\oradata\cmttest\redo01.log' SIZE
    1024K,'i:\d01\oracle\oradata\cmttest\redo02.log' SIZE 1024K
    MAXLOGFILES 32
    MAXLOGMEMBERS 3
    MAXLOGHISTORY 1
    DATAFILE 'i:\d01\oracle\oradata\cmttest\system01.dbf' SIZE 50M REUSE
    MAXDATAFILES 254
    MAXINSTANCES 1
    CHARACTER SET WE8ISO8859P1
    NATIONAL CHARACTER SET WE8ISO8859P1;
    Then when i try to run both databases:
    svrmgrl> set instance cmttest
    ORA-12500: TNS: Listener failed to start a dedicated process
    ===================
    I am doing something wrong.
    please help
    Regards
    Yogeeraj

  • Install two oracle8i database on the same machine

    Hi
    I am currently running oracle 8i on hp unix 11i.
    I would like to ask whether I could run another instance(another oracle 8i database ) on the same machine.
    In another word can I run two database on the same machine?
    Is there any implication by doing so?
    Thanks in advance

    Hi
    I am currently running oracle 8i on hp unix 11i.
    I would like to ask whether I could run another instance(another oracle 8i database ) on the same machine.
    In another word can I run two database on the same machine?
    Is there any implication by doing so?
    Thanks in advance Hi,
    You can create multiple databases on the same machine, if you have sufficient resources.

  • Standalone oc4j and oracle 9i database on the same windows xp machine

    I m trying to deploy my j2ee application in my local system using standalone oc4j container(Oracle Containers for J2EE 10g (10.1.3.1)).To configure OC4j,I had to mention ORACLE_HOME=d:\oc4j as a user defined env variable.after that the oc4j started running normally.then i installed oracle 9i database in the same system to use it as the database for the application.During installation it prompts that ORACLE_HOME is alredady set.However the installation completes successfully.But when i try opening sql plus,it throws and error asking to check oracle_home.Its only after changing oracle home to d:\oracle,that sql plus opened and i could log in to it.But after that oc4j would not run saying it cannot find relevant files.Is it not possible to have standalone oc4j and a database for a J2ee application on the same system.if its possible,how can we go ahead?Thanks in advance

    user549113,
    Problem with ORACLE_HOME has been discussed several times already in this forum. I suggest you search the forum archives for "ORACLE_HOME".
    Good Luck,
    Avi.

  • Moving the database in the same server

    Your replay:-
    for WIN NT: take a look at note 61747.1 Moving a 7.3 or 8.x database. And take a look at Note:99275.1, UNIX/NT: Moving a Database Within the Same Machine.
    Clarification: Where can i get the help for Note:61747.1 & 99275.1

    Sorry Sridhar.
    Take a look in MetaLink (www.metalink.com) and use the note ids to look up the information.
    Thanks.

  • How do I create multiple databases on the same ORACLE_HOME

    Hi,
    I would like to know how can I create 2 databases on the same ORACLE_HOME? Also is it possible to start both databases at the same time?
    When I installed oracle,a directory named database has been created under ORACLE_HOME, which contains all initorc1.ora ,etc ?
    At this point how do I create another database named orc2 on the same machine?
    Thanks in advance.
    winnie philip.

    Hi,
    Set the oracle_sid=db1
    Now rename your init.ora to init<oracle_sid>.ora in $oracle_home/dbs directory.
    Change the db_name parameter to appropriate name in the init<oracle_sid>.ora file.
    Now create the database.
    In the same fashion create another database with the new database name and different oracle_sid
    Now in order to switch between the databases.
    Change the env variable Oracle_Sid to the value of the database which you wanted to start.
    Regards
    Anand

  • Can we start more than one user created database at the same time

    Hi.,
    Can we start/work more than one user created database at the same time ??
    --Shyam                                                                                                                                                                                       

    Hi Shyam,
    I really dont understand what you have asked?
    If your question is can we start more than one database at the same time then the answer to that is yes but provided to have enough resources on your server to support running of two or more different databases on the same machine.
    Ex Senior DBA

  • About listeners for different databases in the same ORACLE_HOME

    Hello experts, I have a doubt
    I have installed 3 different databases in the same server which OS is Suse Enterprise 10. At this moment I have just one listener that registers all the services. The number of connections are big for two of the three databases so I do not know what might be the best practices for this environment. I have some question I would like you suggestion for me:
    DB version: 11.1.0.7
    Should I have three listener, one for each database?
    Is a good practice to have only one listener for multiple instances in the same server?
    Are there differents between have only one listener for all the instance and have one listener for instance?
    What about the performance?
    Than you in advance, I hope you can guide me.

    Best practice is not to have multiple databases on one server, depending on resources.
    Should I have three listener, one for each database?
    No. That is pretty undesirable and requires more administration.
    Is a good practice to have only one listener for multiple instances in the same server?
    Yes. Remember the listener is only a broker and there are no permanent connections between client, listener and database.
    Are there differents between have only one listener for all the instance and have one listener for instance?
    Yes. The latter is an administration nightmare.
    What about the performance?
    Who cares? The only factors are
    listener.log becomes too big --> set up proper cleanup procedures
    The number of semaphores is exceeded (Unix) or no more threads can be created (Microsoft winblows), which will give rise to ora-12500.
    Sybrand Bakker
    Senior Oracle DBA

  • Oracle XE on multiple virtual machines on the same physical machine?

    hi,
    does oracle's licensing for 11g express edition prohibit running XE databases on multiple virtual machines on the same physical machine? if not, does the machine have to be "hard partitioned" per oracle specifications (link below) to make it legal?
    http://www.oracle.com/us/corporate/pricing/partitioning-070609.pdf
    i found a similar question regarding 10g express edition in the forum (link below), but it doesn't seem like the question was ever definitively answered.
    Oracle XE on multiple virtual machines on the same physical machine?
    thanks

    I thought until I just checked that this was a clear cut no in that it specifies 'a single server'. Now I'm not sure as 'server' is an amibuous term. I at least know that as soon as you start giving developers access to theor own XE instance for dev/testing that there are many VM environments where you can't really know what physical macine your VM is running on to actually be able to tell if you had multiple XE instances running on a single 'Physical' server. I'm not sure the question has been answered by Oracle though.

  • Upload image to directory and data to database from the same form

    Hello all
    I'm playing at building a shopping cart (never done one
    before) from a tutorial by Gordon Knapp at www.webthang.com.
    I have created the site and it works perfectly. Now I want to
    extend it.
    There is a form that allows the user to add data to the
    database. I would also like to be able to upload an image to a
    directory on the server and add the data to the database at the
    same time from the same form. It would be good if the input field
    "<input name="product_picture" type="text" id="product_picture"
    tabindex="6" size="50" />" could be populated automatically by
    the filename of the image being uploaded, but this isn't a
    neccessity.
    I have looked at various ASP Upload packages and I can upload
    an image alone but none of them make it clear how to upload the
    image and add data to the database at the same time.
    As this is a private project I need any suggestions to by
    free.
    The tutorial shows how to create the site in Ultra Dev but
    worked perfectly well in DW. The page concerned looks like this. It
    is named 'admin_add.asp':
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="../Connections/con_ecom.asp" -->
    <%
    Dim MM_editAction
    MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
    If (Request.QueryString <> "") Then
    MM_editAction = MM_editAction & "?" &
    Server.HTMLEncode(Request.QueryString)
    End If
    ' boolean to abort record edit
    Dim MM_abortEdit
    MM_abortEdit = false
    %>
    <%
    ' IIf implementation
    Function MM_IIf(condition, ifTrue, ifFalse)
    If condition = "" Then
    MM_IIf = ifFalse
    Else
    MM_IIf = ifTrue
    End If
    End Function
    %>
    <%
    If (CStr(Request("MM_insert")) = "add_form") Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_con_ecom_STRING
    MM_editCmd.CommandText = "INSERT INTO products
    (product_category, product_name, product_price, product_briefdesc,
    product_fulldesc, product_picture) VALUES (?, ?, ?, ?, ?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 202, 1, 50,
    Request.Form("product_category")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 202, 1, 50,
    Request.Form("product_name")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param3", 5, 1, -1,
    MM_IIF(Request.Form("product_price"),
    Request.Form("product_price"), null)) ' adDouble
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param4", 203, 1, 536870910,
    Request.Form("product_briefdesc")) ' adLongVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param5", 203, 1, 536870910,
    Request.Form("product_fulldesc")) ' adLongVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param6", 202, 1, 50,
    Request.Form("product_picture")) ' adVarWChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    ' append the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "admin_control.asp"
    If (Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
    Then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" &
    Request.QueryString
    Else
    MM_editRedirectUrl = MM_editRedirectUrl & "&" &
    Request.QueryString
    End If
    End If
    Response.Redirect(MM_editRedirectUrl)
    End If
    End If
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Administration - Add Product</title>
    <link href="../scripts/admin.css" rel="stylesheet"
    type="text/css" />
    <script type="text/javascript"
    src="../scripts/ecom.js"></script>
    </head>
    <body onLoad="adminTitle()">
    <div id="wrapper">
    <div id="pageHeading">ADMINISTRATION - ADD
    PRODUCT</div>
    <div id="navBar"><a
    href="admin_control.asp">Control</a> | Add | <a
    href="admin_view.asp">View</a> | <a
    href="admin_update1.asp">Update</a> | <a
    href="admin_delete1.asp">Delete</a> | <a
    href="../Default.asp">Shop</a></div>
    <br />
    <form name="add_form" id="add_form" method="POST"
    action="<%=MM_editAction%>">
    <table border="1" align="center" id="tblArea">
    <tr>
    <td class="tdLabel">Product Category</td>
    <td colspan="2"><input name="product_category"
    type="text" id="product_category" tabindex="1" size="50"
    /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Name</td>
    <td colspan="2"><input name="product_name"
    type="text" id="product_name" tabindex="2" size="50"
    /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Price</td>
    <td class="tdContent" colspan="2"><input
    type="text" name="product_price" id="product_price" tabindex="3"
    size="50" /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Short
    Desciption</td>
    <td class="tdContent" colspan="2"><textarea
    name="product_briefdesc" id="product_briefdesc" cols="47" rows="4"
    tabindex="4"></textarea></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Full
    Description</td>
    <td class="tdContent" colspan="2"><textarea
    name="product_fulldesc" id="product_fulldesc" cols="47" rows="5"
    tabindex="5"></textarea></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Image File Name</td>
    <td class="tdContent" colspan="2"><input
    name="product_picture" type="text" id="product_picture"
    tabindex="6" size="50" /></td>
    </tr>
    <tr>
    <td class="tdLabel"> </td>
    <td align="center"><input type="reset" name="Reset"
    id="Reset" value="Reset Form" /></td>
    <td align="center"><input type="submit"
    name="Submit" id="Submit" value="Add To Shop" /></td>
    </tr>
    </table>
    <input type="hidden" name="MM_insert" value="add_form"
    />
    </form>
    </div>
    </body>
    </html>
    Hope you can help.
    Warm regards
    Martin

    Got it sorted.
    Found an excellent tutorial at Webthang.
    http://www.webthang.co.uk/tuts/tuts_dmx/rob15/rob15.asp

  • Can you have multiple databases on the same LUN in Exchange 2010?

    I'm sure you can but is it possible with exchange 2010 to have multiple databases on the same LUN.  We currently have 8 DB's all writing to their own DB drive and separate log drive so 16 drives in total.  I need to spin a new DB up this week and
    wanted to double check this is possible.  I've looked online and cant find anything that I've seen before that says this is possible.
    Thanks.

    Hi,
    Yes, multiple databases could be placed on the same LUN, but it's not recommended.
    If you have 2 drives fail at the same time (it happens more than you think), then losing 100% of your DBs is a lot worse than losing one of them or some of them depending on where the failures are.
    Here is a similar thread for your reference:
    Multiple databases on the same LUN in Exchange 2010
    Hope this helps!
    Thanks.
    Niko Cheng
    TechNet Community Support

  • I have three computers backing up onto the same Time Machine.  The Hard drive of one has now failed, and I'd like to restore certain items (principally photographs) to one of the other two computers.  How can I do this?

    I have three computers backing up onto the same Time Machine.  The Hard drive of one has now failed, and I'd like to restore certain items (principally photographs) to one of the other two computers.  How can I do this?

    "You can also browse the original backup disk for past backups by using "Browse other Time Machine Disks"--to see this choice, hold the Option key then click the Time Machine menu in the Finder (to see the menu, "Show Time Machine status in the menu bar" must be selected in Time Machine preferences."
    Mac 101: Time Machine

  • Two computers backed up on the same Time machine disk, one computer is dead. How to access data?

    Hi guys,
    I backed up two different computers on the same time machine disk. Now, one of my computer is dead. I can see the backups on my time machine disk. How can I get the backup data that belongs to dead computer. When I enter time machine, I only have access to corresponding backup.  I do not want to  destroy the backups. My timemachine backup structure looks like below:
    -->Backups.backupdb
         -->Computer-1
         -->Computer-2
    Now, my Computer-1 is dead, and I am using Compter-2. If possible I wan to know a way of accessing Computer-1 data without destroying any other backups/files etc. Than you!

    I loathe sending people offsite for information except WRT time machine.  The late James Pond was a master at all things Time Machine related...maybe more....may he rest in peace for his contributions to ASC.
    http://pondini.org/TM/FAQ.html

  • Is it possible to create a Clone database with the same name of source db ?

    Is it possible to create a Clone database with the same name of source db using RMAN ...
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....

    user11919409 wrote:
    Is it possible to create a Clone database with the same name of source db using RMAN ...
    yes
    >
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....yes
    Handle:     user11919409
    Status Level:     Newbie (10)
    Registered:     Dec 7, 2009
    Total Posts:     102
    Total Questions:     28 (22 unresolved)
    why do you waste time here when you rarely get any answers to your questions?

  • Data from different databases in the same report.

    Hi Everyone,
    I am trying to build a reconciliation report in which I need to show the data from the source and target, side by side.
    Source and target are both different databases, although being oracle only
    Whenever a new data model is created, it gets attached to a data source and in the report we need to choose a specific data model.
    Can we have data from different databases in the same report ?

    Yes, it is possible.
    One way Is to use dataTemplates. There you can make queries from any number of different databases (The max I have done is 5).
    It looks something like that:
    <dataTemplate name="NameOfTemplate">
    <dataQuery>
         <sqlStatement name="Q1" dataSourceRef="Connection1">
              <![CDATA[     select * from table1]]>
         </sqlStatement>
         <sqlStatement name="Q2" dataSourceRef="Connection2">
              <![CDATA[     select * from table2]]>
         </sqlStatement>
      </dataQuery>
      <dataStructure>
         <group name="RESULT1" source="Q1">
              <element name="P_FIRST_NAME" value="P_FIRST_NAME"/>
         </group>
         <group name="RESULT2" source="Q2">
              <element name="P_DATE" value="P_DATE"/>     
         </group>
      </dataStructure>
    </dataTemplate>dataStructure is very important when you get data from different places, if you don't define those elements, then only the result from Q1 is shown.
    The second possible way is to make as two different data models, each containing their own query and then set Main Data Set as concatenated SQL Data Source.
    Best of luck,
    Evelyn

Maybe you are looking for

  • Video capture device Plextor PX-AV200U doesn't work

    Hello there. This is the last piece of HW that I still didn't manage to work with linux. I bought it few years ago, when I used windows and I'm trying to make it work since I started to use linux 3 years ago. My dmesg output is: usb 1-10: new high sp

  • Down Payment u2013 New functionality in PO - Limit the Planned Amount of DPR

    Hi, everybody I need an assistance with the new transactions for DownPayment Request based on PO (ME2DP and FPDP_CREATE). We created a PO, in the item detail, tab "Invoice" we planned a Voluntary DP with DownPayment % = 20 %. In ME2DP it is possible

  • Why JPA? What's the Point?

    I'm creating a hobby application to learn new technologies. I have been struggling with the JPA portion for months now. What I would like to know is, what is waiting at the end of the tunnel? If I continue struggling with JPA and finally learn it, wh

  • Got error on my page please help me...

    Hi, please help me in my problem. i have created a page locally and when i test it it works fine but when i upload it to my site there's an error occur the error is: "java.lang.ArrayIndexOutofBoundsException" i have no idea with this error and why it

  • Want & tried installing 3.6 on a OpenSuSE-11.2 : bad ElfClass64 /usr/lib64/libdbus-glib-1.so.2 - what to do? Thanks a lot

    downloaded vers. 3.6 and tried installing linux-User251868:/usr/src/packages/SOURCES/firefox-3.6 # ls application.ini components dependentlibs.list greprefs libnspr4.so libnssutil3.so libsoftokn3.so LICENSE plugins searchplugins .autoreg crashreporte