Db2 12 for z/OS introduces a new privilege that, when granted, enables a user to be able to unload data using the DB2 IBM UNLOAD utility. In past releases, the SELECT privilege (or other higher level admin privileges) was required to unload data using the UNLOAD utility. But this was less than desirable.
Why? Well, one reason is that it created a potential security gap. Consider the situation where a table has column masks or row permissions. In such as case, a user with SELECT privilege against the table still might not be able to access all of the rows and columns because of the masks/permissions that are defined. However, the same user with the same privilege set could execute the UNLOAD utility and be able to read all of the data in the table. Such as situation is not ideal and would not pass an audit.
To remove this gap IBM has introduced a new privilege, the UNLOAD privilege. After you move to Db2 12 for z/OS, SELECT authority is no longer enough to be able to unload data. In order to unload data the user must be granted the UNLOAD privilege on that table. The UNLOAD privilege can only be granted on a table; it cannot be granted on an auxiliary table or a view. The UNLOAD privilege is required after you have moved to function level V12R1M500 or higher.
Of course, there is a workaround if you still want to allow users with the SELECT privilege to be able to unload using the UNLOAD utility. This requires setting a DSNZPARM named AUTH_COMPATIBILITY to "SELECT_FOR_UNLOAD". The default for this DSNZPARM is NULL, which means that the UNLOAD privilege is required.
Regardless of the privilege, keep in mind that tables with multilevel security impose restrictions on the output of your UNLOAD jobs. A row will be unloaded only if the security label
of the user dominates the security label of the row. So it is possible that an unload may not actually unload every row in the table. If security label of the
user does not dominate the security label of the row, the row is not
unloaded and DB2 does not issue an error message.
Monday, September 18, 2017
Friday, September 08, 2017
See You in Lisbon for the EMEA IDUG DB2 Tech Conference!
This year the IDUG EMEA DB2 Tech Conference is
being held in Lisbon, Portugal from October 1st through October 5th. Lisbon is a
beautiful city with a lot to see and do, so you can plan for a great week of
DB2 and analytics education... and then follow it up with a visit to truly
remarkable city.
Whether or not you care about vacationing is irrelevant, though, because a week at an IDUG event is always an educational and enjoyable time. If you’ve ever attended an IDUG conference before then you know all about the fantastic educational and entertainment opportunities that IDUG offers. Of course there will be a ton of informative technical sessions on all of the latest and greatest DB2 technologies and features.
Whether or not you care about vacationing is irrelevant, though, because a week at an IDUG event is always an educational and enjoyable time. If you’ve ever attended an IDUG conference before then you know all about the fantastic educational and entertainment opportunities that IDUG offers. Of course there will be a ton of informative technical sessions on all of the latest and greatest DB2 technologies and features.
There are a couple of great keynote sessions scheduled this
year. Daniel Hernandez, offering leader with IBM Analytics, will discuss Data
Without Limits. He’ll talk about how IBM is changing Db2 like never before
including the latest news on Db2, Db2 for z/OS and the Db2 Analytics
Accelerator, as well as providing demonstrations of new solutions. And
the closing keynote is from Jonathan Adam, vice president and general manager
of ZSolutions at BMC Software. Jonathan will present Continuing
Digital Business Challenges — Finding Value in your data..., an overview of how to achieve business
advantage in the digital age.
And then there are those technical presentations delivered by
IBMers, consultants, and your colleagues. These are the heart and soul of an
IDUG conference. Where else can you find four days and six tracks of data and
DB2-related education? Check out the
agenda to see what is on tap!
I will be busy this year at IDUG spending
time with the DB2 gold consultants, many of whom will be at the conference to present,
mingle, and learn. I will also be
delivering a vendor-sponsored presentation for LogOn Software with
intriguing title of How to Accelerate DB2
SQL Workloads... Without DB2. Whatever could that mean? You'll have to join
me on Monday at 2:00 PM in Room
VITIS!
And don't forget to download the mobile app for the conference
to help you navigate all the opportunities available to you!
The IDUG DB2 Tech Conference is the place to be to learn all
about DB2 from IBMers, gold consultants, IBM champions, end users, and more.
With all of this great stuff going on why wouldn't you want to be there!?!?
Wednesday, September 06, 2017
DB2 for z/OS Coupling Facility Sizing
Just a very brief blog post today to inform you about something that I ran across doing some web research today... and that is a free, web-based Coupling Facility sizing tool from IBM named CFSIZER.
The CFSIZER tool will connect to your live server to get information. You will need to input some values and some estimation of the type of workload for your system and CFSIZER will output its recommendations.
If you are struggling with your Data Sharing environment this might be a good place to start if you don't have any tools to help you. Here is the link to CFSIZER.
Thanks IBM!
The CFSIZER tool will connect to your live server to get information. You will need to input some values and some estimation of the type of workload for your system and CFSIZER will output its recommendations.
If you are struggling with your Data Sharing environment this might be a good place to start if you don't have any tools to help you. Here is the link to CFSIZER.
Thanks IBM!
Friday, September 01, 2017
The Db2 12 for z/OS Blog Series - Part 16: Db2 Catalog Availability Improvements
IBM has improved the availability of accessing Db2 Catalog objects when maintenance is being run in Db2 12 for z/OS. This impacts access during CATMAINT and online REORG.
This change is largely being driven by dynamic SQL, which is more prevalent but can cause problems. When dynamic SQL statement is executed, Db2 must dynamically prepares the SQL to determine access paths in order to run it. During this dynamic SQL preparation process, Db2 acquires read claims on a handful of Db2 Catalog table spaces and their related indexes. Additionally, a DBD lock is acquired on the Db2 Catalog database. The DBD lock is needed to serialize catalog operations with CATMAINT and other DDL that may execute against the catalog, because CATMAINT might be making structural changes to the catalog.
Prior to Version 12, the DBD lock and the read claims were released at COMMIT points. All well and good, but for transactions issuing dynamic SQL but not committing frequently, CATMAINT and online REORG on the Db2 Catalog were blocked during that period period of time.
As of Db2 12, DBD locks on the Db2 Catalog and read claims against catalog objects are released as soon as PREPARE statement execution is complete. This will improve availability for CATMAINT and online REORG of Db2 Catalog objects.
This change is largely being driven by dynamic SQL, which is more prevalent but can cause problems. When dynamic SQL statement is executed, Db2 must dynamically prepares the SQL to determine access paths in order to run it. During this dynamic SQL preparation process, Db2 acquires read claims on a handful of Db2 Catalog table spaces and their related indexes. Additionally, a DBD lock is acquired on the Db2 Catalog database. The DBD lock is needed to serialize catalog operations with CATMAINT and other DDL that may execute against the catalog, because CATMAINT might be making structural changes to the catalog.
Prior to Version 12, the DBD lock and the read claims were released at COMMIT points. All well and good, but for transactions issuing dynamic SQL but not committing frequently, CATMAINT and online REORG on the Db2 Catalog were blocked during that period period of time.
As of Db2 12, DBD locks on the Db2 Catalog and read claims against catalog objects are released as soon as PREPARE statement execution is complete. This will improve availability for CATMAINT and online REORG of Db2 Catalog objects.
Friday, August 25, 2017
The Db2 12 for z/OS Blog Series - Part 15: DSN1COPY and Data Validation Improvements
If you’ve worked with Db2 for z/OS for awhile (note to IBM: I still have a problem with that lower case "b" but I'm trying),
particularly as a DBA, you’ve almost certainly had the opportunity to use the
DSN1COPY offline utility, sometimes called the Offline
Copy utility.
DSN1COPY can be used in many helpful ways. For
example, it can be used to copy data sets or check the validity of table space
and index pages. Another use is to translate Db2 object identifiers for the
migration of objects between Db2 subsystems or to recover data from
accidentally dropped objects. DSN1COPY also can print hexadecimal dumps of Db2
table space and index data sets.
Its primary function, however, is to copy data
sets. DSN1COPY can be used to copy VSAM data sets to sequential data sets, and
vice versa. It also can copy VSAM data sets to other VSAM data sets and can
copy sequential data sets to other sequential data sets. As such, DSN1COPY can
be used to
- Create a sequential data set copy of a Db2 table space or index data set.
- Create a sequential data set copy of another sequential data set copy produced by DSN1COPY.
- Create a sequential data set copy of an image copy data set produced using the Db2 COPY utility, except for segmented table spaces. (The DB2 COPY utility skips empty pages, thereby rendering the image copy data set incompatible with DSN1COPY.)
- Restore a Db2 table space or index using a sequential data set produced by DSN1COPY.
- Restore a Db2 table space using a full image copy data set produced using the Db2 COPY utility.
- Move Db2 data sets from one disk to another.
- Move a Db2 table space or index space from a smaller data set to a larger data set to eliminate extents. Or move a Db2 table space or index space from a larger data set to a smaller data set to eliminate wasted space.
Given such a wide array of useful
purposes you can see how DSN1COPY is an important arrow in a DBA’s quiver… But
remember, it is an offline utility, so Db2 is not aware of – or in control of
the data that is moving. So if you use it to change data in a production page
set data integrity issues can arise. For example, you may get mismatches
between the data page format and the description of the format in the Db2 Catalog.
Other types of errors that can ensue when
using DSN1COPY include:
- incorrect DBID/PSID/OBID values,
- improper table space layout (for example, using DSN1COPY to copy data from a segmented table space to a partition-by-growth universal table
- version number and table definition errors
In scenarios where DSN1COPY was not
used properly you can encounter invalid data, abends, and storage overlays. Not
good!
Thankfully, we get some help in Db2 12 for z/OS
though. Improvements to the REPAIR utility make it easier to detect and correct
data mismatches. You can use the REPAIR CATALOG utility to fix situations where
the column data type or length in the table space differs from the catalog definition
for the column. If Db2 can convert from the data type and length in the table
space to the data type and length in the column then the REPAIR CATALOG utility
enables conversion. The data type or length of the data in the table space will
be changed to match the definition in the Db2 Catalog the next time that the
data is accessed.
Additionally, we can use the REPAIR
CATALOG TEST utility to detect multiple types of data mismatches. All of the
following can be detected:
- If a range-partitioned table space indicates absolute page numbering, but the catalog indicates relative page numbering; and vice versa.
- The number of columns in the table space is greater than the number of columns in the catalog definition of the table.
- The column data type or length in the table space differs from the catalog definition for the column.
So Db2 12 makes life a bit easier for
those of us who use DSN1COPY and sometimes do not specify the parameters or the
data sets exactly perfectly.
Tuesday, August 01, 2017
The DB2 12 for z/OS Blog Series - Part 14: Improved MERGE SQL Statement
A very common requirement
for application developers is to be able to read through new data – from a
table, a file or as entered by an end user – and either INSERT the data if it
does not already exist or UPDATE data that does exist with new values.
The ANSI SQL standard
defines the MERGE statement for this purpose. The purpose of the MERGE
statement is to take two “tables” and merge the data into one table. DB2 for
z/OS has supported the MERGE statement since Version 9, but it is more
functional now as of Version 12.
Prior to DB2 12, the MERGE
statement could not accept a table reference as a way of supplying source data.
Input to the MERGE can only be a host variable array or a list of values. This
limitation caused MERGE to be somewhat lightly implemented.
Well, Version 12 does away
with this limitation – and adds even more features. So you can now write a
MERGE statement where data from one table is merged with data from another
table. Remember, merge takes the data and compares it and when the comparison
is matched does one thing… and when the comparison is not matched it does
another. So you can UPDATE when matched and INSERT when not matched.
Consider the following SQL:
MERGE INTO EMP Tgt
USING (SELECT EMPNO, FNAME, LNAME, ADDRESS,
SALARY FROM NEW_EMP) Src
ON (Tgt.EMPNO = Src.EMPNO)
WHEN MATCHED THEN
UPDATE
SET (Tgt.FNAME, Tgt.LNAME, Tgt.ADDRESS, Tgt.SALARY) =
(Src.FNAME,
Src.LNAME, Src.ADDRESS, Src.SALARY)
WHEN NOT MATCHED THEN
INSERT
(EMPNO, FNAME, LNAME, ADDRESS, SALARY)
VALUES
(Src.EMPNO, Src.FNAME, Src.LNAME, Src.ADDRESS, Src.SALARY)
ELSE IGNORE;
This
MERGE statement takes a table containing new/revised employee data and inserts
the data when a match is not found and updates the data if it is found. Note
that this is a simple MERGE that assumes that all the columns (in this case)
are provided if the data is to be updated.
More
complex MERGE statements are possible as of DB2 12 because you can now provide
additional matching condition options and additional predicates on the matching
conditions (instead of just matched/not matched). It is also possible to issue
a SIGNAL statement to return an error when a matching condition evaluates to True.
When you
use the new functionality of the MERGE statement in DB2 12+, the operations is atomic;
this means that the source rows are processed as a set of rows by each WHEN
clause. If an error occurs for any source row, processing stops and no target rows
are modified.
Monday, July 17, 2017
The IBM z14: There's a New Mainframe Coming!
Today, July 17, 2017, IBM announced the next iteration of its stalwart mainframe
hardware, the IBM z14. The news comes a little more than two years since the previous version, the IBM z13. The hardware will be generally available later this year.
The big news is that IBM delivering pervasive encryption as part of the IBM z14. With pervasive encryption you can encrypt and protect all of your data all the time, at any scale, without having to change any application code or do any development work. That means you can protect all of your data without requiring an interruption to your business.
The IBM z14 features the industry's fastest microprocessor, running at 5.2GHz, and a new scalable system structure that delivers up to a 35 percent capacity increase compared to the previous generation z13. The system can support over 12 billion encrypted transactions per day on a single system.
Other new capabilities of the IBM z14 include up to 32 TB of memory (3x the memory of the z13), three times faster I/O, and a 10x latency reduction with SAN response time using zHyperLink.
IBM also has introduced three new pricing models to help reduce the cost of mainframe computing, specifically for development and testing, new application workloads, and payment processing.
All in all, with the announcement of the IBM z14, IBM is doing what it takes to make the best computing platform even better. I look forward to using the platform and seeing what it can do for high availability, high performance, secure computing!
Wednesday, July 12, 2017
The DB2 12 for z/OS Blog Series - Part 13: DRDA Fast Load
Have you ever had a situation where you needed to load data
into a DB2 table, but the file with the data was not on the mainframe? So you
had to PTF that data to the mainframe and then load it.
Well, with DB2 12 for z/OS you get a new
capability to load the data to the mainframe without moving the file. The DRDA fast
load feature provides you with an efficient way to load data to DB2 for z/OS tables
from files that are stored on distributed clients.
The DNSUTILU stored procedure can be
invoked by a DB2 application
program to run DB2 online utilities. This
means that you can run an online LOAD utility using DSNUTILU. Before loading remote
data, you must bind the DSNUT121 package at each location where you will
be loading data. A local package for DSNUT121 is bound by installation job DSNTIJSG
when you install or migrate to a new version of DB2 for z/OS.
The DB2 Call Level Interface APIs and
Command Line Processor have been enhanced to support remote loading of data to
DB2 for z/OS. They have been modified to stream data in continuous blocks for
loading. This feature is supported in all DB2 client packages. The extraction task
for data blocks that passes them to the LOAD utility is 100 percent offloadable
to the zIIP, so the process can result in reduced elapsed time.
This capability is available before activating
new function.
Thursday, June 29, 2017
The DB2 12 for z/OS Blog Series - Part 12: New Built-in Functions
As with most new releases of DB2 for z/OS, at least lately, there are several new built-in functions (or BIFs) that have been added. DB2's BIFs are used to translate data from one form or state to another. They can be used to overcome data format, integrity and transformation issues when you are reading data from DB2 tables.
So what new things can we do with functions in DB2 12 for z/OS?
The ARRAY_AGG function can be used to build an array from table data. It returns an array in which each value of the input set is assigned to an element of the array. So basically speaking, you can use ARRAY_AGG to read values from rows of a table and convert those values into an array. For example, if I wanted to create an array of name from the EMP table for all females employees I could write it like this:
SET ARRAYNAME = (SELECT LASTNAME FROM DSN8C10.EMP WHERE SEX = 'F');
The new part is the ability to use an associative array aggregation. That means that the ARRAY_AGG function is invoked where there is a target user-defined array data type in the same statement, or the result of the ARRAY_AGG function is explicitly cast to a user-defined array data type.
More details can be found here.
Another new capability comes with the LISTAGG function, which is only available as of function level 501. The LISTAGG function aggregates a set of string values for a group into
one string by appending the string-expression values based on the order that is specified in the WITHIN GROUP clause.
So if I needed to create a list of comma-separated names, in alphabetical order grouped by department I could write:
SELECT WORKDEPT,
LISTAGG(LASTNAME, ’, ’) WITHIN GROUP(ORDER BY LASTNAME)
AS EMPLOYEES
FROM DSN8C10.EMP
GROUP BY WORKDEPT;
You can find additional details here.
DB2 12 for z/OS also adds functions for calculating the percentile of a set of values. There are two options:
On the other hand, the PERCENTILE_DISC function returns a percentile of a set of values treated as discrete values. The calculated percentile is always a value that appeared in the input set.
Consider the following two statements:
SELECT PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY COMM),
FROM DSN8C10.EMP
WHERE WORKDEPT = 'E21';
The result here, using the sample data, would be 1968.50. There are an even number of rows, so the percentile using the PERCENTILE_CONT function would be determined by interpolation. The average of the value of the two middle rows (1907.00 and 2030.00) is used.
SELECT PERCENTILE_DISC(0.5) WITHIN GROUP (ORDER BY COMM),
FROM EMPLOYEE
WHERE WORKDEPT = 'E21';
The same SQL statement but substituting PERCENTILE_DISC for PERCENTILE_CONT would return 1907.00. Again, the example would return 6 rows (an even number) but instead of an average a discrete value is returned; the value of the first of the two middle rows, which is 1907.00.
Another set of new functions give the ability to generate unique values that can be used for keys:
You can use the new WRAP function to obfuscate your database code objects. The function works only on procedural objects (stored procedures, triggers and user-defined functions).
The general idea behind wrapping procedural database objects is to encode a readable data definition statement such that its contents are not easily identified. The procedural logic and embedded SQL statements in an obfuscated data definition statement are scrambled in such a way that any intellectual property in the logic cannot be easily extracted.
So what new things can we do with functions in DB2 12 for z/OS?
The ARRAY_AGG function can be used to build an array from table data. It returns an array in which each value of the input set is assigned to an element of the array. So basically speaking, you can use ARRAY_AGG to read values from rows of a table and convert those values into an array. For example, if I wanted to create an array of name from the EMP table for all females employees I could write it like this:
SET ARRAYNAME = (SELECT LASTNAME FROM DSN8C10.EMP WHERE SEX = 'F');
The new part is the ability to use an associative array aggregation. That means that the ARRAY_AGG function is invoked where there is a target user-defined array data type in the same statement, or the result of the ARRAY_AGG function is explicitly cast to a user-defined array data type.
More details can be found here.
Another new capability comes with the LISTAGG function, which is only available as of function level 501. The LISTAGG function aggregates a set of string values for a group into
one string by appending the string-expression values based on the order that is specified in the WITHIN GROUP clause.
So if I needed to create a list of comma-separated names, in alphabetical order grouped by department I could write:
SELECT WORKDEPT,
LISTAGG(LASTNAME, ’, ’) WITHIN GROUP(ORDER BY LASTNAME)
AS EMPLOYEES
FROM DSN8C10.EMP
GROUP BY WORKDEPT;
You can find additional details here.
DB2 12 for z/OS also adds functions for calculating the percentile of a set of values. There are two options:
- PERCENTILE_CONT
- PERCENTILE_DISC
On the other hand, the PERCENTILE_DISC function returns a percentile of a set of values treated as discrete values. The calculated percentile is always a value that appeared in the input set.
Consider the following two statements:
SELECT PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY COMM),
FROM DSN8C10.EMP
WHERE WORKDEPT = 'E21';
The result here, using the sample data, would be 1968.50. There are an even number of rows, so the percentile using the PERCENTILE_CONT function would be determined by interpolation. The average of the value of the two middle rows (1907.00 and 2030.00) is used.
SELECT PERCENTILE_DISC(0.5) WITHIN GROUP (ORDER BY COMM),
FROM EMPLOYEE
WHERE WORKDEPT = 'E21';
The same SQL statement but substituting PERCENTILE_DISC for PERCENTILE_CONT would return 1907.00. Again, the example would return 6 rows (an even number) but instead of an average a discrete value is returned; the value of the first of the two middle rows, which is 1907.00.
Another set of new functions give the ability to generate unique values that can be used for keys:
- GENERATE_UNIQUE
- GENERATE_UNIQUE_BINARY
For GENERATE_UNIQUE a bit data character string 13 bytes long is returned. That means CHAR(13) FOR BIT DATA.
For GENERATE_UNIQUE_BINARY a BINARY(16) value is returned. Both functions require parentheses without any arguments.
The general idea behind wrapping procedural database objects is to encode a readable data definition statement such that its contents are not easily identified. The procedural logic and embedded SQL statements in an obfuscated data definition statement are scrambled in such a way that any intellectual property in the logic cannot be easily extracted.
A related system stored procedure, CREATE_WRAPPED, is also provided that can be used to obfuscate a readable data definition statement and deploy it in the database.
Summary
The general advice for every release of DB2 holds for DB2 12: always read through the manuals to find the new functions that can be used to minimize the amount of programming and work that needs to be done. It is important for both DBAs (in order to give good advice and be able to review SQL) and programmers (in order to write efficient and effective SQL) to know what functions are available. Be sure to review the new BIFs in DB2 12 and test them out to see how they work and where they can best be used at your shop!
Finally, there are a series of new functions for returning hashes. Given an expression, a hash algorithm is applied and the hash value is returned. There are four options:
- HASH_CRC32
- HASH_MD5
- HASH_SHA1
- HASH_SHA256
The name of the function determines the hashing algorithm that is used and the data type of the result, as shown in the table below:
BIF | Algorithm | Data Type | ||
---|---|---|---|---|
HASH_CRC32 | CRC32 | BINARY(4) | ||
HASH_MD5 | MD5 | BINARY(16) | ||
HASH_SHA1 | SHA1 | BINARY(20) | ||
HASH_SHA156 | SHA256 | BINARY(32) |
Summary
The general advice for every release of DB2 holds for DB2 12: always read through the manuals to find the new functions that can be used to minimize the amount of programming and work that needs to be done. It is important for both DBAs (in order to give good advice and be able to review SQL) and programmers (in order to write efficient and effective SQL) to know what functions are available. Be sure to review the new BIFs in DB2 12 and test them out to see how they work and where they can best be used at your shop!
Monday, June 26, 2017
BMC and CA: Impending Nuptials?
Have you heard the one about BMC Software acquiring CA, Inc.?
At first glance, to those of us who have been in the business for awhile, that sentence may look odd? Those two have been slugging it out in the mainframe software world for decades now. And to be fair, not just the mainframe world, but also in the distributed world.
But the chatter is out there that this could happen. Read this Reuters article or this Bloomberg article or this one from the Register.
The general idea is that BMC and its financial backers are working on a deal to take CA private and combine it with BMC. This would indeed be interesting.
At first glance, to those of us who have been in the business for awhile, that sentence may look odd? Those two have been slugging it out in the mainframe software world for decades now. And to be fair, not just the mainframe world, but also in the distributed world.
But the chatter is out there that this could happen. Read this Reuters article or this Bloomberg article or this one from the Register.
The general idea is that BMC and its financial backers are working on a deal to take CA private and combine it with BMC. This would indeed be interesting.
The two companies have
competing solutions across the board in many areas, which would make the combination challenging... at least in terms of customer satisfaction. First, the new combined entity (BMCA?) would have to identify all of the competing software products (both companies probably already know this, so no big deal). The next steps are the troubling ones. For each case where there are competing offerings they would have to choose to support both (costly in the long run and not sustainable), choose one to sunset (probably making existing customers not very happy), or combine the best of both products (technologically difficult and I know of no concrete examples where this happened successfully post-acquisition). So there is that to deal with.
Nevertheless, a combined BMC and CA would be a very powerful systems software vendor. But it would come into existence when a lot of software offerings are moving into the cloud. This will be on most analyst's lips if this "merger" moves forward. But it is not a big concern to me as there are still a lot of organizations that rely on systems software (from both BMC and CA) that are not going to move it all to the cloud any time soon.
From a DB2 perspective, the two companies have competing products (and solutions) across all the major categories (fast DB2 utilities, performance management, change management, backup/recovery, and catalog visibility). So if this acquisition happens, it is likely that a whole suite of DB2 for z/OS tooling (that has been "out there" for decades) gets completely eliminated. I'd bet on most of the BMC stuff surviving… not just because BMC would be the "acquirer" but because BMC has been paying more attention to their DB2 product line (lately) than CA. Nevertheless, it’d be sad to see some of the old Platinum stuff retired (e.g. Detector).
The DB2 tools are one component, but not the biggest. Think job
scheduling and workload automation, for example. CA has the CA7 and AutoSys product lines for mainframe and distributed; BMC has Control-M. What happens to consolidate these products is anybody's guess?
Two areas without a lot of cross over in the two companies portfolios are help desk and release management. CA probably covets BMC’s help desk (Remedy) and BMC
probably covets CA’s software release management (Endevor). But the whole DevOps revolution is impacting the ongoing viability of products like Endevor. Now that is not to say that the market for such tools will disappear overnight, but...
At any rate, I think the hassle would be
tremendous for customers as the combined company tries to rationalize its
product portfolio. If it goes the traditional BMC route it keeps both sets of
products at least for some time; the CA route it lets all products sort of die
by attrition over time. The best case scenario would that that a ruthless product-customer-focused view be deployed so that winners in each category are determined with
a reasonable conversion plan for customers to switch to whatever wins. I’d be
surprised if that happened because in my experience “reason” rarely prevails
with an acquisition.
Also, and this is not a minor concern, I’m not sure that this
would pass the regulatory anti-trust requirements, but who knows?
I would think that discounting would not be as great in a post-acquisition market because prospects will no longer be able to play one vendor against another. IBM could become more of a viable choice for competing system management software.
What do you think? Should BMC and CA combine together? How would it impact your company if they did?
Thursday, June 08, 2017
The DB2 12 for z/OS Blog Series - Part 11: Enhanced Support for Arrays
The ARRAY data type was added to DB2 in the last release (Version 11) with the ability to define both ordinary arrays or associative arrays. An ordinary array has a user-defined number of elements that are referenced by their ordinal position in the array. An associative array has no user-defined number of elements that are referenced by the array index value. An associative array’s index values do not have to be contiguous but they are unique. SQL PL variables and parameters for SQL PL routines could be defined as arrays.
Support for global variables was also added to DB2 11 for z/OS, but they could not be defined as an ARRAY. With DB2 12 for z/OS you can create global variables with an array data type. So the following is now legal as long as you are on V12 or higher:
CREATE TYPE IntgrArray AS INTEGER ARRAY[5]
...
CREATE VARIABLE IntgrArrayGV IntgrArray
A data type is defined as an integer array and a global variable is created using that data type.
Additional enhancements for array handling added to DB2 12 include the ability to use the ARRAY_AGG aggregate function to create an associative array... and you can specify the ORDER BY clause on the ARRAY_AGG aggregate function (as an option). The ARRAY_AGG function enables your programs to utilize arrays without having to code SQL PL in stored procedures or triggers.
Support for global variables was also added to DB2 11 for z/OS, but they could not be defined as an ARRAY. With DB2 12 for z/OS you can create global variables with an array data type. So the following is now legal as long as you are on V12 or higher:
CREATE TYPE IntgrArray AS INTEGER ARRAY[5]
...
CREATE VARIABLE IntgrArrayGV IntgrArray
A data type is defined as an integer array and a global variable is created using that data type.
Additional enhancements for array handling added to DB2 12 include the ability to use the ARRAY_AGG aggregate function to create an associative array... and you can specify the ORDER BY clause on the ARRAY_AGG aggregate function (as an option). The ARRAY_AGG function enables your programs to utilize arrays without having to code SQL PL in stored procedures or triggers.
Subscribe to:
Posts (Atom)