Re: Why are my "temp" files being backed up?
I think the error is the *\temp and *\...\Temp. In our environment we use: INCLEXCL exclude '*:\...\temp\...\*' INCLEXCL exclude '*:\...\*.tmp' INCLEXCL exclude '*:\...\tmp\...\*' INCLEXCL exclude '*:\temp\...\*' It's a little overkill but we don't get anything under any directory named "temp" or "tmp". Dan Fiske -Original Message- From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of Zoltan Forray/AC/VCU Sent: Tuesday, April 17, 2012 2:00 PM To: ADSM-L@VM.MARIST.EDU Subject: [ADSM-L] Why are my "temp" files being backed up? Windows 2003 server - 6.3 client. This machine is very memory constrained. 43M files. Using journaling and MEMORYEFFICIENT DISKCACHEMETHOD. When I use the CLI and do a "q inclexcl", I see: Exclude All *\temp\* Server Exclude All *\...\Temp\...\* Server So I know the cloptset is working. Nothing in the dsm.opt: NODENAME ACIPENSER.VCU.EDU TCPSERVERADDRESS TSMLINUX8.UCC.VCU.EDU PASSWORDACCESS GENERATE SCHEDLOGR 30 D ERRORLOGR 30 D *MEMORYEFFICIENT YES MEMORYEFFICIENT DISKCACHEMETHOD diskcachelocation g:\tsm_cache *SNAPSHOTPROVIDER VSS VERBOSE Yet I see entries like: 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26194-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26195-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26196-4900.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26197-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26198-4900.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26199-4900.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26200-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26201-4900.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26202-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26203-1656.mem [Sent] 04/17/2012 04:20:18 Retry # 1 Expiring-->0 \\acipenser\c$\Documents and Settings\wshuart\Local Settings\Temp\list26204-1656.mem [Sent] in the dsmsched.log file? What am I missing? I am also dealing with some kind of "memory" issue eventhough I am using memoryefficient: 04/15/2012 18:24:54 ANS1030E The operating system refused a TSM request for memory allocation. 04/15/2012 18:24:54 ANS1512E Scheduled event 'RESEARCH-COMPUTING' failed. Return code = 12. 04/16/2012 17:08:01 ANS1814E Unable to start the scheduled event 'ACIPENSER.SQL.DAILY' 04/16/2012 17:08:01 ANS1815E Either the window has elapsed or the schedule has been deleted 04/16/2012 18:29:55 ANS1999E Incremental processing of '\\acipenser\i$' stopped. 04/16/2012 18:29:56 ANS1030E The operating system refused a TSM request for memory allocation. 04/16/2012 18:29:56 ANS1512E Scheduled event 'RESEARCH-COMPUTING' failed. Return code = 12. Any thoughts on this?
Re: disabe/enable a sched via command line
David, Try setting the expiration of the schedule to a prior day. i.e. upd sched DOMAIN 0100 exp=12/11/2011 Then when you want the schedule "reactivated" set back to "NEVER" upd sched NOARCHIVE 0100 exp=Never Not sure if this will do what you want but its worth testing. Daniel Fiske -Original Message- From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of Tyree, David Sent: Wednesday, December 14, 2011 1:05 PM To: ADSM-L@VM.MARIST.EDU Subject: [ADSM-L] disabe/enable a sched via command line I'm trying to figure out to enable and disable client schedules from the command line. I've looked over the online help and elsewhere but no luck. If the command was for an admin sched I would do "update sched something type=admin active=yes/no" . But I don't see a similar command for client schedules. thanks David Tyree Interface Analyst South Georgia Medical Center 229.333.1155
Re: Sql query problem in tsm 6.2
For some reason 6.2 does not like linking tables in the old way. You need to use aliases. Try this select statement: select ev.node_name, ev.status, nd.email_address from events ev, nodes nd where ev.node_name = nd.node_name and ev.status != 'Completed' and ev.scheduled_start> '2011-09-06 08:00:00' and ev.scheduled_start< '2011-09-07 07:00:00' Dan Fiske -Original Message- From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of Lee, Gary D. Sent: Wednesday, September 07, 2011 9:02 AM To: ADSM-L@VM.MARIST.EDU Subject: [ADSM-L] Sql query problem in tsm 6.2 TSM folks, tsm server 6.2.2 on redhat enterprise linux 6.0 I submit the following file as a macro and recieve the errors below. This query works in tsm 5.5 file c:\tsmscripts\pl3 - select events.node_name, events.status, nodes.email_address from events, - nodes where events.node_name = nodes.node_name and - events.status != 'Completed' and - events.scheduled_start> '2011-09-06 08:00:00' and - events.scheduled_start< '2011-09-07 07:00:00' tsm screen cut below. tsm: TSM01>macro c:\tsmscripts\pl3 ANS8000I Server command: 'select events.node_name, events.status, nodes.email_ ad dress from events, nodes where events.node_name = nodes.node_name and events.s ta tus != 'Completed' and events.scheduled_start> '2011-09-06 08:00:00' and event s. scheduled_start< '2011-09-07 07:00:00'' ANR0162W Supplemental database diagnostic information: -1:42S22:-206 ([ IBM][CLI Driver][DB2/LINUXX8664] SQL0206N "NODES.NODE_NAME" is not valid in the context where it is used. SQLSTATE=42703 ). ANR2940E The command 'select events.node_name , events.status , nodes.email_address from events , NODESVIEW where events.node_name = nodes.node_name and events.status != 'Completed' and events.scheduled_start > ' 2011-09-06 08:00:00' and events.scheduled_start < '2011-09-07 07:00:00' ' contains an unknown SQL column name. ANS8001I Return code 3. ANS8 29E Macro processing terminated. tsm: TSM01> Gary Lee Senior System Programmer Ball State University phone: 765-285-1310
Changing media type on a primary pool
At present I have 9940 tape as my primary tape pool and T10k as my copy tape pool. I want to convert (or change) the primary tape pool to T10k. Does anyone know the easiest way to do this? Thanks Dan Fiske