Search:

Type: Posts; User: ChrisRees

Page 1 of 12 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: Querry help

    by ChrisRees
    Replies
    3
    Views
    279

    A slightly different take on moon-buddy' select...

    A slightly different take on moon-buddy' select statement

    select stgpool_name, count(*) from volumeusage where node_name='node_name' group by stgpool_name
  2. Hi I came across rpad in this thread ...

    Hi

    I came across rpad in this thread

    http://adsm.org/forum/showthread.php?25089-Awful-SQL-output-with-v6&highlight=rpad

    Cheers
  3. Hi Try this select rpad(volume_name,9) as...

    Hi

    Try this

    select rpad(volume_name,9) as volume, rpad(stgpool_name,13) as stgpool from volumes where DEVCLASS_NAME='TEST' order by stgpool

    Hope that helps
  4. Replies
    3
    Views
    464

    Hi I just tried the same thing with a windows...

    Hi

    I just tried the same thing with a windows host and using fsid from 5.5.4 to 6.3 TSM servers and it worked ok and kept c$

    No clues in the actlog as to why this happened ?

    Cheers
  5. Hi This should do what you want.. SELECT...

    Hi

    This should do what you want..

    SELECT aa.node_name, bb.filespace_name, bb.stgpool_name, SUM(bb.logical_mb) AS "Total MB" FROM nodes aa, occupancy bb where aa.lastacc_time<=(current_timestamp...
  6. Hi "dsmc q filespace" would be a good place...

    Hi

    "dsmc q filespace" would be a good place to start.

    Cheers
  7. Has anyone tried running a 6.3 Library manager...

    Has anyone tried running a 6.3 Library manager with a 5.5.4 library client ?

    I might need to do this for a short period.
  8. Replies
    5
    Views
    675

    Hi What is it exactly that you are not sure...

    Hi

    What is it exactly that you are not sure about?
  9. Replies
    3
    Views
    650

    You could also query the actlog and search for ...

    You could also query the actlog and search for ANR0415I

    tsm: STSM01>help ANR0415I
    ANR0415I Session session number proxied by storage agent name started
    for node node name.
    ...
  10. Replies
    6
    Views
    751

    Hi Check that expire inventory and reclamation...

    Hi

    Check that expire inventory and reclamation jobs are running properly.

    Also if you are desperate for scratch tapes and have reusedelay setup for some of your storage pools, you could...
  11. Hi try this, select distinct...

    Hi

    try this,

    select distinct events.node_name, events.status, nodes.platform_name from events, nodes where events.node_name=nodes.node_name and events.status<>'Completed' and...
  12. Hi I thnk this will work Change the last...

    Hi

    I thnk this will work

    Change the last part to be

    date(events.scheduled_start)>='2012-03-28'

    Cheers
  13. Hi You could do select distinct node_name...

    Hi

    You could do

    select distinct node_name from backups where class_name='MGMTCLASS_NAME'

    This could take along time to process !
  14. You would need to run cfgmgr first to bring in...

    You would need to run cfgmgr first to bring in the new additional smc device

    then

    chdev -l smc0 -a alt_pathing=yes
    chdev -l smc1 -a alt_pathing=yes
  15. Replies
    5
    Views
    1,235

    Hi The only thing I can think is that perhaps...

    Hi

    The only thing I can think is that perhaps the physical labels on the tapes have got damaged in some way, resulting the the barcode scanner not being able to read it properly. Have you...
  16. Hi I think you want the "define backupset" ...

    Hi

    I think you want the "define backupset" command

    "Use this command to define a client backup set that was previously
    generated on one server and make it available to the server running...
  17. Replies
    1
    Views
    614

    Try this select distinct volume_name,node_name...

    Try this

    select distinct volume_name,node_name from volumeusage

    Cheers
  18. Hi try this select...

    Hi

    try this

    select volume_name,last_write_date from volumes where LAST_WRITE_DATE<='2011-06-01 00:00:00' order by last_write_date
  19. Replies
    7
    Views
    1,023

    Its not somehow got excluded has it ? Post the...

    Its not somehow got excluded has it ?

    Post the output of

    dsmc q inclexcl

    Cheers
  20. Replies
    7
    Views
    1,388

    So what version of firmware are you running now...

    So what version of firmware are you running now on the library ?

    I'm going to be upgrading from 7422 -> 8930 -> A470 -> B180

    Is there anyway I can check which sort of picker we have? I...
  21. Replies
    7
    Views
    1,023

    Looks like everything is ok, its just that no...

    Looks like everything is ok, its just that no files changed since the last incremental.

    To test , create a file in /oracle/product and re-run your incremental backup.
  22. Replies
    4
    Views
    956

    Excellent... good news..

    Excellent... good news..
  23. Replies
    7
    Views
    2,464

    Thanks for the replies... The firmware update...

    Thanks for the replies...

    The firmware update is going to be a bit of a pain... the readme states

    "2. Firmware must be upgraded in steps if the firmware update crosses major releases. For...
  24. Replies
    2
    Views
    393

    Hi This should do it (TSM 5.5) select...

    Hi

    This should do it (TSM 5.5)

    select distinct volume_name,stgpool_name from volumeusage where copy_type='ARCHIVE'

    Hope that helps
  25. Replies
    4
    Views
    956

    Hi For whichever client this is , have you...

    Hi

    For whichever client this is , have you tried using the TSM client web GUI.... for example, if its an AIX client you will need the dsmcad process running and then point your web browser at ...
  26. Replies
    7
    Views
    2,464

    Well its taken a while but I'm finally in a...

    Well its taken a while but I'm finally in a position to move ahead. We actually got 4 LTO5 drives installed in frame 2. Currently the library does not recognise them as LTO5 because of the firmware...
  27. Replies
    7
    Views
    1,388

    Hi I'd be very interested to hear how you get...

    Hi

    I'd be very interested to hear how you get on with this as I'm about to replace LTO3 with LTO5 and enable ALMS on our 3584 in the next couple of weeks.

    Could you post the exact firmware...
  28. Hi Yes, just use a comma seperated list with...

    Hi

    Yes, just use a comma seperated list with the directory= statement..

    for example
    define devclass fileclass devtype=file directory=/fileclass1,/fileclass2,/fileclass3

    look at "help def...
  29. I think this answers your question ...

    I think this answers your question

    http://publib.boulder.ibm.com/infocenter/tsminfo/v6r2/index.jsp?topic=%2Fcom.ibm.itsm.srv.doc%2Ft_dedup_setup.html

    CHeers
  30. Hi As long as FILEA is a primary storage pool...

    Hi

    As long as FILEA is a primary storage pool you should be fine to send Archive data to it.

    Cheers
  31. Replies
    2
    Views
    2,298

    Hi This might help EVent ...

    Hi

    This might help

    EVent
    Specifies that the retention time specified in the RETVER
    parameter is initiated at the time a client application notifies
    the server of a...
  32. HI No there are no file devclasses defined....

    HI

    No there are no file devclasses defined. This NFS mount is used to store an offsite copy of our DR plans,volhist,devconfig.

    On the one TSM server where I have seen this the NFS mount is...
  33. When NFS hangs library stops mounting tapes

    Hi

    I've seen this a couple of times now and wondered if anyone can provide an explanation

    Server - AIX 6.1 TL5
    Atape.driver - 12.2.9.0
    TSM Server - 5.5.4.0

    In a nutshell what happens is,...
  34. Replies
    3
    Views
    711

    Hi You can't tell migration to take priority...

    Hi

    You can't tell migration to take priority over reclamation so as Hema said you need to schedule things slightly differently, perhaps change reclamation to only use 1 process.

    If your...
  35. Hi Yes of course - use the maxpro option with...

    Hi

    Yes of course - use the maxpro option with backup stgpool command. For example:

    backup stgp stgpoolA offsitepoolA maxpro=2


    For more info do:
    help backup stgp from the tsm server...
  36. Replies
    3
    Views
    582

    moitweety It sounds like your a little...

    moitweety

    It sounds like your a little confused about what an incremental file backup is in TSM.. By default (unless using sub-file backup) if a file changes the whole file is backed up by the...
  37. Replies
    4
    Views
    1,723

    You can try a restore, obviously you'll use the...

    You can try a restore, obviously you'll use the timestamp that you can see from the "db2adtul query db" command. It might not work though as you cannot specify <nodename> and <password> with db2...
  38. Replies
    4
    Views
    1,723

    Hi do you get any errors at all when you use...

    Hi

    do you get any errors at all when you use the db2 user? or is it just it finds no backup images?

    Cheers
  39. Replies
    7
    Views
    616

    Hi On the HPUX server can you not use...

    Hi

    On the HPUX server can you not use something like this is your dsm.sys to tell it to use the storage agent on the AIX server. Admittedly this will still invole a network element but would...
  40. Replies
    2
    Views
    702

    Hi How big is your recovery log ? Cheers

    Hi

    How big is your recovery log ?

    Cheers
  41. Replies
    4
    Views
    720

    Hi You might also want to consider using the...

    Hi

    You might also want to consider using the compression option if you need to reduce the number of tapes this will use. I've got a BW database approx 1Tb that compresses to a 200Gb backup. The...
  42. Try this thread ...

    Try this thread

    http://adsm.org/forum/showthread.php?19337-Including-tmp-FS-in-scheduled-backup

    answers your question I think
  43. for each node you want to use the client...

    for each node you want to use the client optionset just do

    update node <nodename> cloptset=<cloptsetname>

    you could use the wheredomain or whereplatform options as well if you needed to..

    HTH
  44. Replies
    7
    Views
    885

    robocopy would do the rsync equivilent for your...

    robocopy would do the rsync equivilent for your windows server...
  45. Hi how do you store you archive logs on TSM ?...

    Hi

    how do you store you archive logs on TSM ? Do they go to a disk pool or do they share the same tape stgpool as the database backups ?

    could you post the tsm server actlog a few minutes...
Results 1 to 45 of 500
Page 1 of 12 1 2 3 4