<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-233582358971772460</atom:id><lastBuildDate>Fri, 06 Sep 2024 05:37:11 +0000</lastBuildDate><category>Developer</category><category>Mainframe</category><category>Power Programmer</category><category>Programmer</category><category>COBOL</category><category>DB2</category><category>Access Path</category><category>Bind</category><category>Explain</category><category>Optimizer</category><category>Soft Skills</category><category>Artificial Intelligence</category><category>Power Programming Point</category><title>Power Programming Point</title><description>Mainframe programming techniques to improve your chances of success in the business world.</description><link>http://powerprogrammingpoint.blogspot.com/</link><managingEditor>noreply@blogger.com (Cicero)</managingEditor><generator>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-7745566508223051338</guid><pubDate>Tue, 12 Feb 2008 19:19:00 +0000</pubDate><atom:updated>2008-02-12T14:45:24.134-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Access Path</category><category domain="http://www.blogger.com/atom/ns#">Bind</category><category domain="http://www.blogger.com/atom/ns#">DB2</category><category domain="http://www.blogger.com/atom/ns#">Developer</category><category domain="http://www.blogger.com/atom/ns#">Explain</category><category domain="http://www.blogger.com/atom/ns#">Mainframe</category><category domain="http://www.blogger.com/atom/ns#">Optimizer</category><category domain="http://www.blogger.com/atom/ns#">Power Programmer</category><title>How to Explain a DB2 SQL Command for a single table</title><description>&lt;em&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;I&#39;ve just published this how-to in ehow.com and I thought you would enjoy if I shared it here with you as well.&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;color:#333399;&quot;&gt;Introduction&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;When an SQL is executed against or bound to a DB2 database DB2 Optimizer tool defines the access path used to access the data. This access path is defined according to tables’ statistics generated by DB2 Runstats tool.&lt;br /&gt;&lt;br /&gt;The Explain command details the access path defined by DB2 and allows you to analyze how the data will be accessed and how you can improve the command&#39;s performance.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Instructions&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Difficulty:&lt;/span&gt; Moderate&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#333399;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Things You&#39;ll Need&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;• Knowledge and access to a SQL execution tool like SPUFI or QMF;&lt;br /&gt;• A table called PLAN_TABLE which has your user id as its owner (you can create it running the command: CREATE TABLE your-[userid].PLAN_TABLE LIKE DEFAULT.PLAN_TABLE;).&lt;br /&gt;Steps&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Step One&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;Execute the explain command on your selection command:&lt;br /&gt;&lt;br /&gt;(The following delete SQL cleans the PLAN_TABLE before adding the new information and can be executed before the explain command, both can be written in the same Spufi file and executed together.)&lt;br /&gt;&lt;br /&gt;DELETE&lt;br /&gt;FROM [your_user_id].PLAN_TABLE&lt;br /&gt;WHERE&lt;br /&gt;QUERYNO = 1;&lt;br /&gt;&lt;br /&gt;EXPLAIN PLAN SET QUERYNO = 1 FOR&lt;br /&gt;-- [your sql statement here]&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;This command will put the Explain information in the PLAN_TABLE.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;color:#333399;&quot;&gt;Step Two&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;Execute this SQL command to obtain explain information:&lt;br /&gt;SELECT *&lt;br /&gt;FROM PLAN_TABLE&lt;br /&gt;WHERE&lt;br /&gt;QUERYNO = 1&lt;br /&gt;ORDER BY TIMESTAMP, QUERYNO, QBLOCKNO, PLANNO, MIXOPSEQ&lt;br /&gt;WITH UR;&lt;br /&gt;&lt;br /&gt;QUERYNO should be the same used in the explain command on Step 1.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Step Three&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;Look at these fields for important information:&lt;br /&gt;PLANNO - Number of steps necessary to process the query indicated in QBLOCKNO;&lt;br /&gt;METHOD - Indicate joins method used for the step (PLANNO);&lt;br /&gt;ACCESTYPE - Method used to access the table;&lt;br /&gt;MATCHCOLS - Number of index key used for index scan (when ACCESTYPE is I, IN, M, MX);&lt;br /&gt;ACCESSNAME - Name of the index used for index scan (when ACCESTYPE is I, IN, M, MX);&lt;br /&gt;INDEXONLY - Indicates if the index alone is enough to carry out the step;&lt;br /&gt;PREFETCH - Indicates if data pages can be read in advance by prefetch;&lt;br /&gt;COLUMN_FN_EVAL - Indicates when aggregate functions are evaluated.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;color:#333399;&quot;&gt;Step Four&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:times new roman;&quot;&gt;Analyze the results using the following tips:&lt;br /&gt;Is data accessed through an index?&lt;br /&gt;&lt;br /&gt;ACCESSTYPE:&lt;br /&gt;I - Index. This is the best access after the one-fetch index. It uses the index to retrieve rows. The number of index columns used for matching is represented in MATCHCOLS.&lt;br /&gt;I1 - One-fetch index access. Is the best access possible as it requires retrieving only one row. However, it applies only to statement with a MAX or MIN function.&lt;br /&gt;N - Index scan with IN keyword in the predicate. In the example: T(IC1, IC2, IC3, IC4). Command: Select * from T where IC1 = 1 AND IC2 (in 1,2,3) AND IC3 &gt; 0 and IC4 = 1. MATCHCOLS will be 3 and ACCESSTYPE will be N. The IN-List scan will be performed as three matching index scan: (IC=1, IC2=1, IC3&gt;0), (IC=1, IC2=2, IC3&gt;0) and (IC=1, IC2=3, IC3&gt;0). If parallelism is supported they will execute in parallel.&lt;br /&gt;MX - Multiple index scan. More than one index is used to access a table. It is an efficient access path when no single index is efficient and a combination of index provides efficient access.&lt;br /&gt;R - Table space scan. This is the worst type of access as the entire table will be searched to process the query.&lt;br /&gt;&lt;br /&gt;MATCHCOLS&lt;br /&gt;The number of index columns matched on an index scan.&lt;br /&gt;If it is 0 all index keys and RIDs are read.&lt;br /&gt;If one of the matching predicates is a range there will be no more matching columns. Example for the index on T(IC1, IC2, IC3, IC4) for the following command the IC3 predicate won’t be used: Select * from T where IC1=1 and IC2 &gt; 1 and IC3 = 1. The position of the columns in the index is used to decide that IC3 won’t be used.&lt;br /&gt;&lt;br /&gt;INDEXONLY&lt;br /&gt;If the columns needed for a SQL statement can be found in the index DB2 will not access the table. INDEXONLY performance is very high.&lt;br /&gt;&lt;br /&gt;PREFETCH&lt;br /&gt;Prefetching determines in advance if a set of data pages is about to be used and then reads the entire set into a buffer with a single asynchronous I/O operation.&lt;br /&gt;S - Sequential prefetch: data pages read in advance are accessed sequentially. Table space scan always uses sequential prefetch.&lt;br /&gt;L - List prefetch: one or more indexes are used to select the RIDs list in advance.&lt;br /&gt;D =- Dynamic prefetch: the pages to be accessed will be non sequential.&lt;br /&gt;Blank - Prefetch not expected.&lt;br /&gt;&lt;br /&gt;SORTs&lt;br /&gt;They add an extra step to the accessed data.&lt;br /&gt;METHOD=3 - These sorts are used for ORDER BY, GROUP BY, SELECT DISTINCT or UNION.&lt;br /&gt;SORTC_UNIQUE, SORTC_ORDERBY, SORTC_GROUP_BY - Indicates an extra sort for an UNIQUE, ORDER BY and GROUP BY clause.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;color:#333399;&quot;&gt;Overall Tips &amp;amp; Warnings&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;• Table Space Scans (ACCESTYPE = R PREFETCH = S)&lt;br /&gt;Sometimes, even though you are accessing a table through the index columns the DB2 optimizer might define the access as a table space scan if the indices that have matching have low cluster ratios or a high percentage of the rows in the table are returned.&lt;br /&gt;&lt;br /&gt;How to published in:&lt;br /&gt;&lt;a href=&quot;http://www.ehow.com/how_2199192_db-sql-command-single-table.html&quot;&gt;http://www.ehow.com/how_2199192_db-sql-command-single-table.html&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/02/how-to-explain-db2-sql-command-for.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-2841306829953965083</guid><pubDate>Mon, 28 Jan 2008 14:31:00 +0000</pubDate><atom:updated>2008-02-01T18:13:45.635-05:00</atom:updated><title>Learn about the business, technical skills are not enough</title><description>&lt;blockquote&gt;&lt;em&gt; This is a small article I wrote last week.&lt;/em&gt;&lt;/blockquote&gt;&lt;a target=&quot;_new&quot; href=&quot;http://ezinearticles.com/&quot;&gt;&lt;img src=&quot;http://ezinearticles.com/featured/images/ea_featured_70_7.gif&quot; alt=&quot;As Featured On Ezine Articles&quot; align=&quot;left&quot; border=&quot;0&quot; hspace=20 vspace=20 /&gt;&lt;/a&gt;  Every big company knows the importance of having a strong Information Technology department capable of delivering high-quality products i.e., efficient systems. Usually, the benefits obtained with system improvements are difficult or impossible to measure monetarily and the IT Department tends to be considered a non-lucrative division. Thus, IT departments try to prove their value by focusing on delivering solutions faster and more reliable.&lt;br /&gt;&lt;br /&gt;The necessity to deliver results quicker, sometimes, creates the necessity to recreated, adapted or ignored software development methodologies in order to comply with the companies’ necessities. In some companies, developers are just thrown into the cooking pan without proper training or an appropriate methodology to follow. As a result, system’s quality decrease, the system becomes unstable and Quality Assurance testing has to be reinforced to solve problems increasing delivery time as problems discovered in QA have to go back to development and start over again.&lt;br /&gt;&lt;br /&gt;Inside this culture, we still have some IT professionals who believe that it is not important for developers to understand the business aspects of the system where they work. These professionals believe that a technical view of the system is enough which might be true in less complex systems or in places where Systems Analysts still exist. However, many developers today work directly with Business Analysts who try to translate business requirements in a language they can understand. If these developers have business knowledge, the BA work becomes easier and hardly will developers start their work based on misunderstanding business concepts. This certainly makes the software development process faster and the results more reliable.&lt;br /&gt;&lt;br /&gt;More than developers and programmers we need Power Developers or Power Programmers. We need professionals who are not only highly qualified in technical aspects but who are also business proficient. They must be interested in their company’s product and its methods. Along with the Business Analysts, they will develop better solutions; give valuable suggestions to help in improving the system and they will also be more proactive. By balancing technical skills with business skills they are a step ahead of their peers, the ordinary developers or programmers.&lt;br /&gt;&lt;br /&gt;Every programming language is composed of a limited number of commands and techniques which many can master and become programmer experts. However, what makes some developers more valuable than others is their capacity to integrate their technical knowledge with their business knowledge as well as their ability to see the big picture and understand where their work fit. They bring valuable advantages to their companies by delivering better solutions, in less time, with less support and less need for maintenance later on.&lt;br /&gt;&lt;br /&gt;In order to improve your skills, you can start by trying to better understand the tasks you have in hand and how they fit in the company’s system. Try to look at the big picture. The analyst working with you can certainly help or you can ask a co-worker that you know is more experience with the system. People usually like to help and share their knowledge if you present yourself as an ally. Even if you tell your boss that someone helped you on doing something, he will appreciate your work if you deliver something more valuable, more reliable and/or faster.&lt;br /&gt;&lt;br /&gt;Do not forget. Be proactive. If you find a problem or get stuck in your work and need help with the analysis or with deciding which way to take, before asking for help try to understand as much as you can about the problem and try to come up with different solutions to fit the different scenarios you found. Bring solutions to table, not problems. Your efforts will certainly be recognized.&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/learn-about-business-technical-skills.html</link><author>noreply@blogger.com (Cicero)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-440362057131205566</guid><pubDate>Sun, 13 Jan 2008 17:57:00 +0000</pubDate><atom:updated>2008-01-13T13:00:34.150-05:00</atom:updated><title>External article: Confessions of a terrible programmer</title><description>This post is very interesting: &lt;a href=&quot;http://blog.kickin-the-darkness.com/2007/09/confessions-of-terrible-programmer.html&quot;&gt;Confessions of a terrible programmer&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;An experienced programmer break some assumptions and look at the programmer&#39;s job from a different perspective full of irony. Don&#39;t take it too serious, you are not supposed too.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/external-article-confessions-of.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-7520080013414326596</guid><pubDate>Sun, 13 Jan 2008 14:36:00 +0000</pubDate><atom:updated>2008-01-13T12:55:16.504-05:00</atom:updated><title>External article: How to recognize a good programmer</title><description>Here is an interesting article: &lt;a href=&quot;http://www.inter-sections.net/2007/11/13/how-to-recognise-a-good-programmer/&quot;&gt;How to recognise a good programmer&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It focus mainly on technical skills, characteristics of highly skilled programmers and how to recgonise them when hiring a programmer. However, who needs a just-programmer nowadays? Don&#39;t companies need more than that? Don&#39;t they need people capable of understanding their business, seing the big picture and understanding where their work fit?&lt;br /&gt;&lt;br /&gt;The skills mentioned in the article might be good to find good coders, but it won&#39;t help in finding someone who is capable of helping on improving a company&#39;s system. As someone already said in a comment there, some of these bleeding edge programmers try to push a technology where it does not fit.&lt;br /&gt;&lt;br /&gt;The Paul Graham article mentioned sounds strange, &quot;what killed most of the startups in the e-commerce business back in the 90s, it was bad programmers. A lot of those companies were started by business guys who thought the way startups worked was that you had some clever idea and then hired programmers to implement it.&quot; The business guys don&#39;t know how to hire a programmer and the programmers are responsible for the startup failure? I mean, wasn&#39;t the business guys the ones who failed by hiring unqualified programmers? It seems to me that people are trying to assign blame and if the business guys where more focused in contracting programmers with better business skills instead of the technical skills mentioned on the article, they would probably have higher chances of success.&lt;br /&gt;&lt;br /&gt;People who believe the best programmers develop programs at home, in their leisure time, for fun, probably believe that the best pathologist has a corpse at home.&lt;br /&gt;&lt;br /&gt;On conclusion, I believe that what makes a great programmer are a set of soft skills, mainly, their ability to understand the business. As I mentioned here: &lt;a href=&quot;http://powerprogrammingpoint.blogspot.com/2007/12/power-programming-point-importance-of_27.html&quot;&gt;The Importance of Soft Skills&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/external-article-how-to-recognize-good.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-5416840032630382417</guid><pubDate>Sun, 06 Jan 2008 04:12:00 +0000</pubDate><atom:updated>2008-01-05T23:15:52.709-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">DB2</category><category domain="http://www.blogger.com/atom/ns#">Mainframe</category><title>A good DB2 for mainframe page</title><description>For those of you interested in learning DB2, this site is a very good source of information related to mainframe.&lt;br /&gt;&lt;br /&gt;The content is clean and right to the point with lots of examples and code snippets.&lt;br /&gt;&lt;br /&gt;I hope you like it.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://db2examples.googlepages.com/home&quot;&gt;db2examples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/good-db2-for-mainframe-page.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-378363634031727001</guid><pubDate>Fri, 04 Jan 2008 21:14:00 +0000</pubDate><atom:updated>2008-01-04T16:17:31.549-05:00</atom:updated><title>IT skills for 2008</title><description>&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I came across a very interesting article from itWorldCanada about important IT skills that can help you get a job in 2008 and, as I have been saying, business knowledge is one of them.&lt;/span&gt;&lt;/p&gt;    &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;There is a very important idea expressed by a manager in this article: it is not hard to find an IT professional with good technical skills, but it is hard to find one who has business skills, a mix between business/analyst and programmer/analyst.&lt;/span&gt;&lt;/p&gt;    &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;The eight important skills mentioned are:&lt;/span&gt;&lt;/p&gt;  &lt;ol&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Programming/application development&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Project management&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Help desk/Technical Support&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Security&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Data Centers&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Business knowledge&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Networking&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Telecommunications&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;                  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;Click for the article: &lt;a target= &quot;_blank&quot; href=&quot;http://www.itworldcanada.com/Pages/Docbase/ViewArticle.aspx?ID=idgml-26fcacfb-1ec1-4794-a267-3c33d19cc2d1&amp;amp;Portal=1fa35bf9-d296-4571-8fff-c665a851ec1d&amp;amp;ParaStart=15&amp;amp;ParaEnd=30&amp;amp;direction=prev&amp;amp;News=Daily+ITwire&amp;amp;Previous=Previous&quot;&gt;Eight IT skills almost guaranteed to land you a job&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/it-skills-for-2008.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-8226044152437456889</guid><pubDate>Thu, 03 Jan 2008 02:54:00 +0000</pubDate><atom:updated>2008-01-02T21:55:29.552-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Developer</category><category domain="http://www.blogger.com/atom/ns#">Power Programmer</category><category domain="http://www.blogger.com/atom/ns#">Programmer</category><category domain="http://www.blogger.com/atom/ns#">Soft Skills</category><title>Not only programmers but Power Programmers</title><description>&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I started this blog to help people that work in big companies. I have been working in mainframe environment for ten years, playing different roles. I also developed a small Project Management system using Microsoft Office and VBA for couple of years.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Here, I am more focused on soft skills, those characteristics that differentiate highly skilled IT developers. Later, I will focus on technical skills but, for now, I will explore important traits for people who work for companies and have to deal with co-workers, managers, business analysts, end-users, shareholders and others.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;To begin with, I am trying to define a new kind of programmer: the power programmer. Power programmers are developers, or programmers, who are more than code-writers. They are more similar to analyst-programmers, people who understand the system where they work, as well as, the business rules.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I have worked for insurance companies most of my life and I can tell you that the most successful professionals are those highly skilled programmers, some are even average, who understand the system, business and the company culture.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;If you want to move forward in your career and be well regarded in your workplace, you must focus on your soft skills along with your technical ones. You have to show interest in your work and constantly ask yourself: “how can I become a better asset to my employer?”&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I will discuss what you can do to improve your chances of success inside your company.&lt;/span&gt;&lt;/p&gt;  &lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2008/01/not-only-programmers-but-power.html</link><author>noreply@blogger.com (Cicero)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-2401554896728348055</guid><pubDate>Thu, 27 Dec 2007 17:18:00 +0000</pubDate><atom:updated>2007-12-27T12:19:24.973-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Developer</category><category domain="http://www.blogger.com/atom/ns#">Power Programmer</category><category domain="http://www.blogger.com/atom/ns#">Programmer</category><category domain="http://www.blogger.com/atom/ns#">Soft Skills</category><title>Power Programming Point: The importance of soft skills</title><description>&lt;span xmlns=&quot;&quot;&gt;&lt;p&gt;In today&#39;s business market where we can find a great amount of highly skilled developers, soft skills are setting apart the most successful workers inside a company.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Now that I have more than ten years of experience, when I go to an interview, the interviewers are more interested in my soft skills. They are interested in how I will fit their organization and their working environment, getting along with the other employers and being interested in my work.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Smart managers will try to be certain that you can at least go up one position. They don&#39;t want to hire someone who is only skilled to work in the position to which they are hiring. They want people who want to grow inside the company and bring value to them.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Many developers are concerned about programming and doing what they are told but, in reality, those who learn more about the big picture, the company environment, the business, are considered better options when time for promotions or bonus arrive.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;So, do not forget that you have to work on your soft skills. Be nice to your co-workers, show interest in what you are doing, try to help your boss when defining your own works, bring constructive ideas to the table and, above all, think about how you can improve the company&#39;s system as whole, not only your own part&lt;/p&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/power-programming-point-importance-of_27.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-4719612999050153934</guid><pubDate>Fri, 21 Dec 2007 04:06:00 +0000</pubDate><atom:updated>2007-12-21T00:34:49.471-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Power Programmer</category><title>Important ideas for Power Programmers</title><description>In order to succeed in today&#39;s business world you must be more than just a programmer. You must be a Power Programmer, a technician capable of delivering the best solutions, in less time, with less need for supporter and less problems.&lt;br /&gt;&lt;br /&gt;These Power Programmers must have the following ideas in mind:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;understand the &lt;span style=&quot;font-weight: bold;&quot;&gt;business&lt;/span&gt; in which they work is essential;&lt;/li&gt;&lt;li&gt;program and system &lt;span style=&quot;font-weight: bold;&quot;&gt;documentation&lt;/span&gt; are very important;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;following programming &lt;span style=&quot;font-weight: bold;&quot;&gt;standards&lt;/span&gt; improves the work;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;being &lt;span style=&quot;font-weight: bold;&quot;&gt;proactive&lt;/span&gt; will make them outstanding among the others;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;being a &lt;span style=&quot;font-weight: bold;&quot;&gt;problem solver&lt;/span&gt; is a great asset;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;communication&lt;/span&gt; is a necessary ability.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;br /&gt;Do you know another important idea for programmers to better succeed today? Leave a commentary or send me an e-mail. Thanks.&lt;br /&gt;&lt;/span&gt;   &lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/important-ideas-for-power-programmers.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-912148142898876821</guid><pubDate>Sun, 16 Dec 2007 21:36:00 +0000</pubDate><atom:updated>2007-12-21T16:04:42.151-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Artificial Intelligence</category><category domain="http://www.blogger.com/atom/ns#">COBOL</category><category domain="http://www.blogger.com/atom/ns#">Developer</category><title>Cobol and Artificial Intelligence: Can we make a match?</title><description>&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I have always been interested in Artificial Intelligence. I think it is one of the limits to what we can do, yet. &lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Last night I came across some guidelines to help in creating a Mind using COBOL. I think that the idea behind this site is instigate people, COBOL developer to be more specific, to create a mind using different programming languages. They expect programmers to create the different modules they suggest and integrate them.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;I could not find out if someone is trying to do it. If you find out, please tell me, I’m really curious to know the results.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Maybe I will undertake the task.&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;a href=&quot;http://mind.sourceforge.net/cobol.html&quot;&gt;Related Article&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;  &lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/cobol-and-artificial-intelligence-can.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>10</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-8380478993463017589</guid><pubDate>Sat, 15 Dec 2007 19:35:00 +0000</pubDate><atom:updated>2007-12-21T16:04:06.861-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">COBOL</category><category domain="http://www.blogger.com/atom/ns#">Mainframe</category><category domain="http://www.blogger.com/atom/ns#">Programmer</category><title>How is COBOL today?</title><description>I f&lt;span lang=&quot;EN-CA&quot;&gt;inally came across a fair article about COBOL looking at it from a business point of view instead of a technical one. Many IT theorists have been claiming COBOL&#39;s death for decades but I believe that the majority of them look at the language as academics.&lt;/span&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;As Mr. Abraham points out in his article, “[COBOL] is a basic fact of business life.” It is a fundamental tool for business. Many companies that started decades ago have been using it and now COBOL supports their system. Industries like Bank, Insurance, Credit Cards use it effectively and instead of concentrated on changing it, they are trying to integrate it with new tools to increase its power and capabilities.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;Today’s concern about COBOL developers retiring and leaving companies helpless may be linked to a different agenda, trying to promoting another languages. I have worked in &lt;st1:country-region st=&quot;on&quot;&gt;Portugal&lt;/st1:country-region&gt; and &lt;st1:place st=&quot;on&quot;&gt;&lt;st1:country-region st=&quot;on&quot;&gt;Brazil&lt;/st1:country-region&gt;&lt;/st1:place&gt; and I know that there are many young programmers there and a few universities still teach COBOL. However, the majority of the students are not too interested because their professors allege the language is dying or dead.&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-CA&quot;&gt;&lt;a href=&quot;http://www.linuxinsider.com/story/55216.html&quot;&gt;Related Article&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/how-is-cobol-today.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-4545838484353049773</guid><pubDate>Fri, 14 Dec 2007 16:25:00 +0000</pubDate><atom:updated>2007-12-21T16:03:25.483-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Developer</category><category domain="http://www.blogger.com/atom/ns#">Programmer</category><title>When programmers and analysts can&#39;t compreehend each other</title><description>&lt;p class=&quot;MsoNormal&quot;&gt;I like to believe that programmers are becoming extinct. They should be giving place to analyst-programmers or developers. The difference? While programmers depend on someone to tell them which programs to change or create, developers (or analyst-programmers) should understand what have to be done and decide how to do it.&lt;br /&gt;&lt;br /&gt;Probably, the best developers are the ones capable of understanding the big picture when they are working instead of being aware of their specific task only. Systems today are vast and business oriented so, the more a developer understands the business, the better their solutions will be.&lt;br /&gt;&lt;br /&gt;Deeply, all concepts are changing programmers are becoming developers, and programs are becoming solutions, even when a project involves maintenances primarily. Usually there are lots of programs to change when maintenance is required.&lt;br /&gt;&lt;br /&gt;The inability that some programmers have to understand business concepts or points of view usually impair their ability to develop a good solution. As a result we may have a solution who will require lots of adjustments closer to implementation or the programmer will spend more time trying to grasp the solution&#39;s needs.&lt;br /&gt;&lt;br /&gt;One of the basic requisites of Decision Making and Critical Thinking is understanding the environment. It cannot be different when developers are working. They must understand what they are dealing with in order to reach better results.&lt;/p&gt;&lt;br /&gt;&lt;a href=&quot;http://www.theglobeandmail.com/servlet/story/RTGAM.20071213.WBrecommendedlinks20071213090005/WBStory/WBrecommendedlinks&quot;&gt;Related Article&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/when-programmers-and-analysts-cant.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-2710017944846074012</guid><pubDate>Thu, 13 Dec 2007 14:15:00 +0000</pubDate><atom:updated>2007-12-20T01:35:42.472-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Access Path</category><category domain="http://www.blogger.com/atom/ns#">Bind</category><category domain="http://www.blogger.com/atom/ns#">DB2</category><category domain="http://www.blogger.com/atom/ns#">Explain</category><category domain="http://www.blogger.com/atom/ns#">Optimizer</category><title>Power Programming Point: Cobol/DB2 - A Powerful Duo</title><description>When you integrate COBOL and DB2 in a mainframe environment you can certainly expect for a very efficient acess to your data whether your SQL access is direct or not. To improve your results you can count on DB2 tools. They allow you to analyze and improve your queries.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;What happens when you have DB2 in your COBOL program?&lt;/span&gt;&lt;br /&gt;When you compile a COBOL program with DB2, the SQL commands embedded in your code will suffer a binding process. When a bind occurs DB2 creates an access path for that SQL Command. DB2 optimizer  helps in creating this access path using statistics generated by the Runstas tool based on tables sizes, columns cardinalities, and indexes clustering.&lt;br /&gt;&lt;br /&gt;The access path is defined in a way that efficiency is improved; however, if the table or the SQL  commands are poorly defined, the result will be worse than expected. We should use DB2 explain tool to create a report showing how data will be accessed and, after analyzing it, improve the SQL, or the table when possible, to obtain a faster access to data.&lt;br /&gt;&lt;br /&gt;The main point here is that, sometimes, your data will not be accessed as you thought. Sometimes, if you are acessing part of a key restraining the fields not with an igual condition, optimizer may decide that the most efficient way to obtain your data is using a table scan i.e. scanning the entire table.&lt;br /&gt;&lt;br /&gt;To finalize, I suggest you analyze the Explain result after compiling/binding your program. This way you will know how the data will be accessed and will have more control over the results and your program&#39;s efficiency.  I&#39;ll talk about Explain later.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/power-programming-point-coboldb2.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-4533301658591768393</guid><pubDate>Tue, 11 Dec 2007 20:33:00 +0000</pubDate><atom:updated>2007-12-20T01:29:48.544-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">COBOL</category><category domain="http://www.blogger.com/atom/ns#">Mainframe</category><title>Power Programming Point: Is Mainframe Cobol still dying?</title><description>I have been working in the IT field, with COBOL, for more than ten years and since I started Cobol&#39;s death is being declared.&lt;br /&gt;&lt;br /&gt;It was my first year in University, I remember the professor saying, &quot;Cobol is a third-generation programming language which is dying. New, more advanced languages will eventually take its place.&quot; Two years later, everyone started worrying about the Y2K, and many people realized that there were still billions of lines of code in COBOL and billions were added every year.&lt;br /&gt;&lt;br /&gt;In 1996, the Gartner Group reported that 80% of the world&#39;s business ran on COBOL. A Computerworld survey, involving IT managers, done last year found out that 62% of them are using COBOL.&lt;br /&gt;&lt;br /&gt;Among the reasons for COBOL to be alive are the costs to substitute it and the risks involved as many back-end processes have years of accumulated business rules implemented by programmers or even analysts who are no longer working at the company.&lt;br /&gt;&lt;br /&gt;Some companies are gradually substituting COBOL for other languages while others are no longer developing new applications using it. The reasons to move away from COBOL are usually one of these three:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;reduce cost of ownership;&lt;/li&gt;&lt;li&gt;address the alleged COBOL skills deficit;&lt;/li&gt;&lt;li&gt;or the mistaken idea that it will make the business more agile.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;On the other hand, there are still many companies who recognize the robustness, reliability and simplicity of COBOL as well as its capacity to be integrated with more modern languages like Java. I have worked in systems running COBOL, CICS and DB2 in the back-end and Java in the middle tier making it possible to use any kind of front-end as long as it can communicate with Java.&lt;br /&gt;&lt;br /&gt;I do not believe COBOL will die in the near future. It is a reliable, simple and robust language that can be easily taught and used. The fact that it can be integrated with another languages give it more portability and open a wide range of possibilities like a fancy system, with a beautiful front-end and a fast, reliable tool working in the back-end to hand in the information.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com/&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/is-mainframe-cobol-still-dying.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-233582358971772460.post-3835882612377174147</guid><pubDate>Tue, 11 Dec 2007 16:56:00 +0000</pubDate><atom:updated>2007-12-12T14:41:18.814-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Power Programming Point</category><title>Welcome to the Power Programming Point</title><description>Hi, there&lt;br /&gt;I know many programmers are happy with the way they deal with their amount of work or their tasks, but there are ways to improve the results of their work.&lt;br /&gt;Here, at the Power Programming Point, I will share my experience. I&#39;ve been in business for a long time mostly working for large insurance companies with IT department comprising hundreds of employees.&lt;br /&gt;Since I started, I&#39;ve been focused on technics to improve the quality of my work and, by keeping my eyes open and my interest in the field sharp, I can assure that I have learned a lot. I am willing to share with you all I&#39;ve learned. Your skills will certainly be improved.&lt;br /&gt;Welcome aboard.&lt;br /&gt;Best regards,&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.powerprogrammingpoint.blogspot.com&quot;&gt;Power Programming Point&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;From the Power Programming Point
http:\\www.powerprogrammingpoint.blogspot.com&lt;/div&gt;</description><link>http://powerprogrammingpoint.blogspot.com/2007/12/welcome-to-power-programming-point_11.html</link><author>noreply@blogger.com (Power Programming Point)</author><thr:total>0</thr:total></item></channel></rss>