vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, Wanting to test Oracle's RMAN without touching our Production Database (running on Oracle Server 8.1.5 with SunOS 5.8). I'm trying to first, duplicate the database to another machine. Since the other machine does not have enough diskspace I've created a mount point to linux PC machine which is NFS accessible both to the production and the test machines. Backing up with RMAN using NFS to the linux machine demonstrates no problem. However trying to duplicate the database does not succeed. What I'm trying to do is create the new Instance where the Instace will run on the test-SunOS 5.8 machine - while the datafiles will reside on the linux via NFS. RMAN starts running and creates the "new" instance's datafiles on the mounted linux using NFS. When RMAN is supposed to create the control files and start mounting-restoring the "new" instance - it reports the following errors even though there is no communication errors at all: RMAN-08024: channel bktest4: restore complete RMAN-08023: channel bktest2: restored backup piece 1 RMAN-08511: piece handle=/BACKUP/EZFACE/backup/full_backups/35508645253 params=N ULL RMAN-08024: channel bktest2: restore complete RMAN-03022: compiling command: sql RMAN-00571: ================================================== ========= RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: ================================================== ========= RMAN-00601: fatal error in recovery manager RMAN-03012: fatal error during compilation of command RMAN-03028: fatal error code: 3015 RMAN-03013: command type: Duplicate Db RMAN-03015: error occurred in stored script Memory Script RMAN-03002: failure during compilation of command RMAN-03013: command type: sql RMAN-06004: ORACLE error from recovery catalog database: ORA-03113: end-of-file on communication channel RMAN-06097: text of failing SQL statement: begin dbms_rcvman . resetAll ; dbms_r cvman . set_package_constants ; : RMAN-06099: error occurred in source file: krmk.pc, line: 14406 Any one has any suggestions? Thanks in advance. Nadav |
| |||
| On 9 Nov 2003 05:30:12 -0800, geminiraz@yahoo.com (Nadav) wrote: >However trying to duplicate the database does not succeed. >What I'm trying to do is create the new Instance where the Instace >will run on the test-SunOS 5.8 machine - while the datafiles will >reside on the linux via NFS. Generally speaking Unix file systems are NOT cross platform compatible, and Oracle definitely doesn't support this situation. Also using NFS for your datafiles provides a BIG NO NO and isn't supported. You are doomed to fail. -- Sybrand Bakker, Senior Oracle DBA |
| |||
| Thanks for your reply, However duplicating the DB using a cold back up - and starting up the server using NFS worked fine. Any reasons there should be a differance? Sybrand Bakker <gooiditweg@sybrandb.nospam.demon.nl> wrote in message news:<jnnsqvgo062g867qa2vbeg29uvbkfg31t2@4ax.com>. .. > On 9 Nov 2003 05:30:12 -0800, geminiraz@yahoo.com (Nadav) wrote: > > >However trying to duplicate the database does not succeed. > >What I'm trying to do is create the new Instance where the Instace > >will run on the test-SunOS 5.8 machine - while the datafiles will > >reside on the linux via NFS. > > > Generally speaking Unix file systems are NOT cross platform > compatible, and Oracle definitely doesn't support this situation. > Also using NFS for your datafiles provides a BIG NO NO and isn't > supported. You are doomed to fail. |
| ||||
| geminiraz@yahoo.com (Nadav) wrote in message news:<445384e9.0311100013.491d4afb@posting.google. com>... > Thanks for your reply, However duplicating the DB using a cold back up > - and starting up the server using NFS worked fine. > Any reasons there should be a differance? NFS is very unreliable in how quickly it responds. When you are just bringing up a cold db, it's not asking for much. In your log file, it looks like it timed out waiting for some stored procedure to set some constants. Even if you could fix that, NFS is likely to ding you when it is restoring the datafiles, probably near the end of a large data set. Listen to Sybrand. > > Sybrand Bakker <gooiditweg@sybrandb.nospam.demon.nl> wrote in message news:<jnnsqvgo062g867qa2vbeg29uvbkfg31t2@4ax.com>. .. > > On 9 Nov 2003 05:30:12 -0800, geminiraz@yahoo.com (Nadav) wrote: > > > > >However trying to duplicate the database does not succeed. > > >What I'm trying to do is create the new Instance where the Instace > > >will run on the test-SunOS 5.8 machine - while the datafiles will > > >reside on the linux via NFS. > > > > > > Generally speaking Unix file systems are NOT cross platform > > compatible, and Oracle definitely doesn't support this situation. > > Also using NFS for your datafiles provides a BIG NO NO and isn't > > supported. You are doomed to fail. jg -- @home.com is bogus. http://news.bbc.co.uk/2/hi/technology/3257165.stm |