Tape media catalogs in RSM and Ntbackup utility do not match

G

Guest

I was having issue with tape media catalog created under RSM and Ntbackup (Restore) utility. Sometimes, the media was listed under RSM but not under Ntbackup, and vice versa. As you already knew, if the media/file/folder is not listed under Restore in Ntbackup utility, you cannnot restore the file/folder you needed.

The following the batch I use for my daily backup process:

@echo off
rem ------------------ Change folder directory ---------------------
cd /d c:\rsm
rem
rem ------------------ Refresh Remote Storage Manager so it sees the tape -----------------
rem
start /wait rsm.exe refresh /LF"Compaq DLT8000 Drive"
rem
rem ------------------ Go to sleep mode --------------------
rem
sleep 60
rem
rem ------------------ Get system date and write to log file ---------------------
rem
for /f "Tokens=1-4 Delims=/ " %%i in ('date /t') do set dt=%%i-%%j-%%k-%%l
for /f "Tokens=1" %%i in ('time /t') do set tm=-%%i
set tm=%tm::=-%
set dtt=%dt%%tm%
rem
echo Daily normal backup starts on %dtt%. >> c:\rsm\backup.log
rem
rem ------------------ Start normal full backup from Monday through Friday -------------------
rem
c:\winnt\system32\ntbackup.exe backup "@C:\rsm\daily.bks" /n "Media-%dtt%" /d "Weekday %dtt%" /v:yes /r:no /rs:no /hc:blush:n /m normal /j "Weekday %dtt%" /l:f /p "DLT" /UM
rem
rem ------------------ Get system date and write to log file ----------------------
rem
for /f "Tokens=1" %%i in ('time /t') do set tm=-%%i
set tm=%tm::=-%
set dtt=%dt%%tm%
rem
echo Daily normal backup finished on %dtt%. >> c:\rsm\backup.log
rem
exit

I knew the batch file is good because when I ran it manually, it did what it supposed to. But, when I schedule using AT scheduler or Schedule Task, that's where the problem occurs.

I change the tape media everyday and reuse the media every two weeks. I had tried all the technet and troubleshooting guide I found on Microsoft site. None of them fixes my problem. Server is running Window 2000 Server with SP3. I cannot install SP4 because the application is not compatible with it.

Has anyone of you had the same issue as I do? If so, how do you fix it?

Thanks.
 
J

Jeff Patterson [MSFT]

KMC,

Call our support group (800-936-4900) and ask for the following hotfix:

330306 Removable Storage May Not Refresh the Tape
http://support.microsoft.com/?id=330306

This fix is included with Service Pack 4.

Jeff Patterson
Microsoft Support

This posting is provided "AS IS" with no warranties and confers no rights.
Please reply to the newsgroup so that others may benefit.


KMC said:
I was having issue with tape media catalog created under RSM and Ntbackup
(Restore) utility. Sometimes, the media was listed under RSM but not under
Ntbackup, and vice versa. As you already knew, if the media/file/folder is
not listed under Restore in Ntbackup utility, you cannnot restore the
file/folder you needed.
The following the batch I use for my daily backup process:

@echo off
rem ------------------ Change folder directory ---------------------
cd /d c:\rsm
rem
rem ------------------ Refresh Remote Storage Manager so it sees the tape -----------------
rem
start /wait rsm.exe refresh /LF"Compaq DLT8000 Drive"
rem
rem ------------------ Go to sleep mode --------------------
rem
sleep 60
rem
rem ------------------ Get system date and write to log file ---------------------
rem
for /f "Tokens=1-4 Delims=/ " %%i in ('date /t') do set dt=%%i-%%j-%%k-%%l
for /f "Tokens=1" %%i in ('time /t') do set tm=-%%i
set tm=%tm::=-%
set dtt=%dt%%tm%
rem
echo Daily normal backup starts on %dtt%. >> c:\rsm\backup.log
rem
rem ------------------ Start normal full backup from Monday through Friday -------------------
rem
c:\winnt\system32\ntbackup.exe backup "@C:\rsm\daily.bks" /n "Media-%dtt%"
/d "Weekday %dtt%" /v:yes /r:no /rs:no /hc:blush:n /m normal /j "Weekday %dtt%"
/l:f /p "DLT" /UM
rem
rem ------------------ Get system date and write to log file ----------------------
rem
for /f "Tokens=1" %%i in ('time /t') do set tm=-%%i
set tm=%tm::=-%
set dtt=%dt%%tm%
rem
echo Daily normal backup finished on %dtt%. >> c:\rsm\backup.log
rem
exit

I knew the batch file is good because when I ran it manually, it did what
it supposed to. But, when I schedule using AT scheduler or Schedule Task,
that's where the problem occurs.
I change the tape media everyday and reuse the media every two weeks. I
had tried all the technet and troubleshooting guide I found on Microsoft
site. None of them fixes my problem. Server is running Window 2000 Server
with SP3. I cannot install SP4 because the application is not compatible
with it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top