UNDO TABLESPACE [message #668624] |
Wed, 07 March 2018 06:02 |
|
daulat01
Messages: 62 Registered: May 2011 Location: Delhi
|
Member |
|
|
Hello Experts:
I have a tablespace named undotbs on primary & standby but while checking on standby by SQL> show parameter undo; the undo_tablespace is UNDOTBS1 which is not exist
But on the primary undo_tablespace is UNDOTBS. Please let me know how I can correct it on standby db's.
@Primary:
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> show parameter undo
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
temp_undo_enabled boolean FALSE
undo_management string AUTO
undo_retention integer 28800
undo_tablespace string UNDOTBS
SQL> select name from v$tablespace where name='UNDOTBS1';
no rows selected
SQL> select name from v$tablespace where name='UNDOTBS';
NAME
------------------------------
UNDOTBS
---Dataguard02
SQL> show parameter undo;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
temp_undo_enabled boolean FALSE
undo_management string AUTO
undo_retention integer 900
undo_tablespace string UNDOTBS1
SQL> select name from v$tablespace where name='UNDOTBS1';
no rows selected
SQL> select name from v$tablespace where name='UNDOTBS';
NAME
------------------------------
UNDOTBS
----Dataguard01
SQL*Plus: Release 12.1.0.1.0 Production on Wed Mar 7 03:19:31 2018
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> show parameter undo;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
temp_undo_enabled boolean FALSE
undo_management string AUTO
undo_retention integer 36000
undo_tablespace string UNDOTBS1
SQL> select name from v$tablespace where name='UNDOTBS1';
no rows selected
SQL> select name from v$tablespace where name='UNDOTBS';
NAME
------------------------------
UNDOTBS
[Updated on: Wed, 07 March 2018 06:04] Report message to a moderator
|
|
|
|
|
|
|
|
|
Re: UNDO TABLESPACE [message #668665 is a reply to message #668651] |
Thu, 08 March 2018 03:20 |
cookiemonster
Messages: 13959 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
daulat01 wrote on Wed, 07 March 2018 19:16Yes I clicked the link and find below the output after formatting
You may have clicked it but it's very obvious that you either:
a) didn't read the page that link goes to (you may have read the first part of the first sentence - there are more words in that sentence plus other sentences, you are supposed to read them to).
b) didn't understand what was written there.
Neither option reflects well on someone who wants a career in almost anything.
So read the page that link goes to. Note the bits that Littlefoot helpfully highlighted in red and try again.
|
|
|