<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The NetWorker Blog &#187; Basics</title>
	<atom:link href="http://nsrd.info/blog/category/basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://nsrd.info/blog</link>
	<description>EMC NetWorker commentary from a long term NetWorker consultant and backup theorist</description>
	<lastBuildDate>Wed, 01 Sep 2010 21:38:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Basics &#8211; Specifying a default Jukebox</title>
		<link>http://nsrd.info/blog/2010/08/05/basics-specifying-a-default-jukebox/</link>
		<comments>http://nsrd.info/blog/2010/08/05/basics-specifying-a-default-jukebox/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 19:03:14 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[default jukebox]]></category>
		<category><![CDATA[jukebox]]></category>
		<category><![CDATA[NSR_JUKEBOX]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=2444</guid>
		<description><![CDATA[<p>If you&#8217;ve got multiple jukeboxes within a NetWorker environment, but primarily work with one of them, you may find &#8216;nsrjb&#8217; to be a bit of a pain any time you forget to specify the jukebox name. If you&#8217;re not familiar with this, here&#8217;s how nsrjb reacts in this situation:</p>
[root@tara ~]# nsrjb
1:	VTL1 	[enabled]
2:	VTL2 	[enabled]
No jukebox selected.
Please [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/10/basics-peeking-inside-your-jukebox-without-leaving-your-desk/' rel='bookmark' title='Permanent Link: Basics &#8211; Peeking inside your jukebox without leaving your desk'>Basics &#8211; Peeking inside your jukebox without leaving your desk</a> <small>In order to speed up jukebox operations, NetWorker maintains a...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/16/staging-and-connectivity-loss/' rel='bookmark' title='Permanent Link: Staging and Connectivity Loss'>Staging and Connectivity Loss</a> <small>For a while now I&#8217;ve been working with EMC support...</small></li>
<li><a href='http://nsrd.info/blog/2010/02/27/basic-svtls-and-default-media-sizes/' rel='bookmark' title='Permanent Link: Basics &#8211; VTLs and default media sizes'>Basics &#8211; VTLs and default media sizes</a> <small>While this is pertinent to all versions of NetWorker, it...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve got multiple jukeboxes within a NetWorker environment, but primarily work with one of them, you may find &#8216;nsrjb&#8217; to be a bit of a pain any time you forget to specify the jukebox name. If you&#8217;re not familiar with this, here&#8217;s how nsrjb reacts in this situation:</p>
<pre>[root@tara ~]# nsrjb
1:	VTL1 	[enabled]
2:	VTL2 	[enabled]
No jukebox selected.
Please select a jukebox to use:? [1] _</pre>
<p>(Slight aside: never assume the numbered list is the same; NetWorker doesn&#8217;t guarantee the order being the same between executions &#8211; in fact, I actually only put in an RFE about this a couple of days ago, as I&#8217;m hoping it could at least be alphabetically ordered at all times&#8230;)</p>
<p>If you want to avoid the jukebox-prompt from nsrjb, one of the easiest ways is to specify the jukebox name as part of the command &#8211; e.g.,</p>
<pre>[root@tara ~]# nsrjb -j VTL1</pre>
<p>That&#8217;s fine of course, but if the vast majority of the time you perform operations on a single jukebox, you can specify a default jukebox as an environment variable (NSR_JUKEBOX) and streamline your processes. For example, on Linux, using the bash, this might look as follows:</p>
<pre>[root@tara ~]# export NSR_JUKEBOX=VTL1
[root@tara ~]# nsrjb</pre>
<pre>Jukebox VTL1: (Ready to accept commands)
slot  volume         pool           barcode   volume id        recyclable
1: 800840L4       ClientTesting  800840L4  3814088325       no
2: 800841L4       ClientTesting  800841L4  3797311146       no
3: 800842L4       ClientTesting  800842L4  3847642669       no
4: 800843L4       ClientTesting  800843L4  3780533937       no
5: 800844L4       ClientTesting  800844L4  3763756765       yes
6: 800845L4       ClientTesting  800845L4  3864419885       yes
&lt;snip&gt;</pre>
<p>Being an environment variable, this is something you can choose to set locally – say, on a per storage-node basis, when you have multiple storage nodes. It&#8217;s relatively common for instance to have a tape library on one or more storage nodes, so for the appropriate logins (or even at a system level) on each storage node it would be possible to set the local jukebox as the default, thereby streamlining usage of the units.</p>
<p>As an example, here&#8217;s a lab storage node with the setting in use:</p>
<pre>[root@fawn ~]# export NSR_JUKEBOX="rd=fawn:VTL3"
[root@fawn ~]# nsrjb -s tara</pre>
<pre>Jukebox rd=fawn:VTL3: (Ready to accept commands)
&lt;snip&gt;</pre>
<p>For something that can take you less than 30 seconds to set, the environment variable NSR_JUKEBOX can certainly be a big time saver if you have multiple jukeboxes in your environment and (like me) you&#8217;re a command line junkie.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;submitHeadline=Basics+%26%238211%3B+Specifying+a+default+Jukebox&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;title=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;title=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;title=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;bm_description=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;T=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;title=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;title=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%26%238211%3B+Specifying+a+default+Jukebox+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F08%2F05%2Fbasics-specifying-a-default-jukebox%2F&amp;t=Basics+%26%238211%3B+Specifying+a+default+Jukebox" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/10/basics-peeking-inside-your-jukebox-without-leaving-your-desk/' rel='bookmark' title='Permanent Link: Basics &#8211; Peeking inside your jukebox without leaving your desk'>Basics &#8211; Peeking inside your jukebox without leaving your desk</a> <small>In order to speed up jukebox operations, NetWorker maintains a...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/16/staging-and-connectivity-loss/' rel='bookmark' title='Permanent Link: Staging and Connectivity Loss'>Staging and Connectivity Loss</a> <small>For a while now I&#8217;ve been working with EMC support...</small></li>
<li><a href='http://nsrd.info/blog/2010/02/27/basic-svtls-and-default-media-sizes/' rel='bookmark' title='Permanent Link: Basics &#8211; VTLs and default media sizes'>Basics &#8211; VTLs and default media sizes</a> <small>While this is pertinent to all versions of NetWorker, it...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/08/05/basics-specifying-a-default-jukebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics &#8211; Recovering from an aborted saveset</title>
		<link>http://nsrd.info/blog/2010/04/24/basics-recovering-from-an-aborted-saveset/</link>
		<comments>http://nsrd.info/blog/2010/04/24/basics-recovering-from-an-aborted-saveset/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 21:39:15 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[aborted]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Saveset]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=2210</guid>
		<description><![CDATA[<p>Normally you don&#8217;t want to be in this position, but sometimes you&#8217;ll strike a situation where the only possible location of data that you need to get back is in a saveset that aborted (i.e., failed) during the backup process. Now, if the saveset/media is almost completely hosed, you&#8217;re probably going to need to recover [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/' rel='bookmark' title='Permanent Link: Basics &#8211; Need a different volume from pool &#8230;'>Basics &#8211; Need a different volume from pool &#8230;</a> <small>The scenario: A clone or stage operation has aborted (or...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/21/basics-directed-recoveries/' rel='bookmark' title='Permanent Link: Basics &#8211; Directed Recoveries'>Basics &#8211; Directed Recoveries</a> <small>Periodically people who are new to NetWorker will lament that...</small></li>
<li><a href='http://nsrd.info/blog/2010/04/19/basics-skip-and-forget/' rel='bookmark' title='Permanent Link: Basics &#8211; Skip and Forget'>Basics &#8211; Skip and Forget</a> <small>For quite a while I worked under the assumption that...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Normally you don&#8217;t want to be in this position, but sometimes you&#8217;ll strike a situation where the only possible location of data that you need to get back is in a saveset that aborted (i.e., failed) during the backup process. Now, if the saveset/media is almost completely hosed, you&#8217;re probably going to need to recover using the <a title="Recovering with scanner and uasm" href="http://nsrd.info/blog/2009/04/22/recovering-with-scanner-and-uasm/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F04%2F22%2Frecovering-with-scanner-and-uasm%2F','Recovering+with+scanner+and+uasm')" target="_blank">scanner|uasm process</a>, but if it was just a case of a failed backup, you can direct a partial saveset recovery using the <em>recover</em> command.</p>
<p>When you&#8217;re at this point the first thing you need to do is find the saveset ID of the aborted saveset, but I&#8217;ll leave that as an exercise to the reader. Now, once you&#8217;ve got the aborted saveset ID, it&#8217;s as simple as running a saveset recovery. The basic command might look like this:</p>
<pre>C:\&gt; recover -d path -s buServer -iN -S ssid</pre>
<p>Where:</p>
<ul>
<li>&#8216;path&#8217; is the path that you want to recover <em>to</em>. Note that in these situations, it&#8217;s usually a very, very good idea to make sure you recover to somewhere new, rather than overwriting any existing files.</li>
<li>&#8216;buServer&#8217; is the backup server that you want to recover from.</li>
<li>&#8216;ssid&#8217; is the saveset ID for the aborted saveset that you want to recover from.</li>
</ul>
<p>Depending on whether you&#8217;re doing a directed recovery, etc., you may end up with a few additional arguments, but the above is fairly much what you need in this situation. (If you&#8217;re confident that a specific path or file you want back is going to be in the part of the saveset backed up, you can always add that path at the end of the recovery command, too.)</p>
<p>Once the recovery runs, you&#8217;ll get a standard file-by-file listing of what is being recovered, but the recovery will end with what looks like an error – it&#8217;s effectively though just a notification that NetWorker has hit the data that was &#8216;in transit&#8217;, so to speak, when the saveset was aborted. This error will look similar to the following:</p>
<pre>
5041:recover: Unable to read checksum from save stream

16294:recover: Encountered an error recovering C:\temp2\Temp\744\win_x86\networkr\hba\emc-homebase-agent-6.1.2-win-x86.exe

53363:recover: Recover of rsid 851692923 failed: Error receiving files from NSR server `tara'

The process cannot access the file because it is being used by another process.

Received 231 matching file(s) from NSR server `tara'

Recover errors with 1 file(s)

Recover completion time: 4/20/2010 3:41:12 PM
</pre>
<p>At that point, you know that you&#8217;ve got back all the data you&#8217;re going to get back, and you can search through the recovered files for the data you want.</p>
<p>(As an aside, don&#8217;t forget to join the <a title="NetWorker Information Hub Forums" href="http://nsrd.info/forum" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fforum','NetWorker+Information+Hub+Forums')" target="_blank">forums</a> if you&#8217;ve got questions that aren&#8217;t answered in this blog.)</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;submitHeadline=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;title=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;title=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;title=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;bm_description=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;T=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;title=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;title=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%26%238211%3B+Recovering+from+an+aborted+saveset+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F24%2Fbasics-recovering-from-an-aborted-saveset%2F&amp;t=Basics+%26%238211%3B+Recovering+from+an+aborted+saveset" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/' rel='bookmark' title='Permanent Link: Basics &#8211; Need a different volume from pool &#8230;'>Basics &#8211; Need a different volume from pool &#8230;</a> <small>The scenario: A clone or stage operation has aborted (or...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/21/basics-directed-recoveries/' rel='bookmark' title='Permanent Link: Basics &#8211; Directed Recoveries'>Basics &#8211; Directed Recoveries</a> <small>Periodically people who are new to NetWorker will lament that...</small></li>
<li><a href='http://nsrd.info/blog/2010/04/19/basics-skip-and-forget/' rel='bookmark' title='Permanent Link: Basics &#8211; Skip and Forget'>Basics &#8211; Skip and Forget</a> <small>For quite a while I worked under the assumption that...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/04/24/basics-recovering-from-an-aborted-saveset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics &#8211; Skip and Forget</title>
		<link>http://nsrd.info/blog/2010/04/19/basics-skip-and-forget/</link>
		<comments>http://nsrd.info/blog/2010/04/19/basics-skip-and-forget/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 21:05:12 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[directives]]></category>
		<category><![CDATA[forget]]></category>
		<category><![CDATA[skip]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=2180</guid>
		<description><![CDATA[<p>For quite a while I worked under the assumption that you could do the following with directives in NetWorker:</p>
&#60;&#60; /path &#62;&#62;
+skip: *.mp3
&#60;&#60; /path/subpath/criticalpath &#62;&#62;
forget
<p>The logic of this is that it should be possible to skip files in one directory, but forget that directive in a lower directory and thus be able to still backup files [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2010/04/06/basics-previewing-directives/' rel='bookmark' title='Permanent Link: Basics &#8211; Previewing Directives'>Basics &#8211; Previewing Directives</a> <small>There&#8217;s been some discussion in the EMC Community Forum lately...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/01/using-networker-for-live-search/' rel='bookmark' title='Permanent Link: Using NetWorker for Live Search'>Using NetWorker for Live Search</a> <small>There was recently a discussion on the NetWorker mailing list...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>For quite a while I worked under the assumption that you could do the following with directives in NetWorker:</p>
<pre>&lt;&lt; /path &gt;&gt;
+skip: *.mp3
&lt;&lt; /path/subpath/criticalpath &gt;&gt;
forget</pre>
<p>The logic of this is that it should be possible to skip files in one directory, but forget that directive in a lower directory and thus be able to still backup files matching a particular criteria in a subpath.</p>
<p>Recent discussions on the NetWorker mailing list left me questioning whether I was correct in my assumption. I thought I&#8217;d tested it long ago, but the discussions on the list (and the tests that I did) seemed to indicate this wasn&#8217;t the way NetWorker worked.</p>
<p>It turns out I was testing incorrectly. Instead of testing with an exact specification such as the above, I was testing &#8220;lazily&#8221;:</p>
<pre>&lt;&lt; /path &gt;&gt;
+skip: *
&lt;&lt; /path/subpath/criticalpath &gt;&gt;
forget</pre>
<p>The mistake that I made was in the &#8220;*&#8221; vs the &#8220;*.mp3&#8243; I should have been testing my use case scenario. In short:</p>
<ul>
<li>Obviously skipping &#8220;*&#8221; will result in NetWorker determining that <em>everything</em> is being skipped, at which point there is no need to continue to traverse any directory path beneath the point in which the &#8220;skip *&#8221; is encountered.</li>
<li>However, if just skipping a particular pattern, then NetWorker will have to continue to traverse all subdirectories from the path it encounters the skip command, meaning that the <em>forget</em> directive will still be honoured at a deeper directory path.</li>
</ul>
<p>So I wasn&#8217;t wrong about my long-term belief, I just tested incorrectly.</p>
<p>This does mean that you can use skip, followed by forget, so long as your skip isn&#8217;t too open in its selection criteria.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;submitHeadline=Basics+%26%238211%3B+Skip+and+Forget&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;title=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;title=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;title=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;bm_description=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;T=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;title=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;title=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%26%238211%3B+Skip+and+Forget+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F04%2F19%2Fbasics-skip-and-forget%2F&amp;t=Basics+%26%238211%3B+Skip+and+Forget" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2010/04/06/basics-previewing-directives/' rel='bookmark' title='Permanent Link: Basics &#8211; Previewing Directives'>Basics &#8211; Previewing Directives</a> <small>There&#8217;s been some discussion in the EMC Community Forum lately...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/01/using-networker-for-live-search/' rel='bookmark' title='Permanent Link: Using NetWorker for Live Search'>Using NetWorker for Live Search</a> <small>There was recently a discussion on the NetWorker mailing list...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/04/19/basics-skip-and-forget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics – Bypassing NetWorker for media movement</title>
		<link>http://nsrd.info/blog/2010/03/15/basics-%e2%80%93%c2%a0bypassing-networker-for-media-movement/</link>
		<comments>http://nsrd.info/blog/2010/03/15/basics-%e2%80%93%c2%a0bypassing-networker-for-media-movement/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 10:26:06 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[inquire]]></category>
		<category><![CDATA[jbconfig]]></category>
		<category><![CDATA[sjimm]]></category>
		<category><![CDATA[sjisn]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=2012</guid>
		<description><![CDATA[<p>Sometimes NetWorker may not want to cooperate when it comes to moving media in and out of drives, or around in a tape library. While nsrjb -n will do the trick for some media load operations where you don&#8217;t want to mount media, it&#8217;s not always available. Sometimes you will need to do a media [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/10/basics-peeking-inside-your-jukebox-without-leaving-your-desk/' rel='bookmark' title='Permanent Link: Basics &#8211; Peeking inside your jukebox without leaving your desk'>Basics &#8211; Peeking inside your jukebox without leaving your desk</a> <small>In order to speed up jukebox operations, NetWorker maintains a...</small></li>
<li><a href='http://nsrd.info/blog/2009/11/14/networker-and-linuxvtl-redux/' rel='bookmark' title='Permanent Link: NetWorker and linuxvtl, Redux'>NetWorker and linuxvtl, Redux</a> <small>Some time ago, I posted a blog entry titled Carry...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/23/basics-standalone-drive-auto-media-management/' rel='bookmark' title='Permanent Link: Basics &#8211; Standalone drive auto media management'>Basics &#8211; Standalone drive auto media management</a> <small>I don&#8217;t have many customers with standalone tape drives. Usually...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Sometimes NetWorker may not want to cooperate when it comes to moving media in and out of drives, or around in a tape library. While <em>nsrjb -n</em> will do the trick for some media load operations where you don&#8217;t want to mount media, it&#8217;s not always available. Sometimes you will need to do a media move operation without NetWorker – either in situations where NetWorker isn&#8217;t running, or at times when NetWorker is disagreeing with the output of <em>sjirdtag</em>.</p>
<p>In these cases, you want to work with <em>sjimm</em>.</p>
<p>The usage for <em>sjimm</em> is:</p>
<pre>[root@tara ~]# sjimm
1642:sjimm: usage: sjimm jukebox {drive|slot|inlt|mt} src {drive|slot|inlt|mt} dst</pre>
<p>In this case, &#8216;jukebox&#8217; will be the <em>x.y.z</em> component of the SCSI device ID as output from <em>inquire</em> (or as determined by checking the control port field for the jukebox.)</p>
<p>For instance, on my lab system, inquire shows me:</p>
<pre>[root@tara ~]# inquire -l | grep Autochanger
scsidev@0.0.0:SPECTRA PYTHON          5500|Autochanger (Jukebox), /dev/sg6</pre>
<p>So I know then that the <em>jukebox</em> component of my <em>sjimm</em> command will be <em>0.0.0</em>.</p>
<p>So say I wanted to move the tape in slot 23 into the first drive in my autochanger. I&#8217;d use the command:</p>
<pre>[root@tara ~]# sjimm 0.0.0 slot 23 drive 1</pre>
<p>Note though that this doesn&#8217;t <em>mount</em> the tape. If I then run nsrjb, for my drive area I see:</p>
<pre>drive 1 (/dev/nst0) slot   :   
drive 2 (/dev/nst1) slot   :   
drive 3 (/dev/nst2) slot   :   
drive 4 (/dev/nst3) slot   :   
drive 5 (/dev/nst4) slot   :   
drive 6 (/dev/nst5) slot   :</pre>
<p>Note too that I didn&#8217;t give the drive to load the tape into as a operating system device, but instead a device number as per the autochanger&#8217;s definition. (I&#8217;ll get to tracing that in a minute.)</p>
<p>I can verify that there is a tape in the given drive at this point by running the command:</p>
<pre>[root@tara ~]# nsrmm -p -f /dev/nst0
Verified LTO Ultrium-4 tape 800823L4 on /dev/nst0</pre>
<p>When you&#8217;re done with the tape, you can then move it back:</p>
<pre>[root@tara ~]# sjimm 0.0.0 drive 1 slot 23</pre>
<p>Note that depending on the drive type, it may be necessary before issuing the above command to issue the <em>mt</em> command to take the media &#8220;offline&#8221;, which usually issues an eject command to the drive &#8211; e.g.,:</p>
<pre>[root@tara ~]# mt -f /dev/nst0 rewoff</pre>
<p>Other than that, there&#8217;s actually not a lot to <em>sjimm</em>. You can move tapes from slots to drives, slots to CAP slots, drives to slots, slots to slots, etc.</p>
<p>However, I did mention that I&#8217;d help you work out what drive number corresponds to what operating system device. Obviously if you&#8217;ve got the library configured, you can just use nsrjb&#8217;s output to see see the autochanger device &lt;-&gt; OS device path mapping. If you don&#8217;t yet have a tape library configured in NetWorker, or the issue is determining which drive is currently mapped to which path (after say, a tape drive replacement), you need to do a little more digging.</p>
<p>So, in this case you&#8217;d run <em>sjisn</em> – which is designed to report serial numbers and device details for tape library components. Like <em>sjimm</em>, <em>sjisn</em> takes the control port of the tape library we want to communicate with &#8211; e.g.:</p>
<pre>
<pre>[root@tara ~]# sjisn 0.0.0</pre>
<p>Serial Number data for 0.0.0 (SPECTRA  PYTHON          ):<br />
Library:<br />
Serial Number: XYZZY<br />
SCSI-3 Device Identifiers:<br />
ATNN=SPECTRA PYTHON          XYZZY<br />
WWNN=11223344ABCDEF00<br />
Drive at element address 1:<br />
SCSI-3 Device Identifiers:                         ATNN=ZF7584364<br />
Drive at element address 2:<br />
SCSI-3 Device Identifiers:<br />
ATNN=ZF7584366<br />
Drive at element address 3:<br />
SCSI-3 Device Identifiers:<br />
ATNN=ZF7584368<br />
Drive at element address 4:<br />
SCSI-3 Device Identifiers:<br />
ATNN=ZF7584370<br />
Drive at element address 5:<br />
SCSI-3 Device Identifiers:<br />
ATNN=ZF7584372<br />
Drive at element address 6:<br />
SCSI-3 Device Identifiers:<br />
ATNN=ZF7584374</pre>
<p>The number given in the &#8220;Drive at element address&#8221; line for each drive represents, literally, the drive number according to the tape library itself. I.e., when it refers to drive 1, it means the drive with serial number ZF7584364.</p>
<p>Moving on, we can then run <em>inquire -l</em> to provide the device details so as to align internal library drive numbers to operating system paths, cross-referencing by the serial numbers (or WWNs when using a fibre-channel tape library).  In this case, I&#8217;ll just show the details for two of the tape drives:</p>
<pre>scsidev@0.3.0:IBM     ULT3580-TD4     5500|Tape, /dev/nst2
                                           S/N:    ZF7584368
                                           ATNN=IBM     ULT3580-TD4     ZF7584368
                                           WWNN=11223344ABCDEF03
scsidev@0.4.0:IBM     ULT3580-TD4     5500|Tape, /dev/nst3
                                           S/N:    ZF7584370
                                           ATNN=IBM     ULT3580-TD4     ZF7584370
                                           WWNN=11223344ABCDEF04</pre>
<p>So, you can see from the above that we can map the drives as follows:</p>
<ul>
<li>The drive known to the OS as /dev/nst2, which has a serial number of ZF7584368 maps to the library device number 3.</li>
<li>The drive known to the OS as /dev/nst3, which has a serial number of ZF7584370 maps to the library device number 4.</li>
</ul>
<p>So this would give us the drive numbers to use in <em>sjimm</em> if we needed to move tapes in or out of those drives without using NetWorker&#8217;s NMC or <em>nsrjb</em>.</p>
<p>As a side-note, that&#8217;s also how you&#8217;d go about identifying the correct device order for a manual <em>jbconfig</em> operation when the library device order is out of sync with the operating system devices – cross-checking via <em>sjisn</em> and <em>inquire</em>.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;submitHeadline=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;title=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;title=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;title=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;bm_description=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;T=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;title=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;title=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F03%2F15%2Fbasics-%25e2%2580%2593%25c2%25a0bypassing-networker-for-media-movement%2F&amp;t=Basics+%E2%80%93%C2%A0Bypassing+NetWorker+for+media+movement" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/10/basics-peeking-inside-your-jukebox-without-leaving-your-desk/' rel='bookmark' title='Permanent Link: Basics &#8211; Peeking inside your jukebox without leaving your desk'>Basics &#8211; Peeking inside your jukebox without leaving your desk</a> <small>In order to speed up jukebox operations, NetWorker maintains a...</small></li>
<li><a href='http://nsrd.info/blog/2009/11/14/networker-and-linuxvtl-redux/' rel='bookmark' title='Permanent Link: NetWorker and linuxvtl, Redux'>NetWorker and linuxvtl, Redux</a> <small>Some time ago, I posted a blog entry titled Carry...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/23/basics-standalone-drive-auto-media-management/' rel='bookmark' title='Permanent Link: Basics &#8211; Standalone drive auto media management'>Basics &#8211; Standalone drive auto media management</a> <small>I don&#8217;t have many customers with standalone tape drives. Usually...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/03/15/basics-%e2%80%93%c2%a0bypassing-networker-for-media-movement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Basics &#8211; VTLs and default media sizes</title>
		<link>http://nsrd.info/blog/2010/02/27/basic-svtls-and-default-media-sizes/</link>
		<comments>http://nsrd.info/blog/2010/02/27/basic-svtls-and-default-media-sizes/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:40:21 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[advertised capacity]]></category>
		<category><![CDATA[marked full]]></category>
		<category><![CDATA[prematurely]]></category>
		<category><![CDATA[virtual media]]></category>
		<category><![CDATA[volume capacity]]></category>
		<category><![CDATA[VTL]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=1926</guid>
		<description><![CDATA[<p>While this is pertinent to all versions of NetWorker, it particularly seems relevant mentioning now, since as of 7.5.2, we&#8217;re now seeing revised messaging from NetWorker when a tape becomes prematurely full. These new messages now state:</p>
nsrd media notice: LTO Ultrium-4 tape 800814L4 used 2039 MB of 800 GB capacity
nsrd media notice: NetWorker media: (Warning) [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/23/basics-standalone-drive-auto-media-management/' rel='bookmark' title='Permanent Link: Basics &#8211; Standalone drive auto media management'>Basics &#8211; Standalone drive auto media management</a> <small>I don&#8217;t have many customers with standalone tape drives. Usually...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/15/basics-default-pool-debugging-101/' rel='bookmark' title='Permanent Link: Basics &#8211; Default pool debugging 101'>Basics &#8211; Default pool debugging 101</a> <small>Many of us with NetWorker have been in the situation...</small></li>
<li><a href='http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/' rel='bookmark' title='Permanent Link: Basics &#8211; Need a different volume from pool &#8230;'>Basics &#8211; Need a different volume from pool &#8230;</a> <small>The scenario: A clone or stage operation has aborted (or...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>While this is pertinent to all versions of NetWorker, it particularly seems relevant mentioning now, since as of 7.5.2, we&#8217;re now seeing revised messaging from NetWorker when a tape becomes prematurely full. These new messages now state:</p>
<pre>nsrd media notice: LTO Ultrium-4 tape 800814L4 used 2039 MB of 800 GB capacity
nsrd media notice: NetWorker media: (Warning) 800814L4 marked full prematurely.
  Verify possible error on the device /dev/nst4, advertised capacity is 800 GB
  marked full at 2039 MB</pre>
<p>Now, it&#8217;s worth noting here that normally if you get a tape fill up so soon that probably means there is an issue, and this version of the message, while only subtly different, is certainly more informative and that is a good thing. When we consider VTLs however, it&#8217;s a different story. In a virtual tape library, we normally want to use much smaller media sizes than the drive type we&#8217;re configured for. That way you&#8217;re writing virtual volumes that are 50GB or 100GB rather than 800GB. In my case referring to the above, my lab VTL uses virtual media sizes of 1GB (with compression).</p>
<p>So, how do you go about this? Well, it&#8217;s easiest to accomplish when you first setup the environment. You need to change the &#8220;Volume Default Capacity&#8221; of each virtual device to suit the allocated media sizes. To do this, in NMC turn on View-&gt;Diagnostic Mode, then when viewing device properties, enter the appropriate size in gigabytes (followed by &#8220;G&#8221; or &#8220;GB&#8221;) in the &#8220;Volume default capacity&#8221; field of the Configuration tab, shown below:</p>
<p><a href="http://nsrd.info/blog/wp-content/uploads/2010/02/default-volume-size.png" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2Fwp-content%2Fuploads%2F2010%2F02%2Fdefault-volume-size.png','Changing+default+volume+size')"><img class="aligncenter size-full wp-image-1928" title="Changing default volume size" src="http://nsrd.info/blog/wp-content/uploads/2010/02/default-volume-size.png" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2Fwp-content%2Fuploads%2F2010%2F02%2Fdefault-volume-size.png','Changing+default+volume+size')" alt="Changing default volume size" width="854" height="634" /></a></p>
<p>Now, if you can do that on your VTL devices <em>before</em> you start labelling volumes, you&#8217;re done and dusted. However, if you&#8217;ve previously labelled your media, you either have to relabel the currently blank virtual media <em>or</em> wait until NetWorker gets around to recycling the currently used media.</p>
<p>You can query mminfo to see what the default capacity is registered at &#8211; e.g.,</p>
<pre>[root@tara ~]# mminfo -m
state volume                  written  (%)  expires     read mounts capacity
800801L4                2254 MB full 02/26/2011   0 KB     5    800 GB
800802L4                   0 KB   0%     undef    0 KB     5   1000 MB
800804L4                   0 KB   0%     undef    0 KB     5   1000 MB
800805L4                   0 KB   0%     undef    0 KB     3    800 GB</pre>
<p>Now, what effect does this have to how much you can write to the volumes? The short answer is <em>none</em>. All you&#8217;re doing is adjusting the default capacity assigned to new volumes that are labelled in these (virtual) tape drives – and we can see what happens when NetWorker breaches the default volume capacity all the time in relation to physical tape – it just keeps writing until it hits end of physical tape. Nothing more, nothing less. So this means when you fill up your virtual media, NetWorker doesn&#8217;t complain at all:</p>
<pre>nsrd media notice: LTO Ultrium-4 tape 800802L4 on /dev/nst3 is full
nsrd media notice: LTO Ultrium-4 tape 800802L4 used 2793 MB of 1000 MB capacity
nsrd media info: WORM capable for device /dev/nst3 has been set</pre>
<p>Is this something you <em>must</em> to do? Well, no, not technically. However, remembering that I advocate a <a title="What is a zero error policy?" href="http://nsrd.info/blog/2009/08/11/what-is-a-zero-error-policy/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F08%2F11%2Fwhat-is-a-zero-error-policy%2F','What+is+a+zero+error+policy%3F')" target="_blank">zero error policy</a>, the above is something I&#8217;d definitely strongly recommend for virtual devices. Doing so will eliminate what would otherwise be false errors on the virtual tapes within the NetWorker daemon logs. That means if you have to search for media issues, or refer your daemon logs to your support provider for analysis, they won&#8217;t be seeing bunches of &#8220;tape filled prematurely&#8221; issues.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;submitHeadline=Basics+%26%238211%3B+VTLs+and+default+media+sizes&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;title=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;title=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;title=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;bm_description=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;T=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;title=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;title=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%26%238211%3B+VTLs+and+default+media+sizes+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F27%2Fbasic-svtls-and-default-media-sizes%2F&amp;t=Basics+%26%238211%3B+VTLs+and+default+media+sizes" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/09/23/basics-standalone-drive-auto-media-management/' rel='bookmark' title='Permanent Link: Basics &#8211; Standalone drive auto media management'>Basics &#8211; Standalone drive auto media management</a> <small>I don&#8217;t have many customers with standalone tape drives. Usually...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/15/basics-default-pool-debugging-101/' rel='bookmark' title='Permanent Link: Basics &#8211; Default pool debugging 101'>Basics &#8211; Default pool debugging 101</a> <small>Many of us with NetWorker have been in the situation...</small></li>
<li><a href='http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/' rel='bookmark' title='Permanent Link: Basics &#8211; Need a different volume from pool &#8230;'>Basics &#8211; Need a different volume from pool &#8230;</a> <small>The scenario: A clone or stage operation has aborted (or...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/02/27/basic-svtls-and-default-media-sizes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics &#8211; Need a different volume from pool &#8230;</title>
		<link>http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/</link>
		<comments>http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 09:40:42 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[abort]]></category>
		<category><![CDATA[aborted]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[Cloning]]></category>
		<category><![CDATA[ineligible]]></category>
		<category><![CDATA[nsrclone]]></category>
		<category><![CDATA[nsrstage]]></category>
		<category><![CDATA[stage]]></category>
		<category><![CDATA[staging]]></category>
		<category><![CDATA[waiting]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=1909</guid>
		<description><![CDATA[<p>The scenario:</p>

A clone or stage operation has aborted (or otherwise failed)
It has been restarted
It hangs waiting for a new volume even though there&#8217;s a partially written volume available.

<p>This is a relatively easy problem to explain. Let&#8217;s first look at the log messages that happens. To generate this error, I started cloning some data to the [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/10/15/basics-default-pool-debugging-101/' rel='bookmark' title='Permanent Link: Basics &#8211; Default pool debugging 101'>Basics &#8211; Default pool debugging 101</a> <small>Many of us with NetWorker have been in the situation...</small></li>
<li><a href='http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/' rel='bookmark' title='Permanent Link: Manually Staging? Don&#8217;t forget the Clone ID!'>Manually Staging? Don&#8217;t forget the Clone ID!</a> <small>Something that continues to periodically come up is the need...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The scenario:</p>
<ul>
<li>A clone or stage operation has aborted (or otherwise failed)</li>
<li>It has been restarted</li>
<li>It hangs waiting for a new volume even though there&#8217;s a partially written volume available.</li>
</ul>
<p>This is a relatively easy problem to explain. Let&#8217;s first look at the log messages that happens. To generate this error, I started cloning some data to the &#8220;Default Clone&#8221; pool, with only one volume in the pool, then aborted. Shortly thereafter I tried to run the clone again, and when NetWorker wouldn&#8217;t write to the volume I unmounted and remounted it – a common thing that newer administrators will try in this scenario. This is where you&#8217;ll hit the following error in the logs:</p>
<pre>media notice: Volume `800829L4' ineligible for this operation; Need a different volume
from pool `Default Clone'
media info: Suggest manually labeling a new writable volume for pool 'Default Clone'</pre>
<p>So, what&#8217;s the cause of this problem? It&#8217;s actually relatively easy to explain.</p>
<p>A core component in NetWorker&#8217;s media database design is that a saveset can only ever have one <strong>instance</strong> on a piece of media. This applies as equally to failed as complete saveset instances.</p>
<p>The net result is that this error/situation will occur because it&#8217;s meant to – NetWorker doesn&#8217;t permit more than one instance of a saveset to appear on the same piece of physical media.</p>
<p>So what do you do when this error comes up?</p>
<ul>
<li>If you&#8217;re backing up to disk, an aborted saveset <em>should</em> normally be cleared up automatically by NetWorker after the operation is aborted. However, in certain instances this may not be the case. For NetWorker 7.5 vanilla and 7.5.1.1/7.5.1.2, this should be done by <em>expiring</em> the saveset instance – using nsrmm to flag the instance as having an expiry date within a few minutes or seconds. For all other versions of NetWorker, you should just be able to delete the saveset instance.</li>
<li>When working with tape (virtual or physical), the most recommended approach would be to move on to another tape, or if the instance is the <em>only</em> instance on that tape, relabel the tape. (Some would argue that you can use nsrmm to delete the saveset instance from the tape and then re-attempt the operation, but since NetWorker is so heavily designed to <em>prevent</em> multiple instances of a saveset on a piece of media, I&#8217;d strongly recommend against this.)</li>
</ul>
<p>Overall it&#8217;s a fairly simple issue, but knowing how to recognise it lets you resolve it quickly and painlessly.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;submitHeadline=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;title=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;title=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;title=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;bm_description=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;T=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;title=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;title=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F02%2F22%2Fbasics-need-a-different-volume-from-pool%2F&amp;t=Basics+%26%238211%3B+Need+a+different+volume+from+pool+%26%238230%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/10/15/basics-default-pool-debugging-101/' rel='bookmark' title='Permanent Link: Basics &#8211; Default pool debugging 101'>Basics &#8211; Default pool debugging 101</a> <small>Many of us with NetWorker have been in the situation...</small></li>
<li><a href='http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/' rel='bookmark' title='Permanent Link: Manually Staging? Don&#8217;t forget the Clone ID!'>Manually Staging? Don&#8217;t forget the Clone ID!</a> <small>Something that continues to periodically come up is the need...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/02/22/basics-need-a-different-volume-from-pool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The top 10 for 2009</title>
		<link>http://nsrd.info/blog/2010/01/06/the-top-10-for-2009/</link>
		<comments>http://nsrd.info/blog/2010/01/06/the-top-10-for-2009/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 20:41:26 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[Quibbles]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[7.5]]></category>
		<category><![CDATA[7.5.1]]></category>
		<category><![CDATA[clone ID]]></category>
		<category><![CDATA[deleting savesets]]></category>
		<category><![CDATA[dependencies]]></category>
		<category><![CDATA[Linux VTL]]></category>
		<category><![CDATA[mminfo]]></category>
		<category><![CDATA[most popular]]></category>
		<category><![CDATA[NSR peer]]></category>
		<category><![CDATA[nsrclone]]></category>
		<category><![CDATA[nsrstage]]></category>
		<category><![CDATA[open source VTL]]></category>
		<category><![CDATA[Parallelism]]></category>
		<category><![CDATA[saveset ID]]></category>
		<category><![CDATA[saveset(ss_t)]]></category>
		<category><![CDATA[savetime]]></category>
		<category><![CDATA[ssaccess]]></category>
		<category><![CDATA[sscomp]]></category>
		<category><![CDATA[sscreate]]></category>
		<category><![CDATA[ssid]]></category>
		<category><![CDATA[ssinsert]]></category>
		<category><![CDATA[staging]]></category>
		<category><![CDATA[VTL]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://nsrd.info/blog/?p=1586</guid>
		<description><![CDATA[<p>Looking at the stats both for this new site and the previous site, I&#8217;ve compiled a list of the top 10 read articles on The NetWorker Blog for 2009. The top 3 of course match the three articles that routinely turn out to be the most popular on any given month, which speaks something of [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/' rel='bookmark' title='Permanent Link: Manually Staging? Don&#8217;t forget the Clone ID!'>Manually Staging? Don&#8217;t forget the Clone ID!</a> <small>Something that continues to periodically come up is the need...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/02/obligations-were-popular-in-september/' rel='bookmark' title='Permanent Link: Obligations were popular in September'>Obligations were popular in September</a> <small>Looking back over September, the most read/visited article was &#8220;The...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Looking at the stats both for this new site and the previous site, I&#8217;ve compiled a list of the top 10 read articles on <em>The NetWorker Blog</em> for 2009. The top 3 of course match the three articles that routinely turn out to be the most popular on any given month, which speaks something of their relevance to the average NetWorker administrator.</p>
<p>(Note: I&#8217;ve excluded non-article <em>pages</em> from the top 10.)</p>
<h3>Number 10 – Instantiating Savesets</h3>
<p>The very first article on the blog, <a title="Instantiating Savesets" href="http://nsrd.info/blog/2009/01/25/instantiating-savesets/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F01%2F25%2Finstantiating-savesets%2F','Instantiating+Savesets')" target="_blank">Instantiating Savesets</a> detailed the importance of distinguishing between <em>all instances of a saveset</em> and a <em>specific instance of a saveset</em>.</p>
<p>This distinction between using just the saveset ID, and using a saveset ID/clone ID combination becomes particularly important when staging from disk backup units. If clones exist and you stage using <em>just</em> the saveset ID, when NetWorker cleans up at the end of the staging operation it will remove reference to the clones as well as deleting the original from the disk backup unit. (Something you <em>really</em> don&#8217;t want to have happen.)</p>
<p><strong>Recommendation to EMC</strong>: Perhaps it would be worthwhile requiring a &#8220;-y&#8221; argument to <em>nsrstage</em> if staging savesets from disk backup units and specifying only the saveset ID.</p>
<p><strong>Recommendation to NetWorker administrators</strong>: Always be careful when staging that you specify both the saveset and the clone ID.</p>
<h3>Number 9 – Basics – Important mminfo fields</h3>
<p>In May I wrote about <a title="Basics - Important mminfo fields" href="http://nsrd.info/blog/2009/05/27/basics-important-mminfo-fields/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F05%2F27%2Fbasics-important-mminfo-fields%2F','Basics+-+Important+mminfo+fields')" target="_blank">a few key mminfo</a> fields – notably:</p>
<ul>
<li>savetime</li>
<li>sscreate</li>
<li>ssinsert</li>
<li>sscomp</li>
<li>ssaccess</li>
</ul>
<p>Sadly, I didn&#8217;t get the result I wanted with EMC on <em>ssaccess</em>. Documented as being updated whenever a saveset fragment is accessed for backup and recovery, the most I could get was an acknowledgement that it was currently broken and to lodge an RFE to get it fixed. (The alternative was to have the documentation changed to take out reference to read operations – something I didn&#8217;t want to have happen!)</p>
<p><strong>Recommendation to EMC</strong>: ssaccess would be a particularly useful mminfo field, particularly when analysing recovery statistics for NetWorker. Please fix it.</p>
<h3>Number 8 – Basics – Listing files in a backup</h3>
<p>Want to know what files were <a title="Basics - Listing files in a backup" href="http://nsrd.info/blog/2009/01/27/basics-listing-files-in-a-backup/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F01%2F27%2Fbasics-listing-files-in-a-backup%2F','Basics+-+Listing+files+in+a+backup')" target="_blank">backed up as part of the creation of a saveset</a>? If you do, you&#8217;re not unique – this has remained a very popular article since it was written in January.</p>
<p><strong>Recommendation to EMC</strong>: This information can be retrieved via a combination of mminfo/nsrinfo, but it would be handy if NMC supported drilling down into a saveset to provide a file listing.</p>
<h3>Number 7 – Using yum to install NetWorker on Linux</h3>
<p>NetWorker&#8217;s need for dependency resolution on Linux for installation of the client packages in particular drew a lot of people to <a title="Using yum to install NetWorker on Linux" href="http://nsrd.info/blog/2009/05/26/using-yum-to-install-networker-on-linux/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F05%2F26%2Fusing-yum-to-install-networker-on-linux%2F','Using+yum+to+install+NetWorker+on+Linux')" target="_blank">this article</a>.</p>
<h3>Number 6 – Basics – mminfo, savetime, and greater than/less than</h3>
<p>This article explained why NetWorker uses the greater than and less than signs in mminfo in a way that newcomers to the product might find backwards. If you&#8217;re not aware of why mminfo works the way it does for <a title="Basics - mminfo, savetime and greater than/less than" href="http://nsrd.info/blog/2009/02/01/basics-mminfo-savetime/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F02%2F01%2Fbasics-mminfo-savetime%2F','Basics+-+mminfo%2C+savetime+and+greater+than%2Fless+than')" target="_blank">specifying savetimes, you should be</a>.</p>
<h3>Number 5 – 7.5(.1) changed behaviour – deleting savesets from adv_file devices</h3>
<p>This was a particularly unpleasant bug introduced into NetWorker 7.5, thankfully resolved now in the cumulative service releases <em>and</em> NetWorker 7.6</p>
<p>The gist of it is that in NetWorker 7.5/7.5.1 (aka 7.5 SP1), if you deleted a saveset on a disk backup unit, NetWorker would suffer a serious failure where it would from that point have issues cleaning regular expired savesets from the disk backup unit <em>and</em> insist that the disk backup unit had major issues. The primary error would manifest as:</p>
<p><em><strong>nsrd adv_file warning: Failed to fetch the saveset(ss_t) structure for ssid 1890993582</strong></em></p>
<p>This was fixed in 7.5.1.2, thankfully.</p>
<p><strong>Recommendation to EMC</strong>: Never let this bug see the light of day again, please. (So far you&#8217;re doing an excellent job, by the way.)</p>
<h3>Number 4 – NetWorker 7.5.1 Released</h3>
<p>I&#8217;ve recently noticed a disturbing trend among many vendors, EMC included, where once a new release is made of a product, sales and account staff become overly enthusiastic about recommending new releases. This comes on top of not really having any technical expertise. (Please be patient, I&#8217;m trying to put this as diplomatically as possible.)</p>
<p>One of the worst instances I&#8217;ve seen of this in the last few years was the near-hysterical pumping of 7.5 thanks to some useful features to do with virtualisation in particular. I&#8217;ll admit that my articles on the<a title="NetWorker 7.5 and Oracle Module 5" href="http://nsrd.info/blog/2009/05/07/networker-75-and-oracle-module-5/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F05%2F07%2Fnetworker-75-and-oracle-module-5%2F','NetWorker+7.5+and+Oracle+Module+5')" target="_blank"> integration between Oracle Module 5 and NetWorker 7.5</a>, as well as <a title="Using probe based backups in NetWorker" href="http://nsrd.info/blog/2009/01/25/using-probe-based-backups-in-networker/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F01%2F25%2Fusing-probe-based-backups-in-networker%2F','Using+probe+based+backups+in+NetWorker')" target="_blank">Probe Based Backups</a> may have added to this. However, there was somewhat of a stampede to 7.5 when it came out, and consequently, when it had some issues, there was strong enthusiasm for the release of 7.5.1.</p>
<p>This is why, by the way, that IDATA maintains for its support customers a recommended versions list that <em>is not automatically updated when new versions of products come out</em>.</p>
<p><strong>Recommendation to EMC</strong>: Remind your sales staff that existing users already <em>have</em> the product, and not to just go blindly convincing them to upgrade. Otherwise you&#8217;ll eventually start sounding like <a title="Broken Promises Get a Mac Ad" href="http://movies.apple.com/media/us/mac/getamac/2009/apple-mvp-broken_promises-us-20091023_480x272.mov" onclick="return TrackClick('http%3A%2F%2Fmovies.apple.com%2Fmedia%2Fus%2Fmac%2Fgetamac%2F2009%2Fapple-mvp-broken_promises-us-20091023_480x272.mov','Broken+Promises+Get+a+Mac+Ad')" target="_blank">this</a>.</p>
<h3>Number 3 – Carry a jukebox with you (if you&#8217;re using Linux)</h3>
<p>During 2009, Mark Harvey&#8217;s <a title="LinuxVTL" href="http://linuxvtl.googlepages.com" onclick="return TrackClick('http%3A%2F%2Flinuxvtl.googlepages.com','LinuxVTL')" target="_blank">LinuxVTL</a> project first got the open source LinuxVTL working with NetWorker in a <a title="Carry a jukebox with you (if you're using Linux)" href="http://nsrd.info/blog/2009/07/13/carry-a-jukebox-with-you-if-youre-using-linux/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F07%2F13%2Fcarry-a-jukebox-with-you-if-youre-using-linux%2F','Carry+a+jukebox+with+you+%28if+you')" target="_blank">single drive configuration</a>, then eventually, in <a title="NetWorker and LinuxVTL, Redux" href="http://nsrd.info/blog/2009/11/14/networker-and-linuxvtl-redux/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F14%2Fnetworker-and-linuxvtl-redux%2F','NetWorker+and+LinuxVTL%2C+Redux')" target="_blank">multi-drive configurations</a>. (Mark assures me, by the way, that patches are coming real soon to allow multiple robots on the same storage node/server.)</p>
<p><strong>Lesson for me</strong>: With the LinuxVTL configured on multiple lab servers in my environment, I&#8217;ve really taken to VTLs this year, and considerably changed my attitude on using them. (I&#8217;ll say again: I still resent that they&#8217;re needed, but I now respect them a lot more than I previously did.)</p>
<p><strong>Lesson for others</strong>: Even Mark himself <a title="Mark Harvey on LinuxVTL" href="http://nsrd.info/blog/2009/11/14/networker-and-linuxvtl-redux/comment-page-1/#comment-453" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F14%2Fnetworker-and-linuxvtl-redux%2Fcomment-page-1%2F%23comment-453','Mark+Harvey+on+LinuxVTL')" target="_blank">says that the open source VTL shouldn&#8217;t be used for production backups</a>. Don&#8217;t be cheap with your backup system, this is an excellent tool for lab setups, training, diagnostics, etc., but it is <em>not</em> a replacement to a production-ready VTL system. If you want a VTL, <em>buy</em> a VTL.</p>
<h3>Number 2 – Basics – Parallelism in NetWorker</h3>
<p>Some would say that the high popularity of <a title="Basics - Parallelism in NetWorker" href="http://nsrd.info/blog/2009/02/17/basics-parallelism-in-networker/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F02%2F17%2Fbasics-parallelism-in-networker%2F','Basics+-+Parallelism+in+NetWorker')" target="_blank">an article about parallelism in NetWorker</a> indicates that it&#8217;s not sufficiently documented.</p>
<p>I&#8217;m not <em>entirely</em> convinced that&#8217;s the case. But it does go to show that it&#8217;s an important topic when it comes to performance tuning, and summary articles about how the various types of parallelism interact are obviously popular.</p>
<p><strong>Lesson for everyone</strong>: Now that the performance tuning guide has been updated and made more relevant in NetWorker 7.6, I&#8217;d recommend people wanting an official overview of <em>some </em>of the parallelism options checking that out in addition to the article above.<em> </em></p>
<h3>Number 1 – Basics – Fixing &#8220;NSR peer information&#8221; errors</h3>
<p>Goodness this was a popular article in 2009 – <a title="Basics – Fixing NSR peer information errors" href="http://nsrd.info/blog/2009/02/23/basics-fixing-nsr-peer-information-errors/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F02%2F23%2Fbasics-fixing-nsr-peer-information-errors%2F','Basics+%E2%80%93%C2%A0Fixing+NSR+peer+information+errors')" target="_blank">detailing how to fix the &#8220;NSR peer information&#8221; errors</a> that can come up from time to time in the NetWorker logs. If you&#8217;re not familiar with this error yet, it&#8217;s likely you will eventually as a NetWorker administrator see an error such as:</p>
<p><em>39078 02/02/2009 09:45:13 PM  0 0 2 1152952640 5095 0 nox nsrexecd SYSTEM error: There is already a machine using the name: “faero”. Either choose a different name for your machine, or delete the “NSR peer information” entry for “faero” on host: “nox” </em></p>
<p><strong>Recommendation for EMC</strong>: Users shouldn&#8217;t really need to be Googling for a solution to this problem. Let&#8217;s see an update to NetWorker Management Console where these errors/warnings are reported in the monitoring log, with the administrator being able to right click on them and choose to clear the peer information after confirming that they&#8217;re confident no nefarious activity is happening.</p>
<h3>Wrapping Up</h3>
<p>I have to say, it was a fantastically satisfying year writing the blog, and I&#8217;m looking forward to seeing what 2010 brings in terms of most useful articles.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;submitHeadline=The+top+10+for+2009&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;title=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;title=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;title=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;bm_description=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;T=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;title=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;title=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+The+top+10+for+2009+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2010%2F01%2F06%2Fthe-top-10-for-2009%2F&amp;t=The+top+10+for+2009" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/' rel='bookmark' title='Permanent Link: Manually Staging? Don&#8217;t forget the Clone ID!'>Manually Staging? Don&#8217;t forget the Clone ID!</a> <small>Something that continues to periodically come up is the need...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/02/obligations-were-popular-in-september/' rel='bookmark' title='Permanent Link: Obligations were popular in September'>Obligations were popular in September</a> <small>Looking back over September, the most read/visited article was &#8220;The...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2010/01/06/the-top-10-for-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://movies.apple.com/media/us/mac/getamac/2009/apple-mvp-broken_promises-us-20091023_480x272.mov" length="1779338" type="video/quicktime" />
		</item>
		<item>
		<title>Manually Staging? Don&#8217;t forget the Clone ID!</title>
		<link>http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/</link>
		<comments>http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 06:45:02 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[clone ID]]></category>
		<category><![CDATA[nsrclone]]></category>
		<category><![CDATA[nsrstage]]></category>
		<category><![CDATA[saveset ID]]></category>
		<category><![CDATA[ssid]]></category>
		<category><![CDATA[staging]]></category>

		<guid isPermaLink="false">http://nsrd.wordpress.com/?p=1322</guid>
		<description><![CDATA[<p>Something that continues to periodically come up is the need to remind people running manual staging to ensure they specify both the SSID and the Clone ID when they stage. I did some initial coverage of this when I first started the blog, but I wanted to revisit and demonstrate exactly why this is necessary.</p>
<p>The [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/10/27/quibbles-why-cant-you-clone-or-stage-incomplete-savesets/' rel='bookmark' title='Permanent Link: Quibbles &#8211; Why can&#039;t you clone or stage incomplete savesets?'>Quibbles &#8211; Why can&#039;t you clone or stage incomplete savesets?</a> <small>NetWorker has an irritating quirk where it doesn&#8217;t allow you...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/16/staging-and-connectivity-loss/' rel='bookmark' title='Permanent Link: Staging and Connectivity Loss'>Staging and Connectivity Loss</a> <small>For a while now I&#8217;ve been working with EMC support...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/30/client-side-compression-and-saveset-sizes/' rel='bookmark' title='Permanent Link: Client side compression and saveset sizes'>Client side compression and saveset sizes</a> <small>While it turned out to be unrelated, a recent customer...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Something that continues to periodically come up is the need to remind people running manual staging to ensure they specify both the SSID and the Clone ID when they stage. <a title="Instantiating savesets" href="http://nsrd.info/blog/2009/01/25/instantiating-savesets/" onclick="return TrackClick('http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F01%2F25%2Finstantiating-savesets%2F','Instantiating+savesets')" target="_blank">I did some initial coverage of this when I first started the blog</a>, but I wanted to revisit and demonstrate exactly <em>why</em> this is necessary.</p>
<p>The short version of why is simple: If you stage by SSID alone, NetWorker will delete/purge <em>all instances of the saveset other than the one you just created</em>. This is Not A Good Thing for 99.999% of what we do within NetWorker.</p>
<p>So to demonstrate, here&#8217;s a session where I:</p>
<ol>
<li>Generate a backup</li>
<li>Clone the backup to tape</li>
<li>Stage the saveset only to tape</li>
</ol>
<p>In between each step, I&#8217;ll run mminfo to get a dump of what the media database says about saveset availability.</p>
<h3>Part 1 – Generate the Backup</h3>
<p>Here&#8217;s a very simple backup for the purposes of this demonstration, and the subsequent mminfo command to find out about the backup:</p>
<pre>[root@tara ~]# save -b Default -LL -q /etc
save: /etc  106 MB 00:00:07   2122 files
completed savetime=1258093549

[root@tara ~]# mminfo -q "client=tara.pmdg.lab,name=/etc" -r volume,ssid,cloneid,
savetime
 volume        ssid          clone id  date
Default.001    2600270829  1258093549 11/13/2009
Default.001.RO 2600270829  1258093548 11/13/2009</pre>
<p>There&#8217;s nothing out of the ordinary here, so we&#8217;ll move onto the next step.</p>
<h3>Part 2 – Clone the Backup</h3>
<p>We&#8217;ll just do a manual clone to the Default Clone pool. Here we&#8217;ll specify the saveset ID alone, which is fine for cloning – but is often what leads people to being in the habit of not specifying a particular saveset instance. I&#8217;m using very small VTL tapes, so don&#8217;t be worried that in this case I&#8217;ve got a clone of /etc spanning 3 volumes:</p>
<pre>[root@tara ~]# nsrclone -b "Default Clone" -S 2600270829
[root@tara ~]# mminfo -q "client=tara.pmdg.lab,name=/etc" -r volume,ssid,cloneid,
savetime
 volume        ssid          clone id  date
800843S3       2600270829  1258094164 11/13/2009
800844S3       2600270829  1258094164 11/13/2009
800845S3       2600270829  1258094164 11/13/2009
Default.001    2600270829  1258093549 11/13/2009
Default.001.RO 2600270829  1258093548 11/13/2009</pre>
<p>As you can see there, it&#8217;s all looking fairly ordinary at this point &#8211; nothing surprising is going on at all.</p>
<h3>Part 3 – Stage by Saveset ID Only</h3>
<p>In this next step, I&#8217;m going to stage by saveset ID alone rather than specifying the saveset ID/clone ID, which is the correct way of staging, so as to demonstrate what happens at the conclusion of the staging. I&#8217;ll be staging to a pool called &#8220;Big&#8221;:</p>
<pre>[root@tara ~]# nsrstage -b Big -v -m -S 2600270829
Obtaining media database information on server tara.pmdg.lab
Parsing save set id(s)
Migrating the following save sets (ids):
 2600270829
5874:nsrstage: Automatically copying save sets(s) to other volume(s)

Starting migration operation...
Nov 13 17:34:00 tara logger: NetWorker media: (waiting) Waiting for 1 writable
volume(s) to backup pool 'Big' disk(s) or tape(s) on tara.pmdg.lab
5884:nsrstage: Successfully cloned all requested save sets
5886:nsrstage: Clones were written to the following volume(s):
 BIG991S3
6359:nsrstage: Deleting the successfully cloned save set 2600270829
Successfully deleted original clone 1258093548 of save set 2600270829
from media database.
Successfully deleted AFTD's companion clone 1258093549 of save set 2600270829
from media database with 0 retries.
Successfully deleted original clone 1258094164 of save set 2600270829
from media database.
Recovering space from volume 4294740163 failed with the error
'Cannot access volume 800844S3, please mount the volume or verify its label.'.
Refer to the NetWorker log for details.
6330:nsrstage: Cannot access volume 800844S3, please mount the volume
or verify its label.
Completed recover space operation for volume 4177299774
Refer to the NetWorker log for any failures.
Recovering space from volume 4277962971 failed with the error
'Cannot access volume 800845S3, please mount the volume or verify its label.'.
Refer to the NetWorker log for details.
6330:nsrstage: Cannot access volume 800845S3, please mount the volume
or verify its label.
Recovering space from volume 16550059 failed with the error
'Cannot access volume 800843S3, please mount the volume or verify its label.'.
Refer to the NetWorker log for details.
6330:nsrstage: Cannot access volume 800843S3, please mount the volume
or verify its label.</pre>
<p>You&#8217;ll note there&#8217;s a bunch of output there about being unable to access the clone volumes the saveset was previously cloned to. When we then check mminfo, we see the consequences of the staging operation though:</p>
<pre>[root@tara ~]# mminfo -q "client=tara.pmdg.lab,name=/etc" -r volume,ssid,cloneid,
savetime
 volume        ssid          clone id  date
BIG991S3       2600270829  1258095244 11/13/2009</pre>
<p>As you can see – no reference to the clone volumes at all!</p>
<p>Now, has the clone data been erased? No, but it <em>has</em> been removed from the media database, meaning you&#8217;d have to manually scan the volumes back in order to be able to use them again. Worse, if those volumes <em>only</em> contained clone data that was subsequently removed from the media database, they may become eligible for recycling and get re-used before you notice what has gone wrong!</p>
<h3>Wrapping Up</h3>
<p>Hopefully the above session will have demonstrated the danger of staging by saveset ID alone. If instead of staging by saveset ID we staged by saveset ID and clone ID, we&#8217;d have had a much more desirable outcome. Here&#8217;s a (short) example of that:</p>
<pre>[root@tara ~]# save -b Default -LL -q /tmp
save: /tmp  2352 KB 00:00:01     67 files
completed savetime=1258094378
[root@tara ~]# mminfo -q "name=/tmp" -r volume,ssid,cloneid
 volume        ssid          clone id
Default.001    2583494442  1258094378
Default.001.RO 2583494442  1258094377
[root@tara ~]# nsrclone -b "Default Clone" -S 2583494442

[root@tara ~]# mminfo -q "name=/tmp" -r volume,ssid,cloneid
 volume        ssid          clone id
800845S3       2583494442  1258095244
Default.001    2583494442  1258094378
Default.001.RO 2583494442  1258094377
[root@tara ~]# nsrstage -b Big -v -m -S 2583494442/1258094377
Obtaining media database information on server tara.pmdg.lab
Parsing save set id(s)
Migrating the following save sets (ids):
 2583494442
5874:nsrstage: Automatically copying save sets(s) to other volume(s)

Starting migration operation...

5886:nsrstage: Clones were written to the following volume(s):
 BIG991S3
6359:nsrstage: Deleting the successfully cloned save set 2583494442
Successfully deleted original clone 1258094377 of save set 2583494442 from
media database.
Successfully deleted AFTD's companion clone 1258094378 of save set 2583494442
from media database with 0 retries.
Completed recover space operation for volume 4177299774
Refer to the NetWorker log for any failures.

[root@tara ~]# mminfo -q "name=/tmp" -r volume,ssid,cloneid
 volume        ssid          clone id
800845S3       2583494442  1258095244
BIG991S3       2583494442  1258096324</pre>
<p>The recommendation that I always make is that you <em>forget about using saveset IDs alone</em> unless you absolutely have to. Instead, get yourself into the habit of always specifying a particular <em>instance</em> of a saveset ID via the &#8220;ssid/cloneid&#8221; option. That way, if you do any manual staging, you won&#8217;t wipe out access to data!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;submitHeadline=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;title=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;title=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;title=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;bm_description=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;T=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;title=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;title=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F13%2Fmanually-staging-dont-forget-the-clone-id%2F&amp;t=Manually+Staging%3F+Don%26%238217%3Bt+forget+the+Clone+ID%21" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/10/27/quibbles-why-cant-you-clone-or-stage-incomplete-savesets/' rel='bookmark' title='Permanent Link: Quibbles &#8211; Why can&#039;t you clone or stage incomplete savesets?'>Quibbles &#8211; Why can&#039;t you clone or stage incomplete savesets?</a> <small>NetWorker has an irritating quirk where it doesn&#8217;t allow you...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/16/staging-and-connectivity-loss/' rel='bookmark' title='Permanent Link: Staging and Connectivity Loss'>Staging and Connectivity Loss</a> <small>For a while now I&#8217;ve been working with EMC support...</small></li>
<li><a href='http://nsrd.info/blog/2009/09/30/client-side-compression-and-saveset-sizes/' rel='bookmark' title='Permanent Link: Client side compression and saveset sizes'>Client side compression and saveset sizes</a> <small>While it turned out to be unrelated, a recent customer...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2009/11/13/manually-staging-dont-forget-the-clone-id/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Lessons I&#039;ve recently learned&#8230;</title>
		<link>http://nsrd.info/blog/2009/11/11/lessons-ive-recently-learned/</link>
		<comments>http://nsrd.info/blog/2009/11/11/lessons-ive-recently-learned/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 05:32:16 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[General thoughts]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[eSATA]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[parallels]]></category>
		<category><![CDATA[xfs]]></category>

		<guid isPermaLink="false">http://nsrd.wordpress.com/?p=1313</guid>
		<description><![CDATA[<p>When I was at University, a philosophy lecturer remarked rather sagely that University is the last place people can go to learn for the sake of learning.</p>
<p>That&#8217;s sort of correct, but not always so. People can fumble through their jobs on a day to day basis learning what they have to, but they can also [...]


Related posts:<ol><li><a href='http://nsrd.info/blog/2009/11/05/networker-on-linux-%e2%80%93-ditching-ext3-for-xfs/' rel='bookmark' title='Permanent Link: NetWorker on Linux – Ditching ext3 for xfs'>NetWorker on Linux – Ditching ext3 for xfs</a> <small>Recently when I made an exasperated posting about lengthy ext3...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/12/sidekick-is-dead-%e2%80%93-lessons-in-data-loss/' rel='bookmark' title='Permanent Link: Sidekick is dead – lessons in data loss'>Sidekick is dead – lessons in data loss</a> <small>The net has been rife with reports of an extreme...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When I was at University, a philosophy lecturer remarked rather sagely that University is the last place people can go to learn for the sake of learning.</p>
<p>That&#8217;s sort of correct, but not always so. People can fumble through their jobs on a day to day basis learning what they have to, but they can also work along the basis of trying to soak up as much information as they can along the way. I&#8217;m not always a knowledge sponge – particularly if my caffeine quota is on the light side for the day, but I like to think I learn the odd thing here and there.</p>
<p>In the spirit of knowledge acquisition, here&#8217;s a few smaller things I&#8217;ve learned recently:</p>
<ul>
<li>When simulating network connectivity problems, there&#8217;s a big difference between yanking the network cable and shutting down the network interface. (I was doing the interface shutdown, another person was doing the network cable unplug – and our results didn&#8217;t correlate.) <strong>Lesson</strong>: When escalating a case to vendor support, always spell out how you&#8217;re simulating the &#8220;comms failure&#8221; a customer is having.</li>
<li>The &#8216;bigasm&#8217; utility starts to fall in a heap and becomes extremely unreliable once you exceed about 2100 GB of data generated for a single file. <strong>Lesson</strong>: When setting out to generate 2.3+ TB of backup data, create a bunch of files and have a bigasm directive to generate a smaller amount of data per file.</li>
<li>When setting up tests that will take a couple of days to run, always triple check what you&#8217;re about to do before you start it. <strong>Lesson</strong>: If you make a typo of 250 files at 100 GB each instead of 250 files at 10 GB each, bigasm/NetWorker won&#8217;t interpolate what you <em>really</em> meant.</li>
<li>There&#8217;s a hell of a difference between Solaris 10 AMD release 2 and release 8. <strong>Lesson</strong>: If wanting to get a Solaris 10 AMD 64-bit OS working in Parallels Desktop for Mac v5 <em>with</em> networking, go for release 8. It will save many forehead bruises.</li>
<li>ext3 is about as &#8220;modern&#8221; a filesystem as I am an elite sportsperson. <strong>Lesson</strong>: If wanting to achieve decent operational activities with backup to disk under Linux, use XFS instead of ext3.</li>
<li>All eSATA is not created equal. <strong>Lesson</strong>: When using an motherboard SATA -&gt; eSATA converter, make sure the dual drive dock you order doesn&#8217;t work as a port multiplier.</li>
</ul>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;submitHeadline=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;title=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;title=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;title=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;bm_description=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;T=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;title=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;title=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F11%2F11%2Flessons-ive-recently-learned%2F&amp;t=Lessons+I%26%23039%3Bve+recently+learned%26%238230%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>Related posts:<ol><li><a href='http://nsrd.info/blog/2009/11/05/networker-on-linux-%e2%80%93-ditching-ext3-for-xfs/' rel='bookmark' title='Permanent Link: NetWorker on Linux – Ditching ext3 for xfs'>NetWorker on Linux – Ditching ext3 for xfs</a> <small>Recently when I made an exasperated posting about lengthy ext3...</small></li>
<li><a href='http://nsrd.info/blog/2009/10/12/sidekick-is-dead-%e2%80%93-lessons-in-data-loss/' rel='bookmark' title='Permanent Link: Sidekick is dead – lessons in data loss'>Sidekick is dead – lessons in data loss</a> <small>The net has been rife with reports of an extreme...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2009/11/11/lessons-ive-recently-learned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics – NetWorker Data Lifecycle</title>
		<link>http://nsrd.info/blog/2009/10/26/basics-%e2%80%93%c2%a0networker-data-lifecycle/</link>
		<comments>http://nsrd.info/blog/2009/10/26/basics-%e2%80%93%c2%a0networker-data-lifecycle/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:52:49 +0000</pubDate>
		<dc:creator>Preston de Guise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[NetWorker]]></category>
		<category><![CDATA[browse policy]]></category>
		<category><![CDATA[data lifecycle]]></category>
		<category><![CDATA[recyclable]]></category>
		<category><![CDATA[retention policy]]></category>

		<guid isPermaLink="false">http://nsrd.wordpress.com/?p=1221</guid>
		<description><![CDATA[<p>Within NetWorker, data (savesets) can go through several stages in its lifecycle. Here&#8217;s a simple overview of those stages:</p>
<p class="wp-caption-text">Basic data lifecycle</p>
<p>The first stage, obviously, is when data is initially being written – the &#8220;in progress&#8221; stage.</p>
<p>After the backup completes, data enters two stages – a browsable period and a retention period. These periods may [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Within NetWorker, data (savesets) can go through several stages in its lifecycle. Here&#8217;s a simple overview of those stages:</p>
<div id="attachment_1222" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1222" title="Basic data lifecycle" src="http://nsrd.files.wordpress.com/2009/10/basic-data-lifecycle.jpg" alt="Basic data lifecycle" width="500" height="447" /><p class="wp-caption-text">Basic data lifecycle</p></div>
<p>The first stage, obviously, is when data is initially being written – the &#8220;in progress&#8221; stage.</p>
<p>After the backup completes, data enters <em>two</em> stages – a browsable period and a retention period. These periods may have 100% overlap, or they may be distinctly different. For instance, the &#8220;standard&#8221; browse/retention policies chosen by NetWorker when you create a new client are:</p>
<ul>
<li>Browse period – 1 month</li>
<li>Retention period – 1 year</li>
</ul>
<p>A common mistake people make with NetWorker is to assume that the retention period starts when the browse period finishes; in actual fact, the retention and browse period start at the same time, but the browse period can finish <em>before</em> the retention period. So using that standard setting as an example, the saveset is browsable for the first 1 month of the 12 months that it is retained – it is <em>not</em> the case that the saveset is browsable for 1 month, then retained for another 12.</p>
<p>Once data is no longer within the retention period, <em>and there are no backups that depend on it still within the retention period</em>, data is considered to be recyclable.</p>
<p>When data is recyclable:</p>
<ul>
<li>If it is on tape:
<ul>
<li>The data will remain available until the media is <em>recycled</em>. This will only happen once all the backups on the media is also recyclable, <em>and</em> either the administrator manually recycles the media or NetWorker re-uses it.</li>
</ul>
</li>
<li>If it is on a disk backup unit (ADV_FILE) device:
<ul>
<li>The data will be erased from the disk backup unit the next time a volume clean operation is run, or nsrim is run (either as a overnight standard event by NetWorker, or manually via <em>nsrim -X</em>).</li>
</ul>
</li>
</ul>
<p>This isn&#8217;t the &#8220;whole picture&#8221; for data lifecycle within NetWorker, but it is a good brief overview to give you an idea of how data is managed within the environment.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this using...</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;submitHeadline=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;title=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;title=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;title=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;bm_description=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;T=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;title=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;title=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle+@+http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnsrd.info%2Fblog%2F2009%2F10%2F26%2Fbasics-%25e2%2580%2593%25c2%25a0networker-data-lifecycle%2F&amp;t=Basics+%E2%80%93%C2%A0NetWorker+Data+Lifecycle" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://nsrd.info/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nsrd.info/blog/2009/10/26/basics-%e2%80%93%c2%a0networker-data-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
