25
Thu, Apr
1 New Articles

Data-Centric Magic

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Everybody is talking about data-centric programming these days. But what is it, and what can it do for, and to, you?

  

Every once in a while, we see a flurry of articles about one particular topic. It blazes forth like a flaming Molotov cocktail, gets tossed up in the air for everyone to see, and then seems to explode in a cloud of smoke. It’s 15 minutes over, the topic quietly goes about the rest of its life, sometimes fading into insignificance and other times taking its place in the hallowed pantheon of IBM i concepts.

 

Such, right now seems to be the trajectory for data-centric programming. So, I guess I will add my two cents.  

 

Data-Centric What?

I have to admit, as with most things, I was confused when I first saw the term “data-centric programming.” I thought it must mean that, when you program, you have to consider the data and make that the center point of what you’re doing.

 

Heck fire, boys, I thought, we already do that, don’t we? I mean how can you program without thinking first and foremost about the data that you have to deal with? But that’s not exactly what the concept is all about.

 

Traditionally, we in the IBM i world have had one particular orientation: a procedural language orientation. That is, we tend to use a procedural languagegenerally RPG, but it could be COBOL or Java or whateverto operate on the data that we are dealing with. And this orientation seems so natural and moral that we never even stop to consider another option.  

 

But there is another option, another paradigm that has been growing in importance over the last few years and is now finally at a critical kindling point, so a lot of people are beginning to take notice.

 

Data Languages

And that other option is a data language, a language that is born out of the database that created it.

 

Unlike a procedural or OO language that was developed to be able to do logic statements and then had IO routines appended to it, the database language started with the IO routines. That is what it was originally designed to do: to manipulate the database, to create tables or files, define the columns that are associated with it, screw around with them and change the values they containall that kind of stuff. And then, once they were sure that the language could do all that, they (the Creators) added in the ability to do logic statements. Lowering the operating table down from where it stood perched high above the castle, and crying out in defiance of both man and God, “It’s alive, it’s alive,” they unleashed this new type of language on the world.

 

Hmmm, OK, maybe that’s overdoing it a bit, but you get the idea.

 

DB2 Data Language

On the i, DB2 is the primary database outside of the DDS-based language that is part of RPG. I admit I have not always been a DB2 aficionado. It seemed sort of like buying a Ferrari to drive to the end of your driveway, but you can’t argue that it is (being SQL-based) an industry standard. And if you have real hard-core data needs, it is the way to go. And, even if you don’t and you are re-doing your system, it is kind of hard not to argue that it is a better alternative than DDS. So, in the future, we will probably be seeing a lot more DB2 and somewhat less DDS.

 

Now if you are using RPGLE as your primary language, then this is not a huge change. Instead of using the standard RPG IO operators, you can simply substitute the appropriate SQL alternatives.

 

I know what some of you might be saying: “Do I really have to learn SQL?” And the answer is “Yes.” Five or ten years ago, that might have been more of a question, but the simple truth today is that everyone who is associated with the i needs to not just be passingly familiar with SQL but pretty solid in it.

 

Now that doesn’t mean I want you to go out and start writing four-page SELECT statements. That’s the big thing I have against DB2 and SQL and all that jazz. It almost gives people a license to do things that just ain’t right. Like writing SELECT routines that are so complex that there is no way you can possibly unravel them. And for a long time, I refused to embrace DB2 because of all the bad code examples I saw.

 

But then it occurred to me (actually Dan Lovell explained it to me) that languages aren’t bad; it’s the people who use them who are the evil ones. And he is right. The same people who write huge, convoluted DB2 routines do the same thing in RPG.

 

Is There a Point to This?

In the i world, SQL is our data language, implemented via DB2. There are other data languages out there, of course. For example, if you are into Hadoop, there is a data language that you can do stuff with for that. But we on the i are pretty much DB2/SQL.

 

Initially, the DB2 data language was called DML (Data Manipulation Language), but now people tend to refer to it as DB2 PL (Programming Language).  

 

The idea of this thrust is to “make the database do more.” I frankly never know what to do with a statement like that. What does it mean? To me, it means having the database do more in terms of monitoring itself. Normally, monitoring the database is a function of the procedural language. But what if you could get the database to do that? Automatically, without your having to do anything.

 

Part of the problem, for me, is that I don’t have many clients who don’t already have a mature database. They have an ERP system they put it in 20 years ago, and they are just trying to keep their heads above water. So let’s put all the “pretend like you are defining your system from scratch” off the table. What good is data-centric programming to someone who is in a mature environment? What does it give you that the regular procedural programming doesn’t?

 

A Different Point of View

And this is where I struggle, because when I look at this question, I can’t see a solid reason why I should abandon my four-line Chain for a 10-line SELECT that seems so much less readable. But then I move over about four feet, and I start looking at it from a slightly different angle.

 

First, I never let the number of lines of code I write dictate what I write. Readability and clarity are paramount to me, and if it takes extra lines of code to do that, no problem.

 

Second, I know very well why PL seems less readable to me. It’s because I am not used to reading it. It is not second nature to me the way RPG is, but that is something that can be cured with time and experience and should not be a reason to avoid it.

 

Third, I think there is a fundamental difference in the way you read PL versus RPG. With RPG, you are reading a sentence at a time and then mentally putting that together. With PL, I am tempted to think that to be effective you need to read it in blocks and then mentally break it down from there. This is very similar to the way I think you have to read web languages, particular OO ones.

 

And that brings me to my fourth point, one that is both style and substance. What IBM has done with RPG /Free is wonderful. I love it. But in the end, I don’t think there is any way that you can take a procedural language and make it “modern” in a way that most young programmers would agree with. It is still a procedural language and therefore not cool.

 

And in one sense, that doesn’t matter. We don’t need to be cool to do our jobs. But in another, it makes all the difference in the world. Because we are a group of people who are trying to show a disbelieving audience that the i is a modern tool for the modern world. When we are speaking PL, we are speaking a language that many people from many other languages can understand rather than a language that is akin to Latin in their minds. We are speaking a language that can be bundled as a web service. We are speaking a language that can be used just as easily within the i as the web.

 

Data-centric programming using the PL in DB2 is a different way to do our work, but it is just possible that, in the long run, it may be the one way we have to signal to people outside the family that the i is indeed a modern tool for a modern world.

 

Give it a look.  

 

For more info on PL, download the IBM Redbook SQL Procedures, Triggers, and Functions on IBM DB2 for i.

 

David Shirey

David Shirey is president of Shirey Consulting Services, providing technical and business consulting services for the IBM i world. Among the services provided are IBM i technical support, including application design and programming services, ERP installation and support, and EDI setup and maintenance. With experience in a wide range of industries (food and beverage to electronics to hard manufacturing to drugs--the legal kind--to medical devices to fulfillment houses) and a wide range of business sizes served (from very large, like Fresh Express, to much smaller, like Labconco), SCS has the knowledge and experience to assist with your technical or business issues. You may contact Dave by email at This email address is being protected from spambots. You need JavaScript enabled to view it. or by phone at (616) 304-2466.


MC Press books written by David Shirey available now on the MC Press Bookstore.

21st Century RPG: /Free, ILE, and MVC 21st Century RPG: /Free, ILE, and MVC
Boost your productivity, modernize your applications, and upgrade your skills with these powerful coding methods.
List Price $69.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: