Re: How do we change which nic on a client adsm contacts?

2002-03-15 Thread Mark Ray
The IP address is stored on the server in its arp table. You haven't said what plateform your server is on (NT, AIX, whatever) so, you have to flush your arp table, specific *to* your platform, then re-aquire the new NIC. The easiest way to re-aquire is simple to ping the client; that will

Filesize from client through server

2002-03-15 Thread Denzel, Richard van
Hi All, I would like to be able to retrieve the filesize etc. for the backupped files for a client through the TSM server (dsmadmc). I know this is possible through the client. But for automation sake it's in my opion better to let the server generate such listings. Is there anyone who knows

Re: Filesize from client through server

2002-03-15 Thread Christo Heuer
Nope - that info is hidden from the SQL administrator interface. Cheers Christo --- Hi All, I would like to be able to retrieve the filesize etc. for the backupped files for a client through the TSM server (dsmadmc). I know

Re: Problems with TDP for Oracle 2.2 on NT 6a.

2002-03-15 Thread James Thompson
Norbert, Post the contents of your dsm.opt and tdpo.opt. May be something in those that is causing the problem. But for trouble shooting, you should see what messages are being posted in the Tsm server's activity log as well as the error logs on the client system. The TSM Server activity log

Re: HELP with TSM and SAN

2002-03-15 Thread Eliza Lau
No, we don't have a SAN now. IBM is trying to sell us one. I am just looking into ways to incorporate it into our existing configuration before making a recommendation to my boss. Our Exchange database is about 40G. It is being backed up directly to tapes through the LAN to FC 3590E tape

Re: HELP with TSM and SAN

2002-03-15 Thread Michael Swinhoe
Wait until TSM version 5 is available (end of April) as that will allow you to do LAN free to disk as well as Tape under the same licence. Therefore you will be getting SANErgy for cheap. This will allow you to backup your SAN attached nodes to disk and then migrate the data to tape when the

Arhive Bit on Netware after Tape Backup/Restore

2002-03-15 Thread Andy Carlson
We have some big Netware (running Groupwise) servers that the admins will backup/upgrade os/restore using DLT tape instead of TSM. The problem is that they claim the arhive bit is set off, so TSM backs all the files up on the next incremental. Has anyone else experienced this? Is there a neat

script to see if TSM Server is down

2002-03-15 Thread Marc Levitan
Hi All - Does anyone have a script that will send out an email alert if the TSM server goes down. I am running AIX 4.3.0 TSM 3.7.4 Thanks! Marc Levitan Storage Manager PFPC Global Fund Services

Re: script to see if TSM Server is down

2002-03-15 Thread Taha, Hana
I am interested in a script that mails an alert if the TSM server goes down as well. Thank You, Hana Taha Systems Analyst Parker Drilling 1401 Enclave Suite 600 Houston, Texas 77077 281-406-2486 [EMAIL PROTECTED] -Original Message- From: Marc Levitan [mailto:[EMAIL PROTECTED]] Sent:

Re: script to see if TSM Server is down

2002-03-15 Thread PINNI, BALANAND (SBCSI)
On which Platform. -Original Message- From: Taha, Hana [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 10:40 AM To: [EMAIL PROTECTED] Subject: Re: script to see if TSM Server is down I am interested in a script that mails an alert if the TSM server goes down as well. Thank

Re: NFS MOUNTS

2002-03-15 Thread Warren, Matthew James
AFAIK dsmstat is a process that uns alongside dsmc and holds dsmc's hand when it scan NFS mount point to make sure it doesnt 'hang' if the NFS mountpoit is broken. If the mountpoint is not responding my understanding was dsmstat manipulates the situation so dsmc can carry on. I found this out

Re: script to see if TSM Server is down

2002-03-15 Thread Miles Purdy
if [[ `ps -ef | grep -c /usr/tivoli/tsm/server/bin/rc.adsmserv` -lt 1 ]]; then echo down; fi -- Miles Purdy System Manager Farm Income Programs Directorate Winnipeg, MB, CA [EMAIL PROTECTED] ph: (204)

Re: script to see if TSM Server is down

2002-03-15 Thread Taha, Hana
Oh, Sorry. AIX 4.3 Thank You, Hana Taha Systems Analyst Parker Drilling 1401 Enclave Suite 600 Houston, Texas 77077 281-406-2486 [EMAIL PROTECTED] -Original Message- From: PINNI, BALANAND (SBCSI) [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 10:43 AM To: [EMAIL PROTECTED]

Re: script to see if TSM Server is down

2002-03-15 Thread Andy Carlson
Here is what I do (crude, but it works). I do this from a box that TSM is not running on, in case not only TSM crashes, but the whole box crashes: #!/usr/bin/ksh ADMIN=userid ADMINPASS=passwrd ADSMPATH=/usr/bin $ADSMPATH/dsmadmc -id=$ADMIN -password=$ADMINPASS q proc /tmp/proc.out temp=`grep

Re: 2.8TB SQL Server Database Backup

2002-03-15 Thread Joshua S. Bassi
I knew I forgot something - Gigabit Ethernet. -- Joshua S. Bassi Sr. Solutions Architect @ rs-unix.com IBM Certified - AIX/HACMP, SAN, Shark Tivoli Certified Consultant- ADSM/TSM Cell (415) 215-0326 -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED]] On Behalf

Re: script to see if TSM Server is down

2002-03-15 Thread Shawn Bierman
#!/bin/sh ps -ef|grep dsmserv|grep -v grep if [[ $? -ne 0 ]]; then mail -s WARNING: TSM is down! root - EOF Please investigate... EOF fi Shawn L. Bierman Unix Technical Support Analyst II Methodist Healthcare Information Systems (901) 516-0143 (office) (901) 516-0043

Re: script to see if TSM Server is down

2002-03-15 Thread George Lesho
I wrote this one for the scheduler but you can modify the grep for the server process... #!/bin/ksh #check to make sure TSM scheduler running cd /usr/local/bin SCHED=$(ps -aef | grep -v grep | grep -v tsmsched.scr | grep sched) echo ${SCHED} | while read -r SCHEDULER_RUNNING do case

Re: script to see if TSM Server is down

2002-03-15 Thread Martin, Jon R.
If you have packaged IBM solution NSM it comes with a script named isitup. The script does advanced checking to see if the server is up. Otherwise, here is something simple for Unix ksh. # dsmadmc -id=xxx -pass=xxx 'quit' # Whether the server is up or down it will return you to the

Re: script to see if TSM Server is down

2002-03-15 Thread Fred Johanson
Mine is similar, but I found that q drive rarely hangs in a busy system. This follows a series of ping to check if the network connection is up (someone else gets called then). If operations gets notified by the server checker, they have an icon on their workstation which leads them to an ssh

Re: 2.8TB SQL Server Database Backup

2002-03-15 Thread Del Hoobler
I have a potential customer running a 2.8 TB SQL Server database on an 8-way NT server. What can I realistically expect to achieve in maximum backup throughput using TDP for SQL Server? Assume the 4-way Solaris TSM server has 8 AIT-2 tape drives dedicated to getting this backup performed

TSM Server 4.2.1.9 on Sun Solaris 8

2002-03-15 Thread Bruce Lowrie
Hello all, Running TSM 4.2.1.9 on a SUN E6000 with Solaris 8 in 64-bits mode. We run Veritas Volume Manager and File System as a Disk Mgr. We have two options for our TSM DB and LOG a) Use RAW partitions (Vertias VM partitions) b) Use File Systems (Veritas FS) FYI Our DB is

sleep style command in scripts

2002-03-15 Thread Joe Cascanette
Is there a command I can use in a TSM server script to provide a sleep or a wait function? Thanks Joe

Re: Easiest way to exclude all but one dir

2002-03-15 Thread Alex Paschal
Actually, even if it's not it's own filesystem, if you use the virtualmountpoint option it'll pretend it's a mountpoint and this solution will still work. Alex Paschal Storage Administrator Freightliner, LLC (503) 745-6850 phone/vmail -Original Message- From: Nicholas Cassimatis

Pl help me with this question?

2002-03-15 Thread PINNI, BALANAND (SBCSI)
This is my question. when TSM RUns it gives out summary at end i.e network xfer rate. Does this depend on quantity of data being sent or its ir respective of data being sent across pipeline. Because I see it speed is proportional to quantity of data being sent but as per summary and as per my

Re: NFS MOUNTS

2002-03-15 Thread Adams, Mark
All of the TSM code is on a local filesystem. Just TSM client activity hangs. Of course df will hang as well. -Original Message- From: David Longo [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 11:59 AM To: [EMAIL PROTECTED] Subject: Re: NFS MOUNTS Does the NFS server in

Re: Pl help me with this question?

2002-03-15 Thread David Longo
The network xfer rate is based on the amount of data sent across the network (including retries) compared to the time that data was transferring. The time while TSM is thinking and deciding what files from client to send and some other overhead time is not counted. The Aggregate xfer rate is the

Re: script to see if TSM Server is down

2002-03-15 Thread PINNI, BALANAND (SBCSI)
just say ps -ef|grep dsmserv|grep -v grep if [ $? -ne 0 ];then mail -s text [EMAIL PROTECTED] `echo TSM is down ` Or use Unix third party pager service to send the text.With pager cmd. Else use patrol. Balanand Pinni -Original Message- From: Taha, Hana [mailto:[EMAIL PROTECTED]] Sent:

Re: script to see if TSM Server is down *** Thanks! ***

2002-03-15 Thread Marc Levitan
Thank you to all who replied! Marc Levitan Storage Manager PFPC Global Fund Services

3494 Volume Stealing

2002-03-15 Thread Orville L. Lantto
I just tested a problem brought to me by one of my clients. They have one 3494 library shared by four TSM Servers. Using 4.2.1 TSM, properly configured with different 3494 Categories, it is possible for one TSM server to steal a volume that is checked in to another TSM server. This behavior is

Commands for querying a DLT library

2002-03-15 Thread Warner, Alan
I recently inherited an ADSM server connected to a DLT library. Can someone tell me how to query a DLT library for volumes in different statuses, e.g., volume present in library but not checked in? (I'm accustomed to using mtlib for my 3494, but mtlib does not work for the DLT.) Regards, Alan

Management Class/Node List

2002-03-15 Thread Dana Jaeger
We need to make sure nothing else uses a manangement class before we delete it and need to get a list of all the manangement classes that are in use on the tapes. (we know what is active on the server) Is there a way I can list out all the unique management classes and what node uses them as

Re: sleep style command in scripts

2002-03-15 Thread Seay, Paul
Most commands have a wait to complete function WAIT=YES. What is your problem you are trying to solve? -Original Message- From: Joe Cascanette [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 1:17 PM To: [EMAIL PROTECTED] Subject: sleep style command in scripts Is there a

Data Retention

2002-03-15 Thread Ward, Stuart
*SMers.. In the very near future I will need to put together a software and hardware proposal for data retention of approximately 50 years due to FDA regulations encompassing the medical industry. My main question would be the type of media to use currently that has any kind of magneto

Re: TSM Server 4.2.1.9 on Sun Solaris 8

2002-03-15 Thread Seay, Paul
I am not going to tell you which way to do it. But, basically, I would think you would want to use TSM buffers before Veritas FS caching, so I would go with raw if it will work. It also gets into mirroring your log and database will be faster depending on your disk solution. If you were using

MSSQL TDP License

2002-03-15 Thread Bob Booth - UIUC
Thanks to all, especially Del Hoobler, who helped with my last MS SQL TDP problems. Everything seems to be working as designed.. I am having a problem with the license though. At random times, the number of licensed MSSQL clients needs to be increased. It claims now that 4 are in use, but

Re: 3494 Volume Stealing

2002-03-15 Thread Davidson, Becky
What are the categories used? I would imagine if it didn't do it in 3.7.3 it won't in 4.2.1 I know what we had in 3.1 transferred fine to 4.1.2 Becky -Original Message- From: Orville L. Lantto [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 1:51 PM To: [EMAIL PROTECTED]

Re: Data Retention

2002-03-15 Thread David Longo
For a quick Friday afternoon response: There has been some discussion on this from time to time. In one respect it boils down to this: You can do the research on media and how long it lasts etc.etc. But, the main point of having long term stuff is being able at some future point, to retrieve

Re: 3494 Volume Stealing

2002-03-15 Thread Seay, Paul
Yes and no. Once a tape is ejected from the library, when it is reinserted, it is anybody's game because it does not belong to a specific TSM server. It is in FF00 status. So, if you do a checkin command with a range, search=yes, another TSM Server could get it. This is why I do checkin

Antwort: Submitting Requirements (was: Re: Exclude SYSTEM_OBJECT redux )

2002-03-15 Thread Gerd Becker
HI *SM'ers, same is possible in Germany by Guide Share Europe (GSE). We have a working group called Storage Management or System Managed Storage, formerly only OS/390 Storage Software, but now also for Themes like SAN and (one day extra) for Tivoli Storage Manager. Please visit www.gsenet.de. Our

Re: Data Retention

2002-03-15 Thread Dan Foster
Hot Diggety! Ward, Stuart was rumored to have written: In the very near future I will need to put together a software and hardware proposal for data retention of approximately 50 years due to FDA regulations encompassing the medical industry. Look at NASA. I've talked with various of their

Re: Data Retention: The real issue

2002-03-15 Thread Seay, Paul
This is the beauty of TSM. It can move the data from one set of volumes to another over time. You just have to ask it to do so. Meaning you do not have to worry about the media problem. What you have to worry about is the application that reads the data, the OS that the data was created on,

Re: 3494 Volume Stealing

2002-03-15 Thread Jim Healy
I currently have 4 TSM servers sharing one 3494 ,one version 4.1.4 and three using 3.7 I have each using seperate private categories and scratch categories I have each using specific ranges of tapes. I run checkin scratches each day for a specific range for each server. Seay, Paul [EMAIL

Re: 2.8TB SQL Server Database Backup

2002-03-15 Thread Seay, Paul
Del has given you the same analysis that I would have. I would arrive at the same numbers. Remember though that Del is talking about actual data backed up at 50MB/sec. So if your actual data in the database is 60% then the total time would be adjusted accordingly down from 16+ hours.

Re: 3494 Volume Stealing

2002-03-15 Thread Orville L. Lantto
The TSM Servers are defined with categories (Private,Scratch): One: 310,311 Two: 320,321 Three: 330,331 Four: 340,341 The Server option 3494Shared is set to Yes. Library Shared is set to no. Platform is AIX 4.3.3.9 Davidson, Becky [EMAIL PROTECTED] Sent by:

Re: 3494 Volume Stealing

2002-03-15 Thread Orville L. Lantto
The volume which was stolen was checked in to another TSM server with that server's scratch category code (verified by mtlib). Yes, this is very disturbing! Orville L. Lantto Datatrend Technologies, Inc. (http://www.datatrend.com) 121 Cheshire Lane #700 Minnetonka, MN 55305 Email: [EMAIL

Re: backup fails because inspection process takes too long.

2002-03-15 Thread Bill Mansfield
It sounds like L2 is talking about the Journal feature, which is available only on the Windows platforms. You might want to try the -incrbydate option on your daily backups, that will avoid the long download of info from the TSM server. I've seen this cut backup times by 80%. You still need to

Max number of clients on a single TSM server?

2002-03-15 Thread Warner, Alan
I'm currently supporting over 1500 clients (1250 PC's + 250 servers) off of a single 3466 Netstore box (that's an RS6000 with AIX and TSM server running on it, plus 3494 tape library). Database size utilized is about 62 GB. I'm about to push my luck and add another 500 PC clients to this. I

Re: Data Retention

2002-03-15 Thread Ochs, Duane
I had to do something similar a couple of years back. But after exhaustive research the best practices are very expensive and require additional personnel to make sure all the steps are followed. First: You need a starting media, 12 years ago it was 9-track tape, which under the best conditions

Re: TSM 5.1

2002-03-15 Thread Bill Mansfield
Most unpanaca like. I naively assumed that the dual copy would merge backup streams from multiple nodes within collocation limits. _ William Mansfield Senior Consultant Solution Technology, Inc Andy Carlson [EMAIL PROTECTED] Sent by: ADSM: Dist Stor Manager

Re: Max number of clients on a single TSM server?

2002-03-15 Thread Seay, Paul
I have heard of databases of 160 GB and 8000 clients, but the end-game is how much can a 3466 handle and how long you can afford to wait for a backup of the database to complete. -Original Message- From: Warner, Alan [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 6:03 PM To:

Re: 3494 Volume Stealing

2002-03-15 Thread Seay, Paul
I am beginning to think Tivoli Development has a bug where they are not clearing the buffer out in the lmcpd interface code or something similar. The way it works is it gives you 100 tapes at a time. I have heard of this problem where some mainframe tapes got swallowed as well. I would open a

Re: Data Retention

2002-03-15 Thread Joshua S. Bassi
To provide you a direct answer to your question: I have found good experience with the IBM 3995 Optical Jukebox. I believe the shelf life on optical media is 100 years. -- Joshua S. Bassi Sr. Solutions Architect @ rs-unix.com IBM Certified - AIX/HACMP, SAN, Shark Tivoli Certified Consultant-

AW: Problems with TDP for Oracle 2.2 on NT 6a.

2002-03-15 Thread NKM-Solutions
Hi James, this is a good idea. I will do this. After I have the massage, I will reply the group. Thanks Norbert with kind regards / mit freundlichen Gruessen Norbert Martin High End Storage Consultant DISK / TAPE / SAN / TSM Mobile:+49-170-2234111 E-Mail:[EMAIL PROTECTED]

Re: NFS MOUNTS

2002-03-15 Thread Kent Monthei
First, did you stop/restart the scheduler on the TSM Clients after the downtime and after each configuration change? If not, try that before reading on. My understanding (consistent with past reading and experience) is that 'dsmc' won't pick up changes unless/until it's restarted, and won't

Re: Max number of clients on a single TSM server?

2002-03-15 Thread Kelly J. Lipp
Hopefully, the culprit will respond directly, but I'll kick in what I know of them. There is a large US company that is backing up some 30,000 desktop clients to TSM. They use 10 NT Servers to handle this load. That breaks down to 3000 clients/system. So, yes, it can be done. I don't know

TSM on AIX 4.3.3 goes to sleep

2002-03-15 Thread John Nawotka
Dear TSM Gurus, We are running TSM Version 4.1 on AIX 4.3.3, both Server and client. We have one node that for some reason has started taking a lot longer to complete its backup than any of the other similar nodes. When examining various log files we have found that the process seems to stop

Re: TSM on AIX 4.3.3 goes to sleep

2002-03-15 Thread asr
The two sessions you see starting up initially are probably the thread that queries the server, and the thread that starts searching the filesystems. = On Sat, 16 Mar 2002 11:33:15 +1100, John Nawotka [EMAIL PROTECTED] said: We have one node that for some reason has started taking a lot

Re: 2.8TB SQL Server Database Backup

2002-03-15 Thread Seay, Paul
The bottleneck here is going to be the 6MB/sec tape drives or the disk in the NT server, probably. I believe there is a way to do multi-streaming capability on SQL server, multiple streams to the same or more than one drive, but I have not read the documentation in a month or so. I will let you

Re: 3494 library with J and K type cartridges

2002-03-15 Thread Nicholas Cassimatis
You can checkin all the J tapes as Private (not Scratch), and define them to the storage pool you want them assigned to. This works fine for Primary pools, but isn't so fun for copy pools, as you're constantly checking the tapes back in. Nick Cassimatis [EMAIL PROTECTED] Today is the tomorrow

War stories: Restores 200GB ?

2002-03-15 Thread asr
Greetings, all. We've got a major system here at UF we're about to do some upgrading on. The folks who are closest to the upgrade are asking some questions about recovery times in the Worst of Cases. I've had to tell them I can't really predict how long the restore would take, in practical

Re: tdpsqlc query error: ACO0261I

2002-03-15 Thread Del Hoobler
The select @@servername returned lowercase pc1162. The DBA had some difficulty changing it to uppercase due to replication subscriptions or some such, but after he did up date it, it now works. Does this mean that TDP SQL cannot handle mixed case server names? (That last question is just

Re: TSM on AIX 4.3.3 goes to sleep

2002-03-15 Thread John Nawotka
Allen, Thank you for your advice. I'll take a look around the actual filesystems (as you suggest). Regards John - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 12:24 PM Subject: Re: TSM on AIX 4.3.3 goes to sleep The two sessions

scheduler service overwrites baclient's password

2002-03-15 Thread Joel Fuhrman
The password key which is located in the registry at HKLM\software\ibm\adsm\backupclient\nodes\W7\adsm is removed when the scheduler service is started. The scheduled log contains: 03/15/2002 18:11:11 Querying server for next scheduled event. 03/15/2002 18:11:11 Node Name: W7 03/15/2002

Re: NFS MOUNTS

2002-03-15 Thread Bill Mansfield
The tradeoff there is loss of data integrity on disk files. _ William Mansfield Senior Consultant Solution Technology, Inc Robert Clark [EMAIL PROTECTED] Sent by: ADSM: Dist Stor Manager [EMAIL PROTECTED] 03/13/2002 03:42 PM Please respond to ADSM: Dist Stor

Re: Oracle on Linux backups

2002-03-15 Thread Bill Mansfield
The other thing associated with that redbook is some C code for adsmpipe, which allows piping data through the api to TSM. You can make backups without putting the data on disk. _ William Mansfield Senior Consultant Solution Technology, Inc Thomas A. La Porte

Re: Filesize from client through server

2002-03-15 Thread Bill Mansfield
select filespace_name,filename,file_size from contents where node_name='YOURNODE' Or you can query the backups table to get different data: select filespace_name,hl_name,ll_name,backup_date from backups where node_name='YOURNODE' _ William Mansfield Senior