• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact

Timothy Prickett Morgan

Timothy Prickett Morgan is President of Guild Companies Inc and Editor in Chief of The Four Hundred. He has been keeping a keen eye on the midrange system and server markets for three decades, and was one of the founding editors of The Four Hundred, the industry's first subscription-based monthly newsletter devoted exclusively to the IBM AS/400 minicomputer, established in 1989. He is also currently co-editor and founder of The Next Platform, a publication dedicated to systems and facilities used by supercomputing centers, hyperscalers, cloud builders, and large enterprises. Previously, Prickett Morgan was editor in chief of EnterpriseTech, and he was also the midrange industry analyst for Midrange Computing (now defunct), and its editor for Monday Morning iSeries Update, a weekly IBM midrange newsletter, and for Wednesday Windows Update, a weekly Windows enterprise server newsletter. Prickett Morgan has also performed in-depth market and technical studies on behalf of computer hardware and software vendors that helped them bring their products to the AS/400 market or move them beyond the IBM midrange into the computer market at large. Prickett Morgan was also the editor of Unigram.X, published by British publisher Datamonitor, which licenses IT Jungle's editorial for that newsletter as well as for its ComputerWire daily news feed and for its Computer Business Review monthly magazine. He is currently Principal Analyst, Server Platforms & Architectures, for Datamonitor's research unit, and he regularly does consulting work on behalf of Datamonitor's AskComputerWire consulting services unit. Prickett Morgan began working for ComputerWire as a stringer for Computergram International in 1989. Prickett Morgan has been a contributing editor to many industry magazines over the years, including BusinessWeek Newsletter for Information Executives, Infoperspectives, Business Strategy International, Computer Systems News, IBM System User, Midrange Computing, and Midrange Technology Showcase, among others. Prickett Morgan studied aerospace engineering, American literature, and technical writing at the Pennsylvania State University and has a BA in English. He is not always as serious as his picture might lead you to believe.

  • IBM Cuts Core And Memory Pricing On Entry Power Iron

    November 14, 2016 Timothy Prickett Morgan

    We are always trying to get IBM to do more to promote the IBM i platform and the Power Systems hardware that comprises the physical part of that platform. In days gone by, Big Blue used to make very public and loud pronouncements regarding its ability to bring customers more value for the dollar, often above and beyond the Moore’s Law capacity increases that are just part of the chip business and usually at the tail end of the product cycle as we are now with the Power8 machines that have been shipping since April 2014.

    IBM is not as

    …

    Read more
  • The Hybrid Cloud Questions IBM i Shops Should Be Asking

    November 7, 2016 Lief Morin

    When companies speak with service providers about hybrid cloud technology, many of them want to know right off the bat how much money they can save. That’s the wrong question to ask. The first questions should be: What business challenges do we face? Can the cloud help to address these challenges? And to what extent should we be using the cloud?

    A transition to the cloud or a hybrid environment can provide companies with many benefits aside from cost savings, such as a broader set of services, a highly resilient architecture and the addition of a professional organization that manages

    …

    Read more
  • Sundry Fall Power Systems Peripheral Enhancements

    November 7, 2016 Timothy Prickett Morgan

    We are still chewing through the October 11 Power Systems announcements, and this week we drill down into a variety of peripheral enhancements related to the IBM i platform. We may not have gotten new Power8+ processors for entry machines, and would have been expected sometime this year, but IBM is doing a bunch of things to make the existing Power8 machines more appealing and less costly to tide itself and its customers over until the Power9 processors ship sometime in the second half of next year.

    The midrange and high-end of the Power8 product line have already seen their

    …

    Read more
  • Beyond Hello With Node.js

    November 1, 2016 Aaron Bartell

    In Why Node.js? we discussed Node.js and how to get up to speed with “hello world” from a program, the Node.js REPL (Read, Eval, Print, and Loop), and a web application. Now we will build on that knowledge by actually creating an application to show your team.

    A gent by the name of Rainer Ross recently posted a link to the IBM i Professionals LinkedIn group declaring the benefits of the new Webix framework. (Webix.com is freemium software. There are free versions and paid versions. Please adhere to the licensing.) Because of my comments on his post I received an

    …

    Read more
  • SQL PL–The FOR Loop

    November 1, 2016 Ted Holt

    SQL PL has four looping structures. The most useful one, to my way of thinking, is the FOR structure. It is different from–and more powerful than–the RPG FOR op code, and it’s easy to learn and use. Here’s how it works.

    FOR iterates over a read-only result set and terminates when there are no more rows to process. Think of a FOR loop as a read-only cursor without the messiness of OPEN, FETCH, and CLOSE. Let me illustrate with a stored procedure.

    create or replace Procedure Billing (in p_BillingCycle dec(3))
    for One_Customer as
       select c.AccountNumber
         from customers as c 
        where 
    …

    Read more
  • IBM i Access Client Solutions For Database

    November 1, 2016 Paul Tuohy

    If you are an SQL user, you need to get your hands on IBM i Access Client Solutions. After some false starts, it looks as if IBM is heading in the right direction again when it comes to providing tools to help us develop and use SQL. I want to take you through some of the highlights of the database functions of IBM i Access Client Solutions.

    Some Background

    Over the last few years, trying to find the right tools for the SQL developer has been quite a challenge. There were Run SQL Scripts in System i Navigator, the

    …

    Read more
  • IBM’s Power Systems Stalls A Bit As Power8 Wanes

    October 31, 2016 Timothy Prickett Morgan

    With the Power9 chips slated for some time in the second half of next year, and the Power8 systems not being upgraded with a formal Power8+ variant, it is not surprise to us that sales of Power Systems iron based on the Power8 chip that launched in April 2014 are waning. It is the nature of every product cycle to have its ramp, its peak, and its slide. The slide is just a way to extract profits, with the ease of sales and improving yields on chips compensating for the fact that Big Blue has to discount more to move

    …

    Read more
  • IBM Opens Up Coherent Protocols For Power Chips

    October 24, 2016 Timothy Prickett Morgan

    In case you did not get the memo, IBM is dead serious about promoting the Power architecture as a credible alternative to the Xeon architecture from Intel and the various upstarts that want to take a piece of the processing action in the datacenter. The OpenPower Foundation, formed a little more than three years ago, is the center of gravity for the Power push, but Big Blue has aspirations for some of its technology that go well beyond its own chips.

    That is why IBM is forming the OpenCAPI Consortium, a group of like-minded IT suppliers and customers who

    …

    Read more
  • SQL PL Conditional Structures

    October 18, 2016 Ted Holt

     Recently I gave a brief introduction to the SQL Procedures Language, or SQL PL, a procedural language that works with the DB2 family of database management systems. Today I present the conditional structures, IF and CASE. If you so choose, you will master them in minutes.

    But first, I need to clear up one matter. In my previous article, I referred to SQL PL as a proprietary language. Mike Cain, of the DB2 for i Center of Excellence, emailed to correct my error. Mike pointed out that SQL PL is based on SQL/Persistent Stored Modules (SQL/PSM), which is an

    …

    Read more
  • A Style Guide for Modern RPG and ILE, Part 2

    October 18, 2016 Paul Tuohy

    One of the basic principles of programming is that coding conventions (guidelines and standards) improve the readability of source code and make software maintenance easier. Coding conventions provide the foundation for developing applications that are easy to maintain and modify. This article completes the style guide to coding RPG programs using free-form RPG in an ILE environment started in A Style Guide For Modern RPG And ILE, Part 1.

    Older Functions

    When using free-form RPG (and nothing but free-form RPG), a lot of the old RPG “functionality” is no longer available (e.g., operation codes such as MOVE, MOVEL, GOTO,

    …

    Read more

Previous Articles Next Articles

Content archive

  • The Four Hundred
  • Four Hundred Stuff
  • Four Hundred Guru

Recent Posts

  • You Can Now Get IBM Tech Support For VS Code For i
  • Price Cut On Power S1012 Mini Since Power S1112 Ain’t Coming Until 2026
  • IBM i: Pro and Con
  • As I See It: Disruption
  • IBM i PTF Guide, Volume 27, Number 30
  • The Turning Point For Power Systems Is Here, And Now
  • How IBM i Users Can Compete In The Digital Era With Composable Commerce
  • IBM Streamlines Data Migration With New Partition Mirror Tech
  • Profound Logic Adds MCP To IBM i AI Tool
  • IBM i PTF Guide, Volume 27, Number 29

Subscribe

To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

Pages

  • About Us
  • Contact
  • Contributors
  • Four Hundred Monitor
  • IBM i PTF Guide
  • Media Kit
  • Subscribe

Search

Copyright © 2025 IT Jungle