Re: select command for Successful / Failed backups

2007-01-10 Thread Bos, Karel
Q event



-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Gopinathan, Srinath
Sent: woensdag 10 januari 2007 6:25
To: ADSM-L@VM.MARIST.EDU
Subject: select command for Successful / Failed backups

Hi,

1) Is there any command to find the list of all failed backups in a
server?
2) Is there any command to find the list of all successful backups in a
server?

Regards,
Srinath G

This e-mail has been scanned for viruses by the Cable  Wireless e-mail
security system - powered by MessageLabs. For more information on a
proactive managed e-mail security service,  visit
http://www.cw.com/uk/emailprotection/ 
 
The information contained in this e-mail is confidential and may also be
subject to legal privilege. It is intended only for the recipient(s)
named above. If you are not named above as a recipient, you must not
read, copy, disclose, forward or otherwise use the information contained
in this email. If you have received this e-mail in error, please notify
the sender (whose contact details are above) immediately by reply e-mail
and delete the message and any attachments without retaining any copies.

ÿþDit bericht is vertrouwelijk en kan 
geheime informatie bevatten enkel

bestemd voor de geadresseerde. Indien 
dit bericht niet voor u is bestemd,

verzoeken wij u dit onmiddellijk aan 
ons te melden en het bericht te

vernietigen.

Aangezien de integriteit van het 
bericht niet veilig gesteld is middels

verzending via internet, kan Atos 
Origin niet aansprakelijk worden 
gehouden

voor de inhoud daarvan.

Hoewel wij ons inspannen een virusvrij 
netwerk te hanteren, geven

wij geen enkele garantie dat dit 
bericht virusvrij is, noch aanvaarden 
wij

enige aansprakelijkheid voor de 
mogelijke aanwezigheid van een virus in 
dit

bericht.

 

Op al onze rechtsverhoudingen, 
aanbiedingen en overeenkomsten 
waaronder

Atos Origin goederen en/of diensten 
levert zijn met uitsluiting van alle

andere voorwaarden de 
Leveringsvoorwaarden van Atos Origin 
van toepassing.

Deze worden u op aanvraag direct 
kosteloos toegezonden.

 

This e-mail and the documents attached 
are confidential and intended solely

for the addressee; it may also be 
privileged. If you receive this e-mail

in error, please notify the sender 
immediately and destroy it.

As its integrity cannot be secured on 
the Internet, the Atos Origin group

liability cannot be triggered for the 
message content. Although the

sender endeavours to maintain a 
computer virus-free network, the sender

does not warrant that this transmission 
is virus-free and will not be

liable for any damages resulting from 
any virus transmitted.

 

On all offers and agreements under 
which Atos Origin supplies goods and/or

services of whatever nature, the Terms 
of Delivery from Atos Origin

exclusively apply. 

The Terms of Delivery shall be promptly 
submitted to you on your request

Re: select command for Successful / Failed backups

2007-01-10 Thread Richard Sims

On Jan 10, 2007, at 7:50 AM, Bos, Karel wrote:


Q event



Amen.  This TSM tracking of Backup event success is one of the great
benefits of using TSM client scheduling, as opposed to having an
operating system scheduling subsystem perform backups.  Centralized
reporting and control.

   Richard Sims


Re: select command for Successful / Failed backups

2007-01-10 Thread goc

- Original Message -
From: Richard Sims [EMAIL PROTECTED]
To: ADSM-L@VM.MARIST.EDU
Sent: Wednesday, January 10, 2007 2:20 PM
Subject: Re: select command for Successful / Failed backups



On Jan 10, 2007, at 7:50 AM, Bos, Karel wrote:


Q event



Amen.  This TSM tracking of Backup event success is one of the great
benefits of using TSM client scheduling, as opposed to having an
operating system scheduling subsystem perform backups.  Centralized
reporting and control.

   Richard Sims



absolutely agree, even my SOX reports are generated with q event :-)

goran


Re: select command for Successful / Failed backups

2007-01-10 Thread Mark Stapleton
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
 Gopinathan, Srinath
1) Is there any command to find the list of all failed backups in a
server?
2) Is there any command to find the list of all successful backups in a
server?

From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Bos, Karel
Q event

Well, let's narrow that down some:

Q EVENT * * EXCEPT=YES

will show only the failed and missed backups

Q EVENT * *

will show all backups, successful, failed, or missed.

--
Mark Stapleton ([EMAIL PROTECTED])
Senior consultant


Re: select command for Successful / Failed backups

2007-01-10 Thread William Boyer
Yes, but only for today...since midnight last night until midnight today. Most 
backup windows span midnight..starting early evening
and running through the morning. Use the BEGIND=,BEGINT=, ENDD= and ENDT= to 
get the range you need.

Q EV * * BEGINT=-24 ENDD=+0 ENDT=NOW EX=YES

Will show the missed/failed schedules for the last 24-hours.

Bill Boyer

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Mark 
Stapleton
Sent: Wednesday, January 10, 2007 11:36 AM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: select command for Successful / Failed backups

From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of  
Gopinathan, Srinath
1) Is there any command to find the list of all failed backups in a
server?
2) Is there any command to find the list of all successful backups in a
server?

From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Bos, Karel
Q event

Well, let's narrow that down some:

Q EVENT * * EXCEPT=YES

will show only the failed and missed backups

Q EVENT * *

will show all backups, successful, failed, or missed.

--
Mark Stapleton ([EMAIL PROTECTED])
Senior consultant


Re: select command for Successful / Failed backups

2007-01-10 Thread Sung Y Lee
Here's a nice  select command to see more detailed information .
So I don't take all the credit, this select was posted while back one time
or other.  You can play around with date # to increase or decrease # of
days of report.


select entity as node_name, date(start_time) as date, cast(activity as
varchar(10)) as activity, -
time(start_time) as start,time(end_time) as end, -
cast(substr(cast(end_time-start_time as char(20)),3,8) as char(8)) as
Length,-
cast(bytes/1024/1024/1024 as decimal(6,2)) as -
Gigabytes,cast(affected as decimal(7,0)) as files, successful from summary
where -
start_time=current_timestamp - 1 day and activity='BACKUP' -
order by successful, node_name


I dont' think q event is a select statement.



ADSM: Dist Stor Manager ADSM-L@VM.MARIST.EDU wrote on 01/10/2007
12:25:10 AM:

 Hi,

 1) Is there any command to find the list of all failed backups in a
 server?
 2) Is there any command to find the list of all successful backups in a
 server?

 Regards,
 Srinath G

 This e-mail has been scanned for viruses by the Cable  Wireless e-
 mail security system - powered by MessageLabs. For more information
 on a proactive managed e-mail security service,  visit http://www.
 cw.com/uk/emailprotection/

 The information contained in this e-mail is confidential and may
 also be subject to legal privilege. It is intended only for the
 recipient(s) named above. If you are not named above as a recipient,
 you must not read, copy, disclose, forward or otherwise use the
 information contained in this email. If you have received this e-
 mail in error, please notify the sender (whose contact details are
 above) immediately by reply e-mail and delete the message and any
 attachments without retaining any copies.