SlideShare a Scribd company logo
World®
’16
Modernizing	the	CA	Datacom®	
Data	– SQL	Access	Part	I
Kevin	Shuma,	VP	Product	Management
CA	Technologies
MFX95SA
MAINFRAME	AND	WORKLOAD	AUTOMATION
2 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
©	2016	CA.	All	rights	reserved.	All	trademarks	referenced	herein	belong	to	their	respective	companies.
The	content	provided	in	this CA	World	2016	presentation	is	intended	for	informational	purposes	only	and	does	not	form	any	type	of	
warranty. The information	provided	by	a	CA	partner	and/or	CA	customer	has	not	been	reviewed	for	accuracy	by	CA.	
For	Informational	Purposes	Only	
Terms	of	this	Presentation
3 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Abstract
This	is	a	two	part	session	that	provides	an	overview	of	steps	
necessary	to	take	make	CA	Datacom®	available	for	modern	
applications	via	SQL	and	server.
For	many	shops	their	CA	Datacom®/DB	environment	was	
created	before	the	implementation	of	SQL.	This	session	will	
walk	through	the	steps	necessary	to	make	all	the	their	data	SQL	
accessible	using	CA	Datacom®	SQL.		From	there	we	add	the	
ODBC	and	JDBC	support	provided	by	CA	Datacom®	server.	Once	
completed	you	will	have	data	that	is	fully	accessible	to	modern	
applications	development	environments.			
Kevin	Shuma
CA	Technologies
VP,	Product	
Management
4 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Agenda
WHY	SHOULD	WE	IMPLEMENT	SQL?
IMPLEMENTING	SQL	ACCESS
LEGACY	DATA	STRUCTURES
SQL	COLUMN	REPORT
SUMMARY	
1
2
3
4
5
5 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Why	should	we	implement	SQL?
§ SQL	provides	the	basic	access	point	for	modern	applications
– ODBC/JDBC	use	SQL	under	the	covers
§ Implementing	SQL	access	on	traditional	data
– Opens	up	critical	business	data	to	new	applications	and	business	
functions
– Does	not	interfere	with	existing	traditional	applications
§ Peaceful	coexistence	is	much	preferred	to	revolutionary	change	(rewrites)
§ Implementing	SQL	constraints	on	traditional	data
– Allows	business	rules	to	be	enforced	without	requiring	additional	coding		
Modernization	is	the	Key	to	Growth	in	Today’s	World
6 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
CA	Datacom®	SQL	and	CA	Datacom®	Server
CA	Datacom	data	
and	business	
logic
Web	and	
Application	Servers
Web	and	mobile	apps
Modernization	With	Coexistence
Batch
Traditional	apps
7 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	- AUTHIDs
§ AUTHIDs	must	be	adding	to	the	system	before	they	can	be	
used	in	table	references
§ Default	AUTHIDs	provided	with	Datacom
– SYSADM	(system	tables)
– SYSUSR	(default	for	user	tables)
§ We	recommend	that	the	user	define	meaningful	AUTHIDs	for	
their	environment		
– user_authid (18	character	user	specified	name)
Creating	the	System	Level	Schemas	- AUTHIDs
8 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	- AUTHIDs	(Cont’d)
Creating	the	System	Level	Schemas	- AUTHIDs
DBID AUTHID
0100 DB0100
0200 DB0200
1294 DB1294
• Using	an	AUTHID	that	ties	to	business	
function	may	make	it	easier	to	group	
the	tables
• All	SQL	table	name	must	be	unique	with	
AUTHID
• With	multiple	DBIDs	per	AUTHID	be	
careful	when	assigning	SQL	table	names	
AUTHID Business	Function DBID Table
PAYROLL Payroll 0100 All
VENDOR Accounts payable 0200 VND,	VNA,	VN3
INVENTORY Sales and	ordering 0300	
0400
INV,	ITM,	DTL
ORD,	ODL,	ITM
• CA	Datacom	already	requires	3	character	table	names	to	be	unique	within	DBID
• In	this	example	we	are	using	the	DBID	as	part	of	the	AUTHID	as	a	simple	default
• Makes	it	relatively	simple	for	existing	users	to	remember	the	AUTHID
9 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	- AUTHIDs	(Cont’d)
§ AUTHIDs	can	be	added	to	the	system	through	various	utilities
– They	only	need	to	be	defined	once	per	environment	(MUF)
Creating	the	System	Level	Schemas	- AUTHIDs
Datadictionary	batch Datadictionary	online SQL	statement
10 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	– Database	Model
Adding	SQL	Names	to	the	Database	Model	in	PROD	Status
DD	
Entity
Attribute Req. Values Default Status Comment
Schema AUTHID No 18	Character No ADD
CPY	PROD
Must	be	defined	in PROD	before	
using	for	tables
Database SQL-
Security
No Y	or	N N UPD	
PROD
Use default	or	set	to	N,	Use	
external	security		
SQL-NAME N/A 32	Character None UPD	
PROD
Used	for	documentation	only
Area SQL-Name No 32	Character None UPD	
PROD
Needed	if	adding	new	tables	via	
DDL	(CREATE TABLE	…		IN	…)
11 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	– Database	Model	(Cont’d)
Adding	SQL	Names	to	the	Database	Model	in	PROD	Status
DD	
Entity
Attribute Re
q.
Values Default Status Comment
Table SQL-Intent Yes	 N,	Y	or	R N UPD	
PROD
Use	Y	for	full	SQL	access						
Use	R	for	SQL	read	access	only
AUTHID Yes Existing	
AUTHID	
None UPD	
PROD
Must	be	already defined
SQL-Name YES 32	Character None UPD	
PROD
Must	be	defined	to access	table	
with	SQL
Key AUTHID N/A Assigned to	
table	value
auto UPD	
PROD
Automatically	assigned
SQL-Name NO 32	Character None UPD	
PROD
Must	be	defined	to access	index	
with	SQL	(ALTER	or	DROP)
12 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	SQL	– Database	Model	(Cont’d)
Adding	SQL	Names	to	the	Database	Model	in	PROD	Status
DD	
Entity
Attribute Req. Values Default Status Comment
Column AUTHID N/A Assigned to	
table	value
auto UPD	
PROD
Automatically	assigned
SQL-Name NO 32	Character Generated UPD	
PROD
Generated	using	existing
column	name
Column AUTHID N/A Assigned to	
table	value
auto UPD	
PROD
Automatically	assigned
SQL-Name NO 32	Character User	
specified
UPD	Test
CPY PROD
User	wants	specific	SQL	name
User	specified	name	for	column
requires	extra	steps
13 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Sample	DDUPDATE	Job	to	Add	SQL	Attributes
Update	SQL	
attributes	in	
PROD	status	
Catalog	PROD	to	
CXX	and	DDD
14 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Making	the	SQL	Attributes	“Live”
§ SQL	attributes	are	set	through	Datadictionary	processes
– SQL	attributes	made	usable	during	the	CXX	CATALOG
§ SQL	definitions	are	stored	in	the	DDD
§ Only	“active/production”	definitions	are	in	DDD
Update	TABLE
Copy	to	PROD
DDUPDATE
MUF
DD	
0002
Catalog DDUPDATE
MUF
DD	
0002
CXX
DDD	
0015
15 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Legacy	Data	Structures
§ Legacy	data	structures	may	have	some	“SQL”	access	limits
– All	tables	are	accessible,	but	the	content	access	may	be	limited
§ SQL	accessibility	to	legacy	table	definitions
– Group	fields	are	ignored	by	SQL
§ Only	elementary	fields	are	viewable
– 2nd redefinition	columns	are	not	accessible		
§ Only	the	first	set	of	column	definitions	are	viewable;	anything	after	the	
REDEFINE	is	ignored
– Elements	of	repeating	groups	are	not	distinguishable
§ Repeating	group	(array)	is	represented	as	a	single	character	column
May	Have	Been	Built	Using	Older	Data	Structures	(VSAM,	COBOL	Copybooks)
16 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
SQL	Column	Report
§ Can	be	executed	against	any	existing	table
– Regardless	of	SQL-INTENT	setting
– Can	be	used	to	preview	SQL	accessibility
Quick	Way	to	Determine	How	SQL	Accessible	Legacy	Table	Definitions	Are
17 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
SQL	Column	Report	(Cont’d)
Quick	Way	to	Determine	How	SQL	Accessible	Legacy	Table	Definitions	Are
18 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
SQL	Column	Report	(Cont’d)
SQL	ACCESS	STD.	- Shows	Current	SQL	Accessibility
STD	– indicates	if	column	is	
accessible	by	standard	SQL
NO	- will	include	reason	data	is	
not	accessible
• CMP	– column	is	a	compound	
(group)	field
• RPT	– Column	is	a	repeating	
field
• RDF	– Colum	is	a	redefinition	
(2nd definition)
19 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Experiences
SQL	Column	report	provides	a	
detailed	report	showing	SQL	
column	accessibility	for	any	
table.
Key	Topics
Adding	SQL	accessibility	to	
existing	tables	will	allow	new	
modern	applications	to	be	
created	that	peacefully	coexist	
with	existing	legacy	
applications.
Findings
It	is	a	simple	process	to	make	
an	existing	table	SQL	
accessible.
Summary
Part	I
20 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Recommended	Sessions
SESSION	# TITLE DATE/TIME
MFX92S Strategy	and	Vision	for	CA	Datacom	and	CA	Ideal™ 11/16/2016	at	12:45	pm
MFX93S What’s	new	in	CA	Datacom	 11/16/2016	at	1:45	pm
MFX94S Reducing	TCO	with	Datacom	Compression	(Presspack) 11/16/2016	at	3:00	pm
MFX95SA Modernizing	the	CA	Datacom	data – SQL	Access	Part	I 11/16/2016	at	3:45	pm
MFX95SB Modernizing	the	CA	Datacom	data – SQL	Access	Part	II 11/16/2016	at	4:30	pm
MFX96S CA	Datacom/AD	Installation/Upgrade	and	Maintenance 11/17/2016	at	12:45	pm
MFX97S
CA	Datacom/AD	Report	Utilization,	and
information	gather	for	Support
11/17/2016	at	1:45	pm
MFX98S
Using	CA	SYSVIEW®	to	monitor	and	measure	your	CA	
Datacom	environment	– AD	and	DB
11/17/2016	at	3:00	pm
MFX99S Birds	of	a	Feather/Stump	the	Techie!	 11/17/2016	at	3:45	pm
21 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Questions?
22 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Stay	connected	at	communities.ca.com
Thank	you.
@CAWORLD					#CAWORLD ©	2016	CA.	All	RIGHTS	RESERVED.23 @CAWORLD					#CAWORLD
Mainframe	and	Workload	Automation
For	more	information	on	Mainframe	and	Workload	Automation,		
please	visit:	http://cainc.to/9GQ2JI

More Related Content

PDF
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
CA Technologies
 
PDF
Application Tuning for CA Datacom Environments Part II
CA Technologies
 
PDF
Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...
CA Technologies
 
PDF
Enabling a Hybrid Enterprise Application Launch Pad
CA Technologies
 
PDF
Tech Talk: CA Live API Creator: API Servers vs. App Servers
CA Technologies
 
PDF
CA IDMS Buffer Tuning
CA Technologies
 
PDF
Implementation and Use of Generic VTAM Resources with Parallel SYSPLEX Features
CA Technologies
 
PDF
Connecting Applications from Mobile to Mainframe in the Application Economy
CA Technologies
 
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
CA Technologies
 
Application Tuning for CA Datacom Environments Part II
CA Technologies
 
Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...
CA Technologies
 
Enabling a Hybrid Enterprise Application Launch Pad
CA Technologies
 
Tech Talk: CA Live API Creator: API Servers vs. App Servers
CA Technologies
 
CA IDMS Buffer Tuning
CA Technologies
 
Implementation and Use of Generic VTAM Resources with Parallel SYSPLEX Features
CA Technologies
 
Connecting Applications from Mobile to Mainframe in the Application Economy
CA Technologies
 

What's hot (20)

PDF
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
CA Technologies
 
PDF
Modernizing the CA Datacom Data – SQL Access Part II
CA Technologies
 
PDF
Decrease Test Build Time, Not Test Quality with CA BlazeMeter
CA Technologies
 
PDF
Pre-Con Ed: Monitor Your Storage Infrastructure With CA Unified Infrastructur...
CA Technologies
 
PDF
Vision and Roadmap: Learn How Application Release Solutions Help You Lead th...
CA Technologies
 
PDF
Introduction to Service Virtualization
CA Technologies
 
PDF
CA Gen Updates: Application Modernization and What's New
CA Technologies
 
PPTX
CA View® and CA Deliver™ – Product Overview
CA Technologies
 
PDF
How to Get the Best User Experience for Your Customers With: CA View® / CA De...
CA Technologies
 
PDF
CA Mobile Application Management - for granular app control
CA Technologies
 
PDF
Automate and Accelerate Software Development Time and Deliver Superior Busine...
CA Technologies
 
PDF
Creating an Omnichannel Experience for Your Customers
CA Technologies
 
PDF
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
CA Technologies
 
PDF
CA Gen Exploration – What's New and Cool in Application Development
CA Technologies
 
PDF
Pre-Con Education: Building Advanced ITSM Workflows in CA Service Management
CA Technologies
 
PDF
Understanding the Basics of CA Workload Automation iDash
CA Technologies
 
PDF
CA InterTest™ : The Answer to Faster Application Development With High Qualit...
CA Technologies
 
PDF
Case Study: University of California Office of the President Studies Front En...
CA Technologies
 
PDF
Maximizing Your CA IDMS™ Investment for the New Application Economy (Part 2)
CA Technologies
 
PDF
Pre-Con Education: Building ITSM Reports and Dashboards with CA Business In...
CA Technologies
 
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
CA Technologies
 
Modernizing the CA Datacom Data – SQL Access Part II
CA Technologies
 
Decrease Test Build Time, Not Test Quality with CA BlazeMeter
CA Technologies
 
Pre-Con Ed: Monitor Your Storage Infrastructure With CA Unified Infrastructur...
CA Technologies
 
Vision and Roadmap: Learn How Application Release Solutions Help You Lead th...
CA Technologies
 
Introduction to Service Virtualization
CA Technologies
 
CA Gen Updates: Application Modernization and What's New
CA Technologies
 
CA View® and CA Deliver™ – Product Overview
CA Technologies
 
How to Get the Best User Experience for Your Customers With: CA View® / CA De...
CA Technologies
 
CA Mobile Application Management - for granular app control
CA Technologies
 
Automate and Accelerate Software Development Time and Deliver Superior Busine...
CA Technologies
 
Creating an Omnichannel Experience for Your Customers
CA Technologies
 
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
CA Technologies
 
CA Gen Exploration – What's New and Cool in Application Development
CA Technologies
 
Pre-Con Education: Building Advanced ITSM Workflows in CA Service Management
CA Technologies
 
Understanding the Basics of CA Workload Automation iDash
CA Technologies
 
CA InterTest™ : The Answer to Faster Application Development With High Qualit...
CA Technologies
 
Case Study: University of California Office of the President Studies Front En...
CA Technologies
 
Maximizing Your CA IDMS™ Investment for the New Application Economy (Part 2)
CA Technologies
 
Pre-Con Education: Building ITSM Reports and Dashboards with CA Business In...
CA Technologies
 
Ad

Viewers also liked (19)

PDF
Application Tuning for CA Datacom Environments Part I
CA Technologies
 
PDF
Advanced DBA – Performance Tuning for MUF Part I
CA Technologies
 
PDF
Tools for Monitoring and Tuning your CA IDMS/DC System
CA Technologies
 
PDF
Introduction to Identity-as-a-Service and Secure Access to SaaS
CA Technologies
 
PDF
CA IDMS Deadlock Analysis
CA Technologies
 
PDF
Advanced DBA – Performance Tuning for MUF Part II
CA Technologies
 
PDF
Reducing TCO with Datacom Compression (Presspack)
CA Technologies
 
PDF
What’s new in CA Datacom
CA Technologies
 
PDF
CA IDMS Performance and Tuning
CA Technologies
 
PDF
Securing Mobile Payments: Applying Lessons Learned in the Real World
CA Technologies
 
PDF
Convenience and Security for banking customers with CA Advanced Authentication
CA Technologies
 
PDF
CA IDMS Database Navigation
CA Technologies
 
PDF
Auto Integrate – DevTest Automation and Integration Best Practices
CA Technologies
 
PDF
Identity and Access Management Survey: Current Market Challenges and Solutions
CA Technologies
 
PDF
Digital transformation in financial services through trusted digital relation...
CA Technologies
 
PDF
Using Sysview to Monitor and Measure Your CA Datacom Environment – AD and DB
CA Technologies
 
PDF
Advanced DBA – High Availability for MUF
CA Technologies
 
PDF
Moving from Load Runner to Open Source: Increase Performance Test Coverage 10...
CA Technologies
 
PDF
DevOps: From Industry Buzzword to Real Implementation / Real Benefits
CA Technologies
 
Application Tuning for CA Datacom Environments Part I
CA Technologies
 
Advanced DBA – Performance Tuning for MUF Part I
CA Technologies
 
Tools for Monitoring and Tuning your CA IDMS/DC System
CA Technologies
 
Introduction to Identity-as-a-Service and Secure Access to SaaS
CA Technologies
 
CA IDMS Deadlock Analysis
CA Technologies
 
Advanced DBA – Performance Tuning for MUF Part II
CA Technologies
 
Reducing TCO with Datacom Compression (Presspack)
CA Technologies
 
What’s new in CA Datacom
CA Technologies
 
CA IDMS Performance and Tuning
CA Technologies
 
Securing Mobile Payments: Applying Lessons Learned in the Real World
CA Technologies
 
Convenience and Security for banking customers with CA Advanced Authentication
CA Technologies
 
CA IDMS Database Navigation
CA Technologies
 
Auto Integrate – DevTest Automation and Integration Best Practices
CA Technologies
 
Identity and Access Management Survey: Current Market Challenges and Solutions
CA Technologies
 
Digital transformation in financial services through trusted digital relation...
CA Technologies
 
Using Sysview to Monitor and Measure Your CA Datacom Environment – AD and DB
CA Technologies
 
Advanced DBA – High Availability for MUF
CA Technologies
 
Moving from Load Runner to Open Source: Increase Performance Test Coverage 10...
CA Technologies
 
DevOps: From Industry Buzzword to Real Implementation / Real Benefits
CA Technologies
 
Ad

Similar to Modernizing the CA Datacom Data – SQL Access Part I (20)

PDF
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
CA Technologies
 
PDF
CA Datacom®/AD Installation/Upgrade and Maintenance
CA Technologies
 
PDF
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
CA Technologies
 
PDF
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
CA Technologies
 
PDF
CA IDMS™ 19.0 SQL Enhancements for Modernization
CA Technologies
 
PDF
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
CA Technologies
 
PDF
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
CA Technologies
 
PDF
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
CA Technologies
 
PDF
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
CA Technologies
 
PDF
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
CA Technologies
 
PDF
Case Study: Jack Henry & Associates Automates Application Deployments Through...
CA Technologies
 
PDF
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
CA Technologies
 
PDF
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...
CA Technologies
 
PDF
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
CA Technologies
 
PDF
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
CA Technologies
 
PDF
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
CA Technologies
 
PPTX
Pre-Con Ed: Building Basic Workflows in CA Service Management
CA Technologies
 
PDF
Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...
CA Technologies
 
PDF
Pre-Con Ed: Best Practices for Setting Thresholds in CA SYSVIEW®
CA Technologies
 
PDF
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
CA Technologies
 
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
CA Technologies
 
CA Datacom®/AD Installation/Upgrade and Maintenance
CA Technologies
 
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
CA Technologies
 
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
CA Technologies
 
CA IDMS™ 19.0 SQL Enhancements for Modernization
CA Technologies
 
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
CA Technologies
 
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
CA Technologies
 
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
CA Technologies
 
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
CA Technologies
 
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
CA Technologies
 
Case Study: Jack Henry & Associates Automates Application Deployments Through...
CA Technologies
 
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
CA Technologies
 
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...
CA Technologies
 
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
CA Technologies
 
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
CA Technologies
 
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
CA Technologies
 
Pre-Con Ed: Building Basic Workflows in CA Service Management
CA Technologies
 
Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...
CA Technologies
 
Pre-Con Ed: Best Practices for Setting Thresholds in CA SYSVIEW®
CA Technologies
 
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
CA Technologies
 

More from CA Technologies (20)

PPTX
CA Mainframe Resource Intelligence
CA Technologies
 
PDF
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
CA Technologies
 
PDF
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
CA Technologies
 
PDF
Case Study: How The Home Depot Built Quality Into Software Development
CA Technologies
 
PDF
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
CA Technologies
 
PDF
Case Study: Privileged Access in a World on Time
CA Technologies
 
PDF
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
CA Technologies
 
PDF
Case Study: Putting Citizens at The Center of Digital Government
CA Technologies
 
PDF
Making Security Work—Implementing a Transformational Security Program
CA Technologies
 
PDF
Keynote: Making Security a Competitive Advantage
CA Technologies
 
PDF
Emerging Managed Services Opportunities in Identity and Access Management
CA Technologies
 
PDF
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
CA Technologies
 
PDF
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
CA Technologies
 
PDF
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
CA Technologies
 
PDF
Application Experience Analytics Services: The Strategic Digital Transformati...
CA Technologies
 
PDF
Application Experience Analytics Services: The Strategic Digital Transformati...
CA Technologies
 
PDF
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
CA Technologies
 
PDF
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
CA Technologies
 
PDF
Blockchain: Strategies for Moving From Hype to Realities of Deployment
CA Technologies
 
PDF
Establish Digital Trust as the Currency of Digital Enterprise
CA Technologies
 
CA Mainframe Resource Intelligence
CA Technologies
 
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
CA Technologies
 
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
CA Technologies
 
Case Study: How The Home Depot Built Quality Into Software Development
CA Technologies
 
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
CA Technologies
 
Case Study: Privileged Access in a World on Time
CA Technologies
 
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
CA Technologies
 
Case Study: Putting Citizens at The Center of Digital Government
CA Technologies
 
Making Security Work—Implementing a Transformational Security Program
CA Technologies
 
Keynote: Making Security a Competitive Advantage
CA Technologies
 
Emerging Managed Services Opportunities in Identity and Access Management
CA Technologies
 
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
CA Technologies
 
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
CA Technologies
 
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
CA Technologies
 
Application Experience Analytics Services: The Strategic Digital Transformati...
CA Technologies
 
Application Experience Analytics Services: The Strategic Digital Transformati...
CA Technologies
 
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
CA Technologies
 
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
CA Technologies
 
Blockchain: Strategies for Moving From Hype to Realities of Deployment
CA Technologies
 
Establish Digital Trust as the Currency of Digital Enterprise
CA Technologies
 

Recently uploaded (20)

PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
Software Development Methodologies in 2025
KodekX
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
The Future of Mobile Is Context-Aware—Are You Ready?
iProgrammer Solutions Private Limited
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Software Development Methodologies in 2025
KodekX
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
The Future of Mobile Is Context-Aware—Are You Ready?
iProgrammer Solutions Private Limited
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 

Modernizing the CA Datacom Data – SQL Access Part I