alright I will try that but will not know until monday. Since I don't have authority to kick it off during the day. Thanks and will let you know.
Main Topics
Browse All TopicsMy big goal is that I want nothing under /u01/oradata or /u03/oradata backed up via TSM because they are oracle files, and I don't need them backed up. What is the syntax on how to do that. It is still backing them up. There are other directories under /u01 and / u03 that I want backed up, so I want to just exclude those for right until I understand the syntax of this file.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
still did not work, sorry for the delay
This is the inclexcl.list
EXCLUDE.FILE /u01/oradata/.../*
include /u01/app/.../*
EXCLUDE /u02/*
EXCLUDE.DIR /u02
include.file /u03/backups/.../*
EXCLUDE.FILE /u03/oradata/.../*
EXCLUDE.FILE /u01/app/oracle/product/10
EXCLUDE /tsmdb/*
EXCLUDE.DIR /tsmdb
EXCLUDE /tsmlog/*
EXCLUDE.DIR /tsmlog
EXCLUDE /osupdates/*
EXCLUDE.DIR /osupdates
here is some snippets of the output
06/04/09 03:32:40 Normal File--> 52,429,312 /u01/oradata/ODS/redo_ODS_
06/04/09 03:32:44 Normal File--> 52,429,312 /u01/oradata/ODS/redo_ODS_
06/04/09 03:32:49 Normal File--> 52,429,312 /u01/oradata/ODS/redo_ODS_
06/04/09 03:37:24 Retry # 3 Normal File--> 5,980,160 /u03/oradata/APPWORX/ctrl_
06/04/09 03:37:24 Retry # 4 Normal File--> 5,980,160 /u03/oradata/APPWORX/ctrl_
06/04/09 03:37:24 Retry # 5 Normal File--> 5,980,160 /u03/oradata/APPWORX/ctrl_
I will try the exclude.dir /.../oradata
Hi again,
so I assume you have the entry
MANAGEDSERVICES SCHEDULE
in your dsm.sys?
If yes, find dsmcad's PID by issuing 'ps -ef | grep dsmcad | grep -v grep' and kill it ('kill [pid as in 2nd row of ps]'), then start it using
'/usr/tivoli/tsm/clie
If you are missing the MANAGEDSERVICES entry in dsm.sys, dsmcad has nothing to do with the scheduler.
In this case find the PID of 'dsmc sched' by issuing 'ps -ef | grep "dsmc sched" | grep -v grep' and kill it ('kill [pid as in 2nd row of ps]'), then start it using as it's done (most probably) in inittab. If you don't find it there, try
'/usr/tivoli/tsm/client
HTH
wmp
Alternatively -
in /etc/inittab:
tsm:once:/usr/tivoli/tsm/c
followed by "kill -HUP 1" to restart.
Also make sure you run latest maintenance level for your TSM client, and appropriate Technology/Maintenance package for AIX:
ftp://ftp.software.ibm.com
I like this AIX site fro ML and PTF frontend:
http://support.bull.com/ol
what does this mean
06/11/09 05:39:59 ANS1898I ***** Processed 179,500 files *****
06/11/09 05:39:59 Expiring--> 5,980,160 /u03/oradata/APPWORX/ctrl_
06/11/09 05:39:59 Expiring--> 52,429,312 /u03/oradata/APPWORX/redo_
06/11/09 05:39:59 Expiring--> 52,429,312 /u03/oradata/APPWORX/redo_
VS
06/11/09 05:39:59 Directory--> 256 /u03/backups/pmftest [Sent]
06/11/09 05:39:59 Directory--> 256 /u03/backups/APPWORX/archi
06/11/09 05:39:59 Directory--> 256 /u03/backups/APPWORX/archi
06/11/09 05:39:59 Directory--> 256 /u03/backups/APPWORX/archi
key word I am see is one is expiring and the other just says sent. I hope it means what I think it means that the expiring is not sending(backing up) but saying it not going to do it anymore.
Hi,
I mean you mean the right thing when meaning that expiring means 'not sending'.
Indeed, in view of the log above, TSM just sends out the directories for backup ("[Directory ... Sent]"), while it has recognized that you no longer wish to backup the files, and thus flags them in its inventory as expired ("[Expiring ... Sent]").
The actual removal from the TSM DB will later be done during the next 'Expire Inventory' run on the server, and deletion from physical media will be done in the course of 'Space Reclamation'.
In my opinion it is very desirable to exclude only files and not directories (not everybody sees it that way, it seems).
In case of complete filesystem or disk loss you can later easily recreate the directory structure using standard TSM (dsmc),
while recovery of the database files will be done with TDP or whatever. As far as I know, TDP does not recreate directory structures during recovery!
Short, your EXCLUDE directive works now as it's supposed to, and everything is OK regarding /u01/oradata... and /u03/oradata...
Cheers
wmp
'Expiring' means in this case that all versions of the file are flagged for deletion on the server. You told TSM by your new "EXCLUDE" directive that you don't want/need the file backed up anymore, and TSM honors that this way.
With 'Expiring' you never send actual file data, but only the deletion request (actually a request to set a deletion flag).
wmp
Business Accounts
Answer for Membership
by: woolmilkporcPosted on 2009-05-29 at 05:46:44ID: 24502294
Hi,
first I would recommend that you exclude only files, so that the directory structure can be recovered, if needed.
Second, you'll have to keep in mind thet the exclude/include directives are processed bottom-up, the last entry is processed first, and processing stops when a match is found.
Third, you don't need a separate inclexcl file anymore. Just put the statements into your dsm.sys file under the appropriate server stanza.
OK, I would recommend
EXCLUDE.FILE /u01/oradata/.../*
EXCLUDE. FILE /u03/oradata/.../*
A similar setup works for me without any problem.
I see you're already familiar with the '...' syntax. This is TSM specific and just means 'any directory'.
wmp