19
Fri, Apr
5 New Articles

Practical SQL: DB2 at Home, Part 3, Using XML Data

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

 

Now that we have XML data, it's time to learn how to use it.

 

In previous articles (parts 1 and 2), we began to explore DB2's pureXML capabilities. While DB2 provides exceptional XML data-handling, it's not enough to simply be able to store and retrieve XML data. In any real world business application, you'll also need to integrate that XML data with your existing relational data. This article shows how to do just that.

 

Converting from XML to Relational

Our premise is that no business stores all data as XML. This makes sense; even though XML is a very flexible way to store hierarchical data, that flexible storage requires a lot of processing power to extract the data. In our real-world scenario, master files will store the traditional data used by our business applications while the XML may be stored a little deeper. In our first foray into relational data, we'll learn how to cast XML data into relational data one field at a time. Upcoming articles will show how to use advanced techniques to build entire relation tables from your XML data. But let's start first with converting some data from XML so that we can use it.

 

We're going to keep using the same data from the previous articles. Here's a quick recap of the CUSTOMER table:

 

030415PlutaFigure1

Figure 1: The CUSTOMER table is just a key and some XML (and an unused history field).

 

Hopefully, that's familiar. In the next couple of steps, we're going to extract some data from that XML. First, we'll just grab the name. This is a recap, but let's show it quickly.

 

030415PlutaFigure2

Figure 2: Extracting an element from the XML using the XMLQUERY clause shows the data as an XML element.

 

The XMLQUERY function returns the data, but as you can see, it returns it with the data enclosed within the tag. As we'll see in a moment, that won't work when trying to integrate with our relational data. You can change the data from XML to relational by casting it, but you can't use the standard CAST function; instead, you have to use the special XMLCAST function, which is specifically designed to convert between relational and XML data. With XMLCAST, the data looks more familiar:

 

030415PlutaFigure3

Figure 3: XMLCAST converts the result of the XMLQUERY function to a traditional relational value.

 

Now it looks more like a traditional query, and at this point you can actually use your SQL knowledge to start executing true data operations on your XML data. How do you know when you need to convert? Well, the easy answer is that you always need to convert the data, but in case you're not quite sure, just look for an error like the following:

 

030415PlutaFigure4

Figure 4: When comparing XML and non-XML data, you'll see a compatibility error like this one.

 

The SQL engine can't reconcile the two data types, so it throws an error telling you that the types are incompatible. You might be tempted to think it's because I didn't enclose the name in the tage (<name> and </name>), but trust me, attempting that will return the same error. And really, do you want to have to compare things by formatting beginning and ending XML tags? I sure don't. But the good news is that you don't have to do that; the XMLCAST function will strip the tag information and return the data however you want to see it.

 

030415PlutaFigure5

Figure 5: The XMLCAST function not only removes the tag information but also makes the data compatible with traditional relational data.

 

Now that's more like it! We can not only see XML elements without the tag baggage, but also compare to that data. In this case, we're getting the ID field for only those records that have Kathy Smith as the name. Interestingly, there are two records for Kathy Smith, which means the result set returns two rows. We could then use that result set as a Common Table Expression (using WITH T1 AS…) and then use that to select records from other tables. That's one way to join to XML data, although we'll see a more direct method in a moment. First, let's finish up our XML to relational exercise. The last thing we can do is convert the XML data to something other than a character value. Remember that the only other field in the CUSTOMER file is the ID field. Well, that same ID actually is embedded as an attribute in the XML data. We can use our newfound XMLCAST expertise to extract that attribute. Let's see what that would look like:

 

030415PlutaFigure6

Figure 6: Here, we can see the relational ID field from the data record compared to the embedded attribute (Cid).

 

Here's a nice query. It seems very simple, but in reality it's quite sophisticated: the SQL engine is digging into the data, extracting the attribute from the XML, and then converting that to a BIGINT. We see that converted value side by side with the relational field, and we can use that for a quick visual check on the data. We could also do a programmatical check and extract exceptions for intervention. We're not limited in our data types; we could just as easily convert the XML to a decimal number, something we'd definitely want to do for things like currency amounts and bill-of-material quantities. One caveat: if you have any non-numeric data within your XML tags, the conversion will throw an error and the entire transaction will fail. There are definitely pros and cons to using XMLCAST to convert to numeric values; the most important prerequisite is that your XML data is very clean.

 

A Last Look at What We Can Do With XMLCAST

These articles are taking baby steps into pureXML. One reason for that is because the technology is really very large and you just have to bite off small pieces. The other is because, frankly, some of it isn't entirely intuitive; it's taken me quite a bit of trial and error to get things to work in the way I would have expected. A perfect example of that counter-intuitive side of pureXML is the syntax required to join data. Since you can quite easily create a selection expression using XMLCAST, you might expect a JOIN to be just as easy, using that same comparison operation within the ON clause. Sadly, that's not the case. Here's what happens:

 

030415PlutaFigure7

Figure 7: XMLCAST cannot be used within the ON clause of a JOIN.

 

This really threw me for a loop. It might in fact make one think that relational and XML data might not work together after all. But then I decided to try something a little old school: I went to the old fashioned WHERE syntax for a JOIN.

 

030415PlutaFigure8

Figure 8: By using the old-school JOIN syntax, I am able to use the next-generation XML functionality. Who knew?

 

And there you have it! We're where we expected to be, able to mix and match data. It's just a little odd that the only way to use the newfangled XMLCAST is through the rather retro WHERE syntax for the JOIN. But the point is that it works and we can now successfully join our two worlds of data.

 

We'll continue this exploration more in subsequent articles, but for now this should give you some more to play with. Enjoy!

 

Joe Pluta

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been extending the IBM midrange since the days of the IBM System/3. Joe uses WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. He has written several books, including Developing Web 2.0 Applications with EGL for IBM i, E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. Joe performs onsite mentoring and speaks at user groups around the country. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Joe Pluta available now on the MC Press Bookstore.

Developing Web 2.0 Applications with EGL for IBM i Developing Web 2.0 Applications with EGL for IBM i
Joe Pluta introduces you to EGL Rich UI and IBM’s Rational Developer for the IBM i platform.
List Price $39.95

Now On Sale

WDSC: Step by Step WDSC: Step by Step
Discover incredibly powerful WDSC with this easy-to-understand yet thorough introduction.
List Price $74.95

Now On Sale

Eclipse: Step by Step Eclipse: Step by Step
Quickly get up to speed and productivity using Eclipse.
List Price $59.00

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: