tablespace in backup mode

2001-12-10 Thread Charlie Mengler

Which table/view do I query to determine if any tablespace
has been left in hot backup mode?

-- 
Charlie Mengler   Maintenance Warehouse  
[EMAIL PROTECTED]  6041 Scripps Summit Ct.
858-831-2229  San Diego, CA 92131
Rose are red. Violets are blue. I'm schizophrenic  I am too!
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: tablespace in backup mode

2001-12-10 Thread Hallas John
Title: RE: tablespace in backup mode





Charlie
Select status from V$backup. If status = 'ACTIVE' then tablespace in hot backup mode


HTH


John


-Original Message-
From: Charlie Mengler [mailto:[EMAIL PROTECTED]]
Sent: 10 December 2001 14:26
To: Multiple recipients of list ORACLE-L
Subject: tablespace in backup mode



Which table/view do I query to determine if any tablespace
has been left in hot backup mode?


-- 
Charlie Mengler Maintenance Warehouse 
[EMAIL PROTECTED] 6041 Scripps Summit Ct.
858-831-2229 San Diego, CA 92131 
Rose are red. Violets are blue. I'm schizophrenic  I am too!
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
 INET: [EMAIL PROTECTED]


Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
San Diego, California -- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).




=
This electronic message contains information from the mmO2 plc Group 
which may be privileged or confidential. The information is intended to be 
for the use of the individual(s) or entity named above. If you are not the 
intended recipient be aware that any disclosure, copying, distribution or 
use of the contents of this information is prohibited. If you have received 
this electronic message in error, please notify us by telephone or email 
(to the numbers or address above) immediately.
=




Re: tablespace in backup mode

2001-12-10 Thread Susan M. Trumpet

Check V$BACKUP view, and look at the status column. This tells if the files
of the tbs were left in hot backup mode.

Susan

- Original Message -
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Monday, December 10, 2001 10:25 AM


 Which table/view do I query to determine if any tablespace
 has been left in hot backup mode?

 --
 Charlie Mengler   Maintenance Warehouse
 [EMAIL PROTECTED]  6041 Scripps Summit Ct.
 858-831-2229  San Diego, CA 92131
 Rose are red. Violets are blue. I'm schizophrenic  I am too!
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Charlie Mengler
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Susan M. Trumpet
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: tablespace in backup mode

2001-12-10 Thread Robertson Lee - lerobe

This should do the trick

select d.file#, t.name,b.status from v$datafile d,v$tablespace t,
v$backup b
where d.ts# = t.ts#
and d.file# = b.file#
and b.status = 'ACTIVE'

Regards

Lee
-Original Message-
Sent: 10 December 2001 14:26
To: Multiple recipients of list ORACLE-L


Which table/view do I query to determine if any tablespace
has been left in hot backup mode?

-- 
Charlie Mengler   Maintenance Warehouse  
[EMAIL PROTECTED]  6041 Scripps Summit Ct.
858-831-2229  San Diego, CA 92131
Rose are red. Violets are blue. I'm schizophrenic  I am too!
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: tablespace in backup mode

2001-12-10 Thread Adams, Matthew (GEA, 088130)
Title: RE: tablespace in backup mode





check the STATUS column in v$backup



Matt Adams - GE Appliances - [EMAIL PROTECTED]
If C gives you engouth rope to hang yourself, then C++ gives
you enough rope to hang yourself, your dog, your co-workers,
and everyone in your neighborhood.


 -Original Message-
 From: Charlie Mengler [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 10, 2001 9:26 AM
 To: Multiple recipients of list ORACLE-L
 Subject: tablespace in backup mode
 
 
 Which table/view do I query to determine if any tablespace
 has been left in hot backup mode?
 
 -- 
 Charlie Mengler Maintenance Warehouse 
 [EMAIL PROTECTED] 6041 Scripps Summit Ct.
 858-831-2229 San Diego, CA 92131 
 Rose are red. Violets are blue. I'm schizophrenic  I am too!
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Charlie Mengler
 INET: [EMAIL PROTECTED]
 
 Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
 San Diego, California -- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from). You may
 also send the HELP command for other information (like subscribing).
 





RE: tablespace in backup mode

2001-12-10 Thread Rao, Maheswara

Charlie,

Select * from v$backup;

If any tablespace is left in backup mode, then, you would see --- ACTIVE ---
under the column status.


Rao

-Original Message-
Sent: Monday, December 10, 2001 9:26 AM
To: Multiple recipients of list ORACLE-L

Which table/view do I query to determine if any tablespace
has been left in hot backup mode?

--
Charlie Mengler   Maintenance Warehouse 
[EMAIL PROTECTED]  6041 Scripps Summit Ct.
858-831-2229  San Diego, CA 92131   
Rose are red. Violets are blue. I'm schizophrenic  I am too!
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rao, Maheswara
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).