Some question

2014-01-03 Thread mik
Hi, Little up anyone can help me please ? Regards, Mickael. +-- |This was sent by bobpatrick808...@yahoo.fr via Backup Central. |Forward SPAM to ab...@backupcentral.com. +-

Script for nodes

2014-01-03 Thread Robert Ouzen
Hi to all Did anyone have a script to see which nodes are on storage pools and can share it. For now I am running a query nodedata. T.I.A Best Regards Robert

Antwort: [ADSM-L] TDPOracle version for oracle R12 on AIX

2014-01-03 Thread Rainer Holzinger
Hi Bill, as far as I can see, even TDPO 7.1 is not supporting Oracle 12 on AIX. However, Oracle 12 support is given within TDPO 7.1 for Linux, Solaris and Windows, which of course doesn't solve your requirement. Check out this link: http://www-01.ibm.com/support/docview.wss?uid=swg21654366 Best

Export node bad tape

2014-01-03 Thread mik
Hi everybody, I try to export node from old server (5.5 lto3) to new serveur (6.3 lto6) but i have an error with a tape and the export node failed because of that, i have no copypool (because the 5.5 lto3 have one drive since 1month and the second server was new (interest of the export node)).

Re: Export node bad tape

2014-01-03 Thread Rick Adamson
Mickael, Have you tried to run an audit on the tape volume that is having the issue? audit volume fix=yes -Rick Adamson -Original Message- From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of mik Sent: Friday, January 03, 2014 8:15 AM To: ADSM-L@VM.MARIST.EDU Subject

Export node bad tape

2014-01-03 Thread mik
Hi and thanks for reply Rick, The audit volume was in progress, i hope the audit was good. Happy new year to you and your family. Regars, Mickael. +-- |This was sent by bobpatrick808...@yahoo.fr via Backup Central. |Forward SPA

Re: empty offsite volume can't be reclaimed

2014-01-03 Thread Cameron Hanover
The update/audit didn't work. TSM still tried to mount the tape. I did find a similar APAR that claims it was fixed. http://www-01.ibm.com/support/docview.wss?uid=swg1PK25386 I may just recall the tapes and audit/delete, rather than open an APAR. -- Cameron Hanover chano...@umich.edu "Giving mon

Re: Script for nodes

2014-01-03 Thread J. Pohlmann
Try select unique(node_name), stgpool_name from occupancy Joerg Pohlmann -Original Message- From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of Robert Ouzen Sent: Friday, January 03, 2014 00:59 To: ADSM-L@VM.MARIST.EDU Subject: [ADSM-L] Script for nodes Hi to all D

Include/exclude confusion

2014-01-03 Thread Tom Taylor
Hello, I want to understand something and what I read online is confusing. On a specific machine I want to back up a folder on "F:" but nothing else currently under the backup tab of the GUI i do NOT have "F:" selected, then under include/exclude I have "INCLUDE "F:\foldername" STANDAR

Re: Include/exclude confusion

2014-01-03 Thread Dwight Cook
Getting it to not even look at the rest of the F drive probably isn't going to happen... And I'm old and more command line oriented but here it goes... Depending on how many other directories there are at the root level of F you could have in your dsm.opt file: SUBDIR YES DOMAIN F: exclude.dir F:\

Re: Script for nodes

2014-01-03 Thread Grigori Solonovitch
Maybe you can use script: select node_name as Node_Name, count(*) as File_Spaces, sum(physical_mb) as Physical_MB, sum(logical_mb) as Logical_MB, sum(num_files) as Files from occupancy where stgpool_name = upper('$1') group by node_name with storage pool name as an argument or just replace $1 b