Thursday, August 27, 2009

To know onsite and offsite tapes using select statements.

For Auditing use below select statements for ONSITE tapes:

tsm: server>select volume_name,access from volumes where access<>'OFFSITE'


Select statement for OFFSITE tapes:

tsm: server>select volume_name,access from volumes where access='OFFSITE'

Saturday, July 11, 2009

Installing Ubuntu software. link to download ISO image.

For installing linux software
http://releases.ubuntu.com/jaunty/ubuntu-9.04-desktop-i386.iso
or


then Write it on a CD to make a bootable copy and to install insert the CD and select the desired options.




Sunday, May 31, 2009

Restoring a nodes data.

RESTORES
--------

To restore a d:/mydir , as it was on july 4th , 2001

>>>> res d:/mydir/* -pitdate=07/05/2001 -pittime=07:00:00 -subdir=yes


Find tapes needed to restore a node
>>>>select distinct node_name,volume_name,stgpool_name
from volumeusage where node_name='xxxxx'

Restore a file with spaces in the name , Enclose the filepath in quotes.
>>>>>tsm> restore "\\server name\c$\\PROGRAM FILES\COMMON FILES\file name.ext"

Saturday, May 30, 2009

Alternate server Restores (Restoring node A data on other node B).

ALTERNATE SERVER RESTORES ( 2 ways )
-------------------------
First way:

dsm.opt:
changing the dsm.opt file. Say you want to restore client A's filespaces to client B, Just go into the dsm.opt of clientB, and change the NODENAME parameter from ClientB to ClientA. You can then kick off a normal restore.



Second way:

grant access :
safe way is to grant access. Issue this command from the DSM prompt in ServerA
SET Access Backup * Server_B

the recovery command is

res -fromnode=serverA serverA/filename serverB/filename



Saturday, April 25, 2009

To delete a node and its associated files from TSM server.

Follow these steps to delete a node from TSM server.

1)delete association domain_name schedule_name node_name1,node_name2,....

2)del filespaces node1 * (this removes all backup data for node1)

3)remove node node_name.

Wednesday, April 1, 2009

move nodes data to tape when Disk space is full

for an example, lets say we wanted to move something to tape.
1. q occ relofa1
Look for the /opt/app/....  filesystem that is using 735449.7

/opt/app/oraclefa64 seems to be the filesystem in this example.

2. Move the data to tape:
Move nodedata relofa1 from=nasoff to=lto-off fi=/opt/app/oraclefa64 maxpr=2

Wednesday, March 18, 2009