Search:
Type: Posts; User: CoMaboy
Search: Search took 0.00 seconds.
-
06-13-2013, 08:02 AM
Thread: New server hardware - need advice
by CoMaboy- Replies
- 4
- Views
- 218
Thx guys,
Database is some 30GB atm with...
Thx guys,
Database is some 30GB atm with 42TB of data in primary storage. However, the amount of data is expected to increase to 200-250TB over the next year. Can I safely assume that my DB... -
06-10-2013, 04:50 AM
Thread: New server hardware - need advice
by CoMaboy- Replies
- 4
- Views
- 218
New server hardware - need advice
Hi,
We're about to go shopping for a new tsm server and I was wondering if you guys could give me some input. We're currently running TSM 6.3 on an IBM system x3650 M1 (type 7979) and a TS3200... -
06-08-2013, 09:35 PM
Thread: Where's that $!@# tape!
by CoMaboy- Replies
- 2
- Views
- 363
assuming you have one set of credentials that...
assuming you have one set of credentials that works on all servers you could do something like this.
@ECHO OFF
TITLE Where's that $!@# tape!
SET tsm_servers=tsmserver1 tsmserver2... -
06-07-2013, 12:25 PM
Thread: Different result from select in v5 vs v6
by CoMaboy- Replies
- 3
- Views
- 412
If you want uptime in YY-MM-DD HH:MM:SS, try...
If you want uptime in YY-MM-DD HH:MM:SS, try this.
SELECT -
TRANSLATE('ab-cd-ef gh:ij:kl', DIGITS(current_timestamp-restart_date), '__abcdefghijkl_____',' ') AS yy_mm_dd_hh_mm_ss_uptime -... -
06-06-2013, 09:03 AM
Thread: Format HH:MM:SS field
by CoMaboy- Replies
- 10
- Views
- 789
Hey Maatje :)
You can sort the results by the...
Hey Maatje :)
You can sort the results by the original column name bytes_received. You don't need to put the column you sort by in the select part. And if you wanted to, you could also display... -
05-23-2013, 03:03 PM
Thread: Format HH:MM:SS field
by CoMaboy- Replies
- 10
- Views
- 789
IF is not an option afaik but you can use...
IF is not an option afaik but you can use case-when-else-end.
SELECT -
CASE -
WHEN bytes_received>1099511627776 THEN CAST(DEC(bytes_received)/1024/1024/1024/1024 AS DEC(6,2))||' TB' -... -
05-23-2013, 02:37 PM
Thread: Format HH:MM:SS field
by CoMaboy- Replies
- 10
- Views
- 789
translate replaces the characters in the first...
translate replaces the characters in the first string with characters in the second using the third as a sort of mask. any characters in the third string, not present in the first will be ignored.
-
05-22-2013, 04:08 PM
Thread: Format HH:MM:SS field
by CoMaboy- Replies
- 10
- Views
- 789
Or a bit shorter and easier to read...
...
Or a bit shorter and easier to read...
select client_name, session_id, state, -
date(start_time) as "Start Date", -
time(start_time) as "Start Time", -
cast(float(bytes_sent/1024/1024) as... -
05-15-2013, 04:16 AM
Thread: How to identify nodes NOT in a nodegroup
by CoMaboy- Replies
- 4
- Views
- 315
select node_name from nodes where node_name not...
select node_name from nodes where node_name not in (select varchar(node_name) from nodegroup)
-
05-08-2013, 03:02 PM
Thread: Deleting Old storage pools
by CoMaboy- Replies
- 9
- Views
- 615
this might work, else QUERY VOLUME h00338l3 F=D...
this might work, else QUERY VOLUME h00338l3 F=D would be usefull.
MOVE MEDIA h00338l3 STG=* WHEREST=MOUNTABLEN REM=N CHECKL=N -
04-09-2013, 05:17 PM
Thread: Archiving mail journal
by CoMaboy- Replies
- 4
- Views
- 346
So I did some testing with the last journal. I...
So I did some testing with the last journal. I found that the baclient is able to delete the file succesfully when I perform a dbcache flush on the domino console prior to archiving the journal. That...
-
03-18-2013, 07:53 PM
- Replies
- 11
- Views
- 572
Ok found it! You do need the >=17 after all....
Ok found it! You do need the >=17 after all. Without it - it seems to give you last period plus everything in the current 24h period. That's why you see it increase with time. Any how, I changed it...
-
03-18-2013, 03:38 PM
- Replies
- 11
- Views
- 572
Weird! I notice one script has the OR...
Weird! I notice one script has the OR (HOUR(current_timestamp)>=17 - where the other has OR (end_time>timestamp(date....
Fix that first and see what it does. I would say you don't need >=17 but... -
03-18-2013, 12:24 PM
- Replies
- 11
- Views
- 572
hmmm that's strange, shouldn't be possible since...
hmmm that's strange, shouldn't be possible since the query fetches a 24h period that's always in the past.. Ran it a couple of times here and it seems to work flawlessly. Could you pls run them both...
-
03-15-2013, 08:04 PM
- Replies
- 11
- Views
- 572
Here you go
SELECT -
...
Here you go
SELECT -
CAST(FLOAT(SUM(bytes))/1024/1024/1024 AS DEC(10,2)) AS total_gb -
FROM -
summary -
WHERE -
activity NOT IN ('TAPE MOUNT','EXPIRATION') -
AND... -
03-14-2013, 07:37 PM
- Replies
- 11
- Views
- 572
Something like this perhaps?
SELECT -
...
Something like this perhaps?
SELECT -
VARCHAR(activity,20) AS activity, -
CAST(FLOAT(SUM(bytes))/1024/1024/1024 AS DEC(10,2)) AS gb -
FROM -
summary -
WHERE - -
03-11-2013, 10:47 AM
Thread: SQL Quesry
by CoMaboy- Replies
- 1
- Views
- 296
Changed one of my existing scripts a bit to suit...
Changed one of my existing scripts a bit to suit your needs. This should do what you want it to.
SELECT -
VARCHAR(entity,18) AS "Node", -
VARCHAR(schedule_name,15) AS "Schedule", -
CASE -... -
03-11-2013, 07:58 AM
Thread: Archiving mail journal
by CoMaboy- Replies
- 4
- Views
- 346
Thanks moon-buddy, it's not the active...
Thanks moon-buddy, it's not the active mailjournal i'm talking abt. I'm looking to archive and delete an old mail journal after domino has rolled over to a new one. So basically it's just a regular...
-
03-08-2013, 03:23 AM
Thread: Archiving mail journal
by CoMaboy- Replies
- 4
- Views
- 346
Archiving mail journal
Hi guys,
Not really a tdp question but posting it here hoping a domino admin can help me out. We've got mail journaling set up to periodically rollover to a new journal. Old journal is then... -
03-07-2013, 10:19 AM
Thread: Joined or Nested SQL Statement
by CoMaboy- Replies
- 3
- Views
- 388
This works for me on TSM 6.3
select -
...
This works for me on TSM 6.3
select -
OO.NODE_NAME, -
NN.PLATFORM_NAME, -
SUM(OO.PHYSICAL_MB) AS "MB's USED", -
SUM(OO.NUM_FILES) AS "NUMBER OF FILES" -
FROM -
OCCUPANCY OO ,... -
11-14-2012, 12:04 PM
Thread: Can I add timestamps to backup messages?
by CoMaboy- Replies
- 3
- Views
- 415
Not possible with just tsm afaik but you could...
Not possible with just tsm afaik but you could have another script append date/time info to the logfile at regular intervals. You won't get a timestamp for every line in the log but it would give you...
-
11-13-2012, 08:31 PM
Thread: New setup TL3310 LTO 5
by CoMaboy- Replies
- 7
- Views
- 502
Try Fix Central...
Try Fix Central
-
11-11-2012, 06:54 PM
Thread: SQL "cast" rounding for tsm v 5 vs v6
by CoMaboy- Replies
- 1
- Views
- 580
SELECT cast(entity AS varchar(9)) AS "Node name",...
SELECT cast(entity AS varchar(9)) AS "Node name", -
CAST(DEC(sum(bytes))/1024/1024 AS decimal(8,2)) AS "MB Xfer ", -
CAST(DEC(sum(bytes))/1024/1024/1024 AS decimal(8,2)) AS "GB Xfer " -
FROM... -
10-21-2012, 07:25 PM
- Replies
- 3
- Views
- 842
select -
entity, -
date(start_time) -
from...
select -
entity, -
date(start_time) -
from -
summary -
where -
activity in ('BACKUP','ARCHIVE') -
and entity='$2' -
and start_time>current_timestamp-$1 hours -
06-15-2012, 05:53 AM
- Replies
- 12
- Views
- 2,479
By now I have found a workaround for this...
By now I have found a workaround for this problem. After checking in LTO5 scratch tapes I manually define them in the LTO5 storage pool. Now I don't have any real LTO5 scratch tapes but rather empty...
-
06-08-2012, 06:26 PM
- Replies
- 12
- Views
- 2,479
You're right, the select * from libvolumes gives...
You're right, the select * from libvolumes gives me the exact same information as q libv f=d does. Device Type and Media Type are blank for all my tapes including the scratch tapes. Someone I know...
-
06-08-2012, 12:13 PM
- Replies
- 7
- Views
- 1,057
Use this to see a list of tables you can query...
Use this to see a list of tables you can query within tsm.
tsm: SERVER1>select tabname from syscat.tables
Pick your favorite table and run this to see the different columns in that table and what... -
06-08-2012, 07:04 AM
- Replies
- 12
- Views
- 2,479
When the format does get passed back, where does...
When the format does get passed back, where does TSM store this information for scratch volumes?
EDIT:
I found a topic which mentioned a tsm command i didn't know, SHOW SLOTS. It seems TSM has... -
06-08-2012, 05:01 AM
- Replies
- 12
- Views
- 2,479
Hi mikeymac, I have seen you mention that redbook...
Hi mikeymac, I have seen you mention that redbook in various other posts while looking for a solution. I think most of it applies regardless of the fact I run TSM on Windows. Still can't get my head...
-
06-07-2012, 04:13 PM
- Replies
- 12
- Views
- 2,479
Thanks guys for the info, looks like we will need...
Thanks guys for the info, looks like we will need to switch to LTO5 for the off-site pool as well and eventually get rid of the LTO3 drives and tapes.
I have seen some screenshots from somebody... -
06-05-2012, 05:48 PM
- Replies
- 12
- Views
- 2,479
TS3200 Mixed LTO3 and LTO5 mounting tapes to wrong drive
Hello,
We've been running TSM 6.3.1.0 on Windows Server 2008 SP2 hooked up to a TS3200 tape library with two LTO3 drives. A couple of weeks ago we've added two LTO5 drives to the library and have...
Results 1 to 31 of 31

