 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SAVF: Backing up all user libraries</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/savf/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 23:03:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: The Most-Watched IT Questions: October 4, 2011 - ITKE Community Blog</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-97350</link>
		<dc:creator>The Most-Watched IT Questions: October 4, 2011 - ITKE Community Blog</dc:creator>
		<pubDate>Tue, 04 Oct 2011 06:55:40 +0000</pubDate>
		<guid isPermaLink="false">#comment-97350</guid>
		<description><![CDATA[[...] 8. CharlieBrowne offers another approved answer, this time on SAVF: Backing up all user libraries. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 8. CharlieBrowne offers another approved answer, this time on SAVF: Backing up all user libraries. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96914</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Thu, 22 Sep 2011 13:29:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-96914</guid>
		<description><![CDATA[This should do it for you.
&lt;pre&gt;
/* *******************************************************************/            
/* Program Name : LIBS2SAVF                                          */            
/* Description  : Save Selected Librarties to a *SAVF                */            
/*                                                                   */            
/*  Created By : Charlie Browne                                      */            
/*  Create Date : 09/22/11                                           */            
/* *******************************************************************/            
             PGM                                                                   
                                                                                   
/*-------------------------------------------------------------------*/            
/* Define the variables                                              */            
/*-------------------------------------------------------------------*/            
             DCL        VAR(&amp;wJobNbr)  TYPE(*CHAR) LEN(06)                         
             DCL        VAR(&amp;JobLib )  TYPE(*CHAR) LEN(10)                         
             DCL        VAR(&amp;SaveLib)  TYPE(*CHAR) LEN(10)                         
                                                                                   
/*-------------------------------------------------------------------*/            
/* Retrieve Job Number to build Job library                          */            
/*-------------------------------------------------------------------*/            
             RTVJOBA    NBR(&amp;wJobNbr)                                              
                                                                                   
/*-------------------------------------------------------------------*/            
/* Create the library and make it first in the list                   */           
/*-------------------------------------------------------------------*/            
             Chgvar     &amp;JobLib  (&#039;JOB&#039; &#124;&#124; &amp;wJobNbr)                               
             CRTLIB     LIB(&amp;JobLib) TYPE(*TEST)                                   
             ADDLIBLE   &amp;JobLib                                                    
                                                                                   
/*-------------------------------------------------------------------------*/      
/*  Create *SAVF with name of library to be saved                          */      
/*  Save that library to the *SAVF                                         */      
/*                                                                         */      
/*  Replace &#039;YourLib&#039; with the name of a library you want to save          */      
/*   Do this for each of the 16 occurances. Then compile program           */      
/*-------------------------------------------------------------------------*/      
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  &#039;YourLib&#039;                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
                                                                                   
Subr       Subr(SrSaveLib)                                                         
             CrtSavf    &amp;JobLib/&amp;SaveLib                                           
             Savlib     &amp;Savelib *savf SAVF(&amp;JobLib/&amp;SaveLib) SAVACT(*LIB)         
EndSubr                                                                            
                                                                                   
END:         ENDPGM&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>This should do it for you.</p>
<pre>
/* *******************************************************************/            
/* Program Name : LIBS2SAVF                                          */            
/* Description  : Save Selected Librarties to a *SAVF                */            
/*                                                                   */            
/*  Created By : Charlie Browne                                      */            
/*  Create Date : 09/22/11                                           */            
/* *******************************************************************/            
             PGM                                                                   
                                                                                   
/*-------------------------------------------------------------------*/            
/* Define the variables                                              */            
/*-------------------------------------------------------------------*/            
             DCL        VAR(&amp;wJobNbr)  TYPE(*CHAR) LEN(06)                         
             DCL        VAR(&amp;JobLib )  TYPE(*CHAR) LEN(10)                         
             DCL        VAR(&amp;SaveLib)  TYPE(*CHAR) LEN(10)                         
                                                                                   
/*-------------------------------------------------------------------*/            
/* Retrieve Job Number to build Job library                          */            
/*-------------------------------------------------------------------*/            
             RTVJOBA    NBR(&amp;wJobNbr)                                              
                                                                                   
/*-------------------------------------------------------------------*/            
/* Create the library and make it first in the list                   */           
/*-------------------------------------------------------------------*/            
             Chgvar     &amp;JobLib  ('JOB' || &amp;wJobNbr)                               
             CRTLIB     LIB(&amp;JobLib) TYPE(*TEST)                                   
             ADDLIBLE   &amp;JobLib                                                    
                                                                                   
/*-------------------------------------------------------------------------*/      
/*  Create *SAVF with name of library to be saved                          */      
/*  Save that library to the *SAVF                                         */      
/*                                                                         */      
/*  Replace 'YourLib' with the name of a library you want to save          */      
/*   Do this for each of the 16 occurances. Then compile program           */      
/*-------------------------------------------------------------------------*/      
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
             Chgvar     &amp;SaveLib  'YourLib'                                        
             CallSubr   SrSaveLib                                                  
                                                                                   
                                                                                   
Subr       Subr(SrSaveLib)                                                         
             CrtSavf    &amp;JobLib/&amp;SaveLib                                           
             Savlib     &amp;Savelib *savf SAVF(&amp;JobLib/&amp;SaveLib) SAVACT(*LIB)         
EndSubr                                                                            
                                                                                   
END:         ENDPGM</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajasekhar15</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96898</link>
		<dc:creator>rajasekhar15</dc:creator>
		<pubDate>Thu, 22 Sep 2011 04:11:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-96898</guid>
		<description><![CDATA[1. If you must use *SAVF, then you can only do one at a time.
     i need to do in save file
2. Can you go to TAPE?
     no i can&#039;t
3. Is this something you want to run once or everyday?
     r u asking abt those lib r wat? but i&#039;m not going to use those lib right, might be in   
     future.
4. Is the list of libraries static or can be be changing?
     objects in the libraries r cobal prgms
5. How many libraries in need to be included?
     16 lib

thanks in advance charlie......:-)]]></description>
		<content:encoded><![CDATA[<p>1. If you must use *SAVF, then you can only do one at a time.<br />
     i need to do in save file<br />
2. Can you go to TAPE?<br />
     no i can&#8217;t<br />
3. Is this something you want to run once or everyday?<br />
     r u asking abt those lib r wat? but i&#8217;m not going to use those lib right, might be in<br />
     future.<br />
4. Is the list of libraries static or can be be changing?<br />
     objects in the libraries r cobal prgms<br />
5. How many libraries in need to be included?<br />
     16 lib</p>
<p>thanks in advance charlie&#8230;&#8230;:-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96878</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:58:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-96878</guid>
		<description><![CDATA[Rajasekhar15 -- Can you answer these questions. There are various solutiuons depending on what your requirement is.
The answer could be as simple as a couple of User Defined PDM options to creatiing a DB that has the libraries you want to save, to dynamically creating a list of libraries each time you run it.

1. If you must use *SAVF, then you can only do one at a time.
2. Can you go to TAPE?
3. Is this something you want to run once or everyday?
4. Is the list of libraries static or can be be changing?
5. How many libraries in need to be included?]]></description>
		<content:encoded><![CDATA[<p>Rajasekhar15 &#8212; Can you answer these questions. There are various solutiuons depending on what your requirement is.<br />
The answer could be as simple as a couple of User Defined PDM options to creatiing a DB that has the libraries you want to save, to dynamically creating a list of libraries each time you run it.</p>
<p>1. If you must use *SAVF, then you can only do one at a time.<br />
2. Can you go to TAPE?<br />
3. Is this something you want to run once or everyday?<br />
4. Is the list of libraries static or can be be changing?<br />
5. How many libraries in need to be included?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: splat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96876</link>
		<dc:creator>splat</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:32:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-96876</guid>
		<description><![CDATA[Is there a requirement that you must use a save file?  If not, Idfalls suggestion is probably the simplest solution.]]></description>
		<content:encoded><![CDATA[<p>Is there a requirement that you must use a save file?  If not, Idfalls suggestion is probably the simplest solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajasekhar15</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96873</link>
		<dc:creator>rajasekhar15</dc:creator>
		<pubDate>Wed, 21 Sep 2011 11:01:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-96873</guid>
		<description><![CDATA[charlie can u give me a sample program for this issue]]></description>
		<content:encoded><![CDATA[<p>charlie can u give me a sample program for this issue</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rickmcd</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96831</link>
		<dc:creator>rickmcd</dc:creator>
		<pubDate>Tue, 20 Sep 2011 15:20:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-96831</guid>
		<description><![CDATA[If you are on V5R4 and above and have enough disk space research Virtual tape. You can then use savlib to save all user libraries to the Virtual tape that resides in the IFS.]]></description>
		<content:encoded><![CDATA[<p>If you are on V5R4 and above and have enough disk space research Virtual tape. You can then use savlib to save all user libraries to the Virtual tape that resides in the IFS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96822</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Tue, 20 Sep 2011 13:00:45 +0000</pubDate>
		<guid isPermaLink="false">#comment-96822</guid>
		<description><![CDATA[If you must use *SAVF, then you can only do one at a time.
Can you go to TAPE?
Is this something you want to run once or everyday?]]></description>
		<content:encoded><![CDATA[<p>If you must use *SAVF, then you can only do one at a time.<br />
Can you go to TAPE?<br />
Is this something you want to run once or everyday?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajasekhar15</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96798</link>
		<dc:creator>rajasekhar15</dc:creator>
		<pubDate>Tue, 20 Sep 2011 05:55:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-96798</guid>
		<description><![CDATA[&lt;b&gt;charlie&lt;/b&gt; u r correct, its says the same error, but i don&#039;t know CL, is there any other way ,plz help me, or else i have to sav one by one...:-(]]></description>
		<content:encoded><![CDATA[<p><b>charlie</b> u r correct, its says the same error, but i don&#8217;t know CL, is there any other way ,plz help me, or else i have to sav one by one&#8230;:-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: idfalls</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/savf/#comment-96784</link>
		<dc:creator>idfalls</dc:creator>
		<pubDate>Mon, 19 Sep 2011 21:26:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-96784</guid>
		<description><![CDATA[go to the save menu (go save) and take option23 (all user data)]]></description>
		<content:encoded><![CDATA[<p>go to the save menu (go save) and take option23 (all user data)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.011 seconds using memcached
Object Caching 394/397 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 23:05:04 -->