Tivoli Tape Zero percent


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Tivoli Tape Zero percent
# 1  
Old 10-20-2010
Java Tivoli Tape Zero percent

Hii all,

If i insert zero percent tape in tivoli. Then tivoli will write data on it.

But zero percent tape has some files inside, its not a scratch tape.

Because if we recover data then tivoli can ask for zero percent tape.

But when tivoli will write data on a zero percent tape what will happen with the old data in zero percent tape. Is tivoli overwrite zero percent tape data completely or that data will be there and tivoli will use remainig area of the tape?

I'm confuse on it pls help me out.

takecare.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

A Large Percent Problem

Hello everyone, I have two matrices at same sizes. I need to re-calculate the numbers in matrix A according to the percentages in martix B it is like matrix A is 10.00 20.00 30.00 40.00 60.00 70.00 80.00 90.00 20.00 30.00 80.00 50.00 martix B is 00.08 00.05 ... (2 Replies)
Discussion started by: miriammiriam
2 Replies

2. AIX

AIX Tivoli Image Restore

Dear Team: I am new to this Forum and I need your help for my AIX restoration problem its very urgent my problem as follow failure I have a Tivoli Storage Manger was installed on that server. I created backup image using Tivoli and it created a set of files each file is around 2GB so... (1 Reply)
Discussion started by: Firas_Abed
1 Replies

3. Shell Programming and Scripting

awk if percent % checking

hi everyone, # cat a a 10% b 25.5% c 91% d 50% # cat a | awk '$2 >= 90%; END {print $_}' awk: $2 > 90%; END {print $_} awk: ^ syntax error awk: each rule must have a pattern or an action part how to do only print when 2nd coln >= 90%. Thanks (6 Replies)
Discussion started by: jimmy_y
6 Replies

4. UNIX for Dummies Questions & Answers

Replacing Tivoli Alerts in Shell scripts..!

Hello All, Currently in our current production environment in the existing shell scripts we were using Tivoli software to send email alerts, now we have a request from the client to replace the Tivoli with Fog Light software to send the email alerts. Could you please tell me whether it is... (0 Replies)
Discussion started by: Ariean
0 Replies

5. AIX

Tivoli 5.3

Hello everybody! I have IBM System Storage TS3200 Tape and I want to use it with Tivoli version 5.3 .. but during the Device Configuration withard Tivoli cant find TS3200 Device.. Hereis my question: is TS3200 supported for tivoli 5.3 ???? thank you very much (1 Reply)
Discussion started by: wwwzviadi
1 Replies

6. UNIX for Dummies Questions & Answers

Parity, SRM, VSA/Fusion, Service Portal, Remotely Anywhere, and Tivoli TEC.

Can some one explain or send me the links about these tools Parity, SRM, VSA/Fusion, Service Portal, Remotely Anywhere, and Tivoli TEC. (2 Replies)
Discussion started by: rags
2 Replies

7. AIX

Best Tivoli site for me ?

At work, I do Tivoli (v4.x) software distribution on AIX (v5.2) machines for clients all over the worlds. I know about IBM's own Tivoli forums but they seam to not be for the things I usualy want to ask. What would be the best place/forum to ask Tivoli questions from an operator and a... (1 Reply)
Discussion started by: Browser_ice
1 Replies

8. UNIX for Dummies Questions & Answers

what the %s does percent sign-s mean?

context: while reading tutorial on the read command, one of the first examples, demonstrating its use, follows as such: $ x=abc ; printf "x is now '%s'. Enter new value: " $x ; read x generating this output: x is now 'abc'. Enter new value: first, what does %s represent? I know... (3 Replies)
Discussion started by: ProGrammar
3 Replies
Login or Register to Ask a Question
TCOPY(1)						    BSD General Commands Manual 						  TCOPY(1)

NAME
tcopy -- copy and/or verify mag tapes SYNOPSIS
tcopy [-cvx] [-s maxblk] [src [dest]] DESCRIPTION
The tcopy utility is designed to copy magnetic tapes. The only assumption made about the tape layout is that there are two sequential EOF marks at the end. By default, the tcopy utility will print information about the sizes of records and files found on the /dev/sa0 tape, or on the tape specified by the src argument. If a destination tape is also specified by the dest argument, a copy of the source tape will be made. The blocking on the destination tape will be identical to that used on the source tape. Copying a tape will yield the same program output as if just printing the sizes. The following options are available: -c Copy src to dest and then verify that the two tapes are identical. -s maxblk Specify a maximum block size, maxblk. -v Given the two tapes src and dest, verify that they are identical. -x Output all informational messages to the standard error instead of the standard output. This option is useful when dest is given as /dev/stdout. SEE ALSO
mt(1), mtio(4) HISTORY
The tcopy command appeared in 4.3BSD. BUGS
Writing an image of a tape to a file does not preserve much more than the raw data. Block size(s) and tape EOF marks are lost which would otherwise be preserved in a tape-to-tape copy. End of data (EOD) is determined by two sequential EOF marks with no data between them. There used to be old systems which typically wrote three EOF's between tape files. The tcopy utility will erroneously stop copying early in this case. When using the copy/verify option -c, tcopy does not rewind the tapes prior to start. A rewind is performed after writing, prior to the ver- ification stage. If one does not start at the beginning-of-tape (BOT) then the comparison may not be of the intended data. BSD
December 20, 2006 BSD