 




<?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>IT Answers &#187; Query Management Facility</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/database/query-management-facility/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 09:10:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Courses to Take for QMF beginner</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/courses-to-take/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/courses-to-take/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 13:09:13 +0000</pubDate>
		<dc:creator>Sunshine75569</dc:creator>
				<category><![CDATA[IT career planning]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>
		<category><![CDATA[Query Manager]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Is there a list of courses to take in QMF for a beginner from course one to the end? If so, could you please list them. We have SkillSoft courses through our Learning Center but they do not them in order from what you need to take first and so on.  If you could help [...]]]></description>
				<content:encoded><![CDATA[<p>Is there a list of courses to take in QMF for a beginner from course one to the end? If so, could you please list them. We have SkillSoft courses through our Learning Center but they do not them in order from what you need to take first and so on.  If you could help me, it would be greatly appreciated.  Thanks!<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/courses-to-take/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>not a valid Query Management variable.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/not-a-valid-query-management-variable/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/not-a-valid-query-management-variable/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 11:32:23 +0000</pubDate>
		<dc:creator>Pmh</dc:creator>
				<category><![CDATA[CL]]></category>
		<category><![CDATA[CL programming]]></category>
		<category><![CDATA[CL variables]]></category>
		<category><![CDATA[QMQRY]]></category>
		<category><![CDATA[Query Management Facility]]></category>
		<category><![CDATA[STRQMQRY]]></category>
		<category><![CDATA[V5R4]]></category>
		<category><![CDATA[Variables]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, can someone please help me, I am trying to use the QMQRY function to run an update statement. I pass it a variable from the program. Get the following error. is not a valid Query Management variable. Error found on STRQMQRY command. Function check. CPF0001 unmonitored by PGMFCTSEC at statement 3500, instruction X&#8217;0021&#8242;. Can [...]]]></description>
				<content:encoded><![CDATA[<p>Hi, can someone please help me, I am trying to use the QMQRY function to run an update statement. I pass it a variable from the program. Get the following error. is not a valid Query Management variable. Error found on STRQMQRY command. Function check. CPF0001 unmonitored by PGMFCTSEC at statement 3500, instruction X&#8217;0021&#8242;. Can anyone help? Thanks<br/><br/>  <br/><br/> Program<br/><br/> 0021.00      DCL   VAR(&#038;T01.SCTRAN) TYPE(*CHAR) LEN(10)                                   0022.00  /*        DCL        VAR(&#038;FCT) TYPE(*CHAR) LEN(10)  */                           0023.00      DCLF  FILE(SECTEMP/UNUSEDOUT)                                                0024.00                                                                                   0025.00      CLRPFM     FILE(SECTEMP/UNUSEDOUT)                                           0026.00                                                                                   0027.00              RUNQRY     QRY(SECTEMP/UNUSEDFCT) /* GENERATE LISTING +              0028.00                           OF UNUSED FUNCTIONS */                                  0029.00                                                                                   0030.00          /* READ IN UNUSEDOUT FILE THAT CONTAINS A LISTING OF UNUSED FUNCTIONS */ 0031.00                                                                                   0032.00   LOOP:   RCVF                                                                    0033.00     MONMSG MSGID(CPF0864) EXEC(GOTO CMDLBL(EOF))                                  0034.00                                                                                   0035.00              STRQMQRY   QMQRY(SECTEMP/FCTUPDATE) OUTPUT(*OUTFILE) +               0036.00                           OUTFILE(SECTEMP/FCTOUTPUT) +                            0037.00                           SETVAR(&#8216;FCT&#8217; &#038;T01.SCTRAN)                               0038.00                                                                                   0039.00     GOTO CMDLBL LOOP)                             <br/><br/> 0040.00                                                                         0041.00                                                                         0042.00                                                                         0043.00 EOF:                                                                    0044.00              SNDMSG     MSG(&#8216;***** Function Update Completed *****&#8217;) +  0045.00                           TOUSR(SVRHUMPHP)                              0046.00 ENDPGM                                                                  <br/><br/> Update statement called<br/><br/> 0001.00 UPDATE SECTEMP/SCP002 SET SCTLVL = &#8217;8&#8242; WHERE SCTRAN = &#038;T01.SCTRAN <br/><br/> Any help would be gratefully appreciated&#8230; Thanks<br/><br/>                                                                                                                           <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/not-a-valid-query-management-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QMF</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qmf/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/qmf/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 14:14:12 +0000</pubDate>
		<dc:creator>Avijji</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[DB2 query tools]]></category>
		<category><![CDATA[IBM DB2]]></category>
		<category><![CDATA[IBM DB2 Query Management Facility]]></category>
		<category><![CDATA[IBM Query Management Facility]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[can we save the statements write in QMF?]]></description>
				<content:encoded><![CDATA[<p>can we save the statements write in QMF?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/qmf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QMF for Windows</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qmf-for-windows/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/qmf-for-windows/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 06:54:20 +0000</pubDate>
		<dc:creator>Jams</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How can I execute 10 sql at one go ?]]></description>
				<content:encoded><![CDATA[<p>How can I execute 10 sql at one go ?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/qmf-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert table entry from text to numeric</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/convert-table-entry-from-text-to-numeric/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/convert-table-entry-from-text-to-numeric/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 12:10:57 +0000</pubDate>
		<dc:creator>LHammer</dc:creator>
				<category><![CDATA[Query Management Facility]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have generated a table that has a 4 char text field. I want add a column and convert this text field that is numbers to numeric so that both coexist.]]></description>
				<content:encoded><![CDATA[<p>I have generated a table that has a 4 char text field.  I want add a column and convert this text field that is numbers to numeric so that both coexist.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/convert-table-entry-from-text-to-numeric/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restrict QMF to execute predefined queries only?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-restrict-qmf-to-execute-predefined-queries-only/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-restrict-qmf-to-execute-predefined-queries-only/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 08:01:17 +0000</pubDate>
		<dc:creator>Meichhar</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[Mainframe]]></category>
		<category><![CDATA[OS/390]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>
		<category><![CDATA[z/OS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, is there a way to restrict the usage of QMF/390 to predefined queries/procedures only? Some users should not be able to edit or create SQL statements on their own. Thank you very much. Regards Michael]]></description>
				<content:encoded><![CDATA[<p>Hi, is there a way to restrict the usage of QMF/390 to predefined queries/procedures only? Some users should not be able to edit or create SQL statements on their own.</p>
<p>Thank you very much.</p>
<p>Regards<br />
Michael</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-restrict-qmf-to-execute-predefined-queries-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QMF issue</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qmf-issue/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/qmf-issue/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 21:28:55 +0000</pubDate>
		<dc:creator>Tiburonblanco</dc:creator>
				<category><![CDATA[AS/400 DB2]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by]]></description>
				<content:encoded><![CDATA[New Discussion Post by ]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/qmf-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unloading specific records in a foreign key, cascade format.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unloading-specific-records-in-a-foreign-key-cascade-format/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/unloading-specific-records-in-a-foreign-key-cascade-format/#comments</comments>
		<pubDate>Tue, 13 May 2008 18:33:24 +0000</pubDate>
		<dc:creator>Donnaw</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[DB2 administration]]></category>
		<category><![CDATA[JCL]]></category>
		<category><![CDATA[OS/390]]></category>
		<category><![CDATA[QMF]]></category>
		<category><![CDATA[Query Management Facility]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, We have DB2 version 8, os/390. I know how to use QMF and JCL. I would like to unload, to files, specific records that I would enter, by the key, in a where clause. The record would then cascade down to unload ALL tables, with a specified TBCREATOR name based on foreign keys. I [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>We have DB2 version 8, os/390.  I know how to use QMF and JCL.</p>
<p>I would like to unload, to files, specific records that I would enter, by the key, in a where clause.  The record would then cascade down to unload ALL tables, with a specified TBCREATOR name based on foreign keys.  I would like the records to be unloaded to their own files.</p>
<p>For Example:</p>
<p>There are 5 (actually there could be 100 or more, but for this purpose, I&#8217;ll just use 5 for brevity) tables:   TBA.ONE, TBA.TWO, TBA.THREE, TBB.ONE, TBC.ONE, TBA.FOUR, TBA.FIVE</p>
<p>I would use the where clause on the TBA.ONE to specify a key.  It would load that record to a data set.  Then it would take the foreign key of TBA.ONE, use it to get the record from TBA.TWO and put it to a data set.  It would use the foreign key of TBA.THREE and get the record and put it in a data set.  etc&#8230;</p>
<p>Would there be an issue with creating duplicate data sets when more than one table has the same foreign key?  </p>
<p>The problem is, we have a production region where a customer says they have an issue with a specific record.  Usually, we don&#8217;t have that exact record in the Test Region.  In order to resolve the program problem, we need the exact same data in the test region.  How does one transfer all applicable records, from all applicable tables,  from the one region to the other?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/unloading-specific-records-in-a-foreign-key-cascade-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/26 queries in 0.027 seconds using memcached
Object Caching 809/922 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-24 13:28:48 -->