SlideShare a Scribd company logo
1 of 35
Download to read offline
World®
’16
Modernizing	the	CA	Datacom®	
Data	– SQL	Access	Part	II
Kevin	Shuma,	VP	Product	Management
CA	Technologies
MFX95SB
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
WHAT	IS	A	DATACOM	VIEW	
IMPLEMENTING	DATACOM	VIEWS
USING	DBSQLPR
SECURITY	CONSIDERATIONS
SUMMARY	
1
2
3
4
5
5 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
What	is	a	Datacom	VIEW?
§ Extension	to	SQL	for	Datacom	only
– Supports	all	current	SQL	access
– Adds	SQL	access	for
§ Compound	columns
§ Single-dimension	arrays
§ Redefined	columns
§ Simple	“low-impact”	method	to	utilize	legacy	data	structures	
with	SQL
Datacom	SQL	Extension
6 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
SQL	Column	Report
SQL	ACCESS	STD.	– From	Part	I
STD	SQL	access	may	be	limited	for	
certain	legacy	structures
7 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
SQL	Column	Report
SQL	ACCESS	– DATACOM	VIEW
STD	SQL	access	may	be	limited	for	
certain	legacy	structures
SQL	ACCESS	- DATACOM					
indicates	if	column	is	accessible	by	
a	DATACOM	VIEW
Columns	that	were	not	accessible	
using	standard	SQL	may	be	fully	
accessible	using	a	DATACOM	VIEW
8 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Implementing	a	DATACOM	VIEW
§ Syntax	the	same	as	standard	CREATE	VIEW	with	one	change
– CREATE	DATACOM VIEW	
§ Group	columns	are	available	as	character	columns
§ Redefined	columns	available	as	defined
§ Repeating	columns	available	using	
column_sqlname[nn]		
i.e.			part_number[1],	part_number[2],		part_number[3]
Using	Standard	SQL	DDL	Syntax	With	Datacom	Extensions
9 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Generating	a	DATACOM	VIEW	syntax
§ Use	either	DDUTILTY	or	DDUPDATE	batch	utilities
– Input	transactions:
+UTL	LIBRARY,SRC
+UTL	LANGUAGE,SQL					
+UTL	MODE,	DATACOM-VIEW
+UTL	COPY,TABLE,POLICY-HISTORY(PROD),POHDVIEW
§ Output
– SYSPRINT	– report	showing	the	created	view
– SYSPUNCH	– output	dataset	with	created	view	syntax
Using	Datadictionary Utility	to	Generate	a	View	Model	to	Use
10 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
./ ADD NAME=POHDVIEW
CREATE DATACOM VIEW
SYSUSR.POLICY_INFO_VIEW
(
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
PAYMENT_SCHEDULE,
-- START ARRAY: SCHEDULE_PAYAMT_MONTH
SCHEDULE_PAYAMT_MONTH_01,
SCHEDULE_PAYAMT_MONTH_02,
. . . .
SCHEDULE_PAYAMT_MONTH_12,
-- END ARRAY: SCHEDULE_PAYAMT_MONTH
SCHEDULE_COMMENT,
Generates	entries	for	each	of	
the	entries	in	a	repeating	
group
Datacom	View	Generator	Output	- SYSPUNCH
Generates	an	entry	for	each	
group	column
11 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Datacom	View	Generator	Output	– SYSPUNCH	(Cont’d)
-- START REDEFINE: PAYMENT_RECORD
-- REDEFINES: SCHEDULE-PAYMENT
PAYMENT_RECORD,
PAYMENT_DATE,
PAYMENT_REFERENCE,
PAYMENT_AMOUNT,
PAYMENT_COMMENT,
-- START REDEFINE: NOTES_RECORD
-- REDEFINES: PAYMENT-RECORD
NOTES_RECORD,
NOTES_DATE,
NOTES_COMMENT,
POLICY_FILLER
Create	on	set	of	entry	
for	each	definition	
Payment	row	definition	
Transaction-type	“PAY”
Payment	row	definition	
Transaction-type	“NOT”
For	redefinitions	you	must	choose	one	row	definition	per	view!!
12 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DATACOM	VIEW	– POH_SCHEDULE
./ ADD NAME=POHSCHED
CREATE DATACOM VIEW
SYSUSR.POLICY_INFO_VIEW
(
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
PAYMENT_SCHEDULE,
SCHEDULE_PAYAMT_MONTH_JAN,
SCHEDULE_PAYAMT_MONTH_FEB,
.. . .
SCHEDULE_PAYAMT_MONTH_DEC,
SCHEDULE_COMMENT
)
AS
SELECT
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
PAYMENT_SCHEDULE,
SCHEDULE_PAYAMT_MONTH[01],
SCHEDULE_PAYAMT_MONTH[02],
. . . .
SCHEDULE_PAYAMT_MONTH[12],
SCHEDULE_COMMENT
FROM
SYSUSR.POLICY_INFO
WHERE TRANSACTION_TYPE = ‘SCH’
WITH CHECK OPTION;
1st
definition	
Repeating	
group
13 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DATACOM	VIEW	– POH_PAYMENT
./ ADD NAME=POHSCHED
CREATE DATACOM VIEW
SYSUSR.POLICY_INFO_VIEW
(
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
PAYMENT_RECORD,
PAYMENT_DATE,
PAYMENT_REFERENCE,
PAYMENT_AMOUNT,
PAYMENT_COMMENT
)
AS
SELECT
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
PAYMENT_RECORD,
PAYMENT_DATE,
PAYMENT_REFERENCE,
PAYMENT_AMOUNT,
PAYMENT_COMMENT
FROM
SYSUSR.POLICY_INFO
WHERE TRANSACTION_TYPE = ‘PAY’
WITH CHECK OPTION.
2nd
definition	
Series	of	
columns
14 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DATACOM	VIEW	– POH_NOTES
./ ADD NAME=POHSCHED
CREATE DATACOM VIEW
SYSUSR.POLICY_INFO_VIEW
(
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
NOTES_RECORD,
NOTES_DATE,
NOTES_COMMENT,
)
AS
SELECT
POLICY_NUMBER,
DIVISION_NUMBER,
AGENT_ID,
OWNER_ID,
POLICY_TYPE,
TRANSACTION_CODE,
TRANSACTION_TYPE,
TRANSACTION_SEQ,
NOTES_RECORD,
NOTES_DATE,
NOTES_COMMENT
FROM
SYSUSR.POLICY_INFO
WHERE TRANSACTION_TYPE = ‘NOT’
WITH CHECK OPTION.
3rd	
definition	
Set	of	
different	
columns
15 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Datacom	View	Best	Practices
§ When	redefinitions	exist
– Always	use	a	where	clause	to	“match”	rows	to	definitions
– Always	use	a	WITH	CHECK	OPTION	to	protect	“updates”
§ When	group	columns	referenced
– Data	is	treated	as	character
– Only	update	group	column	when	children	are	CHARACTER
§ Avoid	updates	that	would	place	mismatched	data	in	child	columns
§ Avoid	updating	group	and	child	columns	at	the	same	time
– Group	and	child	updates	could	overlay	each	other
– Order	of	SET	COLUMN=	will	be	implemented	in-order
16 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Datacom	View	Best	Practices	(Cont.)
§ DATACOM	VIEWS	can	be	joined	together	like	any	other	view	
or	table
– Allows	the	joining	of	two	rows	in	same	table	
– Provides	SQL	access	to	tables	not	normally	available	to	SQL
§ DATACOM	VIEWS	can	be	updated
– Only	one	view	per	UPDATE/DELETE/INSERT	statement
17 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Complex	Definitions
§ Some	tables	may	need	additional	Datadictionary	work	in	
conjunction	with	DATACOM	VIEWs	to	get	complete	access
– Multiple	dimension	arrays
§ Consider	redefinition	in	Datadictionary	for	higher	levels	
– Compound	arrays	
§ Arrays	built	at	group	level	with	multiple	elements
– Other	variations
18 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Complex	Definitions	(Cont’d)
§ To	make	more	definitions	available	to	DATACOM	VIEW
– Add	additional	redefinitions	at	the	end	of	the	table
§ Does	not	affect	existing	processing
§ No	overhead	other	than	Dictionary	definitions
19 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Using	DBSQLPR
§ Simple	batch	utility	to	execute	SQL	statements
– DDL	
§ Add	schemas
§ Create	tables,	indexes,	etc.
§ Avoid	things	like	“alter	table	..	add	column”		which	could	run	a	long	time
– DML
§ Add,	update	and	delete	rows
§ SQL	Queries	
– Reports
– Output	formatted	for	spreadsheets
Datacom	SQL	Utility
20 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Executing	DBSQLPR
Datacom	SQL	Utility
//DBSQLPR EXEC PGM=DBSQLPR
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SNAPPER DD SYSOUT=*
//STDERR DD SYSOUT=*
//STDOUT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//OPTIONS DD *
AUTHID=SYSADM
SQLMODE=DATACOM
WORKSPACE=128
PRTWIDTH=133
NOFORMFEED
PAGELEN=60
ROWLIMIT=100000
MSG=NN
PLANAME=KEVIN
/*
Executing		
JCL
Executing		
Options
//SYSIN DD *
SELECT
BOROUGH_NUMBER,
BOROUGH_NAME,
TAX_DISTRICT,
TAX_CODE,
MAP_CODE,
MAP_CODE_ID1,
MAP_CODE_ID2,
MAP_CODE_TYP1,
MAP_CODE_TYP2,
MAP_BLOCK,
MAP_BLOCK_DET,
HOUSE_NUMBER,
HOUSE_NUMBER_EXT,
STREET_NAME,
STREET_NAME_QUAL,
STREET_DIVISION,
MAP_SEQUENCE
FROM
UNCOMP.UNCOMPRESS;
SQL	
Statements
1
2
3
21 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Executing	DBSQLPR	(Cont’d)
§ Comments	can	be	imbedded	
– Asterisk	in	column	1	 “*”
– Dashes	in	column	1	and	2	 “- -”	
Datacom	SQL	Utility
//SYSIN DD *
* GET TABLES THAT WERE CREATED IN THE DEFAULT SQL AREA
-- LIST THE DBID AND SQL TABLE NAME
SELECT DBID, TABLE_NAME FROM SYSADM.DIR_TABLE WHERE DBID = 16;
22 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Executing	DBSQLPR	(Cont’d)
§ Multiple	statements	allowed	in	SYSIN
– Each	statement	terminated	by	a	“;”	semi-colon
§ Can	imbed	“commit”
– Ensures	the	work	is	committed
Datacom	SQL	Utility
//SYSIN DD *
INSERT INTO . . . . . . ; COMIT;
DELETE FROM . . . . . ;
COMIT;
//SYSIN DD *
SELECT DBID, TABLE_NAME FROM SYSADM.DIR_TABLE WHERE DBID = 100;
SELECT DBID, TABLE_NAME FROM SYSADM.DIR_TABLE WHERE DBID = 16;
23 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Executing	DBSQLPR	(Cont’d)
§ OPTIONS	control	execution
– AUTHID=SYSADM				 Sets	default	AUTHID	to	use																		
– SQLMODE=DATACOM												 Choose	SQL	mode									
– WORKSPACE=128						 Sets	up	space	to	process	requests														
– PRTWIDTH=133																							 Determines	output	width
– PAGELEN=60																									 Determines	page	length
– ROWLIMIT=100000										 Stops	after	nnnn	rows	returned
– Lots	more	… See	CA	Datacom	SQL	Guide
Datacom	SQL	Utility
24 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output
§ Three	output	formats
– *$WIDE	
§ Left	to	right	format	(standard	report)
§ If	more	columns	than	will	fit	on	line	the	headings	and	data	lines	will	wrap
§ Will	revert	to	*$THIN	if	too	many	line	wraps	(>3)
– *$THIN	or	*$COLUMN
§ Top	to	bottom	format	(one	column	head	and	column	value	per	line)
– DATASEPARATOR=;
§ Changes	output	to	a	delimiter	separated	value	output
Datacom	SQL	Utility
25 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output	– Wide
Datacom	SQL	Utility
Command Line Options
____________________
Option File Options
___________________
AUTHID=SYSUSR
MSG=NN
NOFORMFEED
PAGELEN=60
PLANAME=KEVIN
PRTWIDTH=133
ROWLIMIT=1000
SQLMODE=DATACOM
WORKSPACE=128
INPUT STATEMENT:
SELECT DIR_NAME,
DBID,
TABLE_NAME,
AREA_NAME,
TABLE_ID,
CHNG_MASTER_KEY,
DUP_MASTER_KEY,
PIPELINE
FROM SYSADM.DIR_TABLE WHERE DBID = 16;
Echo	options	to	output
Echo	query	to	output
26 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output	– Wide	(Cont’d)
Datacom	SQL	Utility
DIR_NAME DBID TABLE_NAME AREA_NAME TABLE_ID CHNG_MASTER_KEY DUP_MASTER_KEY PIPELINE
CHAR(8) N.N. UNS. SMALLINT N.N. CHAR(3) N.N. CHAR(3) N.N. UNS. SMALLINT N.N. CHAR(1) N.N. CHAR(1) N.N. CHAR(1) N.N.
____________ __________________ ____________ ____________ __________________ _______________ ______________ ____________
QAMUF4 16 B03 SQ1 3 Y Y Y
QAMUF4 16 B38 SQ1 38 Y Y Y
QAMUF4 16 B40 SQ1 40 Y Y Y
QAMUF4 16 B41 SQ1 41 Y Y Y
QAMUF4 16 B42 SQ1 42 Y Y Y
QAMUF4 16 B46 SQ1 46 Y Y Y
QAMUF4 16 B49 SQ1 49 Y Y Y
QAMUF4 16 B55 SQ1 55 Y Y Y
QAMUF4 16 B56 SQ1 56 Y Y Y
QAMUF4 16 B58 SQ1 58 Y Y Y
QAMUF4 16 B59 SQ1 59 Y Y Y
QAMUF4 16 B61 SQ1 61 Y Y Y
QAMUF4 16 B62 SQ1 62 Y Y Y
QAMUF4 16 SYS SQ1 63 Y Y Y
___ 30 rows returned ___
=================================================
== DBSQLPR is completing with return code 0000 ==
== ==
== Statements Found: 00001 ==
== Statement Errors: 00000 ==
== Statement Warnings: 00000 ==
=================================================
Query	output	in	wide	format
DBSQLPR	execution	results
27 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output	– Thin
Datacom	SQL	Utility
DIR_NAME, <QAMUF4 >, CHAR(8) NOT NULL
DBID, <16>, UNS. SMALLINT NOT NULL
TABLE_NAME, <B03>, CHAR(3) NOT NULL
AREA_NAME, <SQ1>, CHAR(3) NOT NULL
TABLE_ID, <3>, UNS. SMALLINT NOT NULL
CHNG_MASTER_KEY, <Y>, CHAR(1) NOT NULL
DUP_MASTER_KEY, <Y>, CHAR(1) NOT NULL
PIPELINE, <Y>, CHAR(1) NOT NULL
DIR_NAME, <QAMUF4 >, CHAR(8) NOT NULL
DBID, <16>, UNS. SMALLINT NOT NULL
TABLE_NAME, <B40>, CHAR(3) NOT NULL
AREA_NAME, <SQ1>, CHAR(3) NOT NULL
TABLE_ID, <40>, UNS. SMALLINT NOT NULL
CHNG_MASTER_KEY, <Y>, CHAR(1) NOT NULL
DUP_MASTER_KEY, <Y>, CHAR(1) NOT NULL
PIPELINE, <Y>, CHAR(1) NOT NULL
.
.
.
___ 30 rows returned ___
=================================================
== DBSQLPR is completing with return code 0000 ==
== ==
== Statements Found: 00001 ==
== Statement Errors: 00000 ==
== Statement Warnings: 00000 ==
=================================================
Same	echo	of	options	and	query	text	as	in	wide	
Query	output	in	column	format
Blank	line	in	between	rows
DBSQLPR	execution	results
28 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output	– DSV	Output
Datacom	SQL	Utility
Options
//OPTIONS		DD	*			
AUTHID=SYSUSR					
SQLMODE=DATACOM			
WORKSPACE=128					
ROWLIMIT=1000					
DATASEPARATOR=;			
NOECHO												
NOTYPE												
NOPAGES											
NOFORMFEED								
PRTWIDTH=1500	
DIR_NAME; DBID;TABLE_NAME;AREA_NAME;TABLE_ID;CHNG_MASTER_KEY;DUP_MASTER_KEY;PIPELINE;
QAMUF4 ; 16;B03 ;SQ1 ; 3;Y ;Y ;Y ;
QAMUF4 ; 16;B38 ;SQ1 ; 38;Y ;Y ;Y ;
QAMUF4 ; 16;B40 ;SQ1 ; 40;Y ;Y ;Y ;
QAMUF4 ; 16;B41 ;SQ1 ; 41;Y ;Y ;Y ;
QAMUF4 ; 16;B42 ;SQ1 ; 42;Y ;Y ;Y ;
QAMUF4 ; 16;B46 ;SQ1 ; 46;Y ;Y ;Y ;
QAMUF4 ; 16;B49 ;SQ1 ; 49;Y ;Y ;Y ;
QAMUF4 ; 16;B55 ;SQ1 ; 55;Y ;Y ;Y ;
QAMUF4 ; 16;B56 ;SQ1 ; 56;Y ;Y ;Y ;
.
.
.
DIR_NAME;DBID;TABLE_NAME;AREA_NAME;TABLE_ID;CHNG_MASTER_KEY;DUP_MASTER_KEY;PIPELINE;
QAMUF4;16;B03;SQ1;3;Y;Y;Y;
QAMUF4;16;B38;SQ1;38;Y;Y;Y;
QAMUF4;16;B40;SQ1;40;Y;Y;Y;
QAMUF4;16;B41;SQ1;41;Y;Y;Y;
QAMUF4;16;B42;SQ1;42;Y;Y;Y;
QAMUF4;16;B46;SQ1;46;Y;Y;Y;
QAMUF4;16;B49;SQ1;49;Y;Y;Y;
QAMUF4;16;B55;SQ1;55;Y;Y;Y;
QAMUF4;16;B56;SQ1;56;Y;Y;Y;
QAMUF4;16;B58;SQ1;58;Y;Y;Y;
QAMUF4;16;B59;SQ1;59;Y;Y;Y;
QAMUF4;16;B61;SQ1;61;Y;Y;Y;
QAMUF4;16;B62;SQ1;62;Y;Y;Y;
QAMUF4;16;CAT;SQ1;37;Y;Y;Y;
QAMUF4;16;CLA;SQ1;39;Y;Y;Y;
.
.
Options
//OPTIONS		DD	*			
AUTHID=SYSUSR					
SQLMODE=DATACOM			
WORKSPACE=128					
ROWLIMIT=1000					
DATASEPARATOR=;			
NOECHO												
NOTYPE												
NOPAGES											
NOFORMFEED								
PRTWIDTH=1500	
SQUISH
29 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
DBSQLPR	Output	– DSV	Output	(Cont’d)
Easily	Uploaded	to	Spreadsheet
30 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Security	Considerations
§ SQL	and	Server	open	up	data	access	(and	update)
– This	openness	may	cause	some	security	concerns
§ Strongly	recommend	using	Datacom’s	external	security	interface	
– Path	level	security	controls	access	by	path	as	well	as	access	language	
§ Batch,	CICS,	Server,	Dataquery,	Other
§ Navigational	(RAAT,	SAAT),	SQL
§ Consider	starting	with	
– Read-only	databases	(SQL	INTENT=R)
– Read-only	server	regions
Using	SQL	and	Server
31 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Experiences
SQL	and	Server	can	be	
implemented	to	provide	
modern	access	without	
disruption	to	existing	
applications
Key	Topics
Datacom	Views	
DBSQLPR	Utility
SQL	Security
Findings
Datacom	Views	can	make	
legacy	data	SQL-able	without	
costly	data	row	restructuring
DBSQLPR	can	be	you	best	“new	
friend”
Make	sure	security	is	
considered	before	opening	up	
access
Summary
Part	II
32 ©	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
33 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Questions?
34 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Stay	connected	at	communities.ca.com
Thank	you.
@CAWORLD					#CAWORLD ©	2016	CA.	All	RIGHTS	RESERVED.35 @CAWORLD					#CAWORLD
Mainframe	and	Workload	Automation
For	more	information	on	Mainframe	and	Workload	Automation,		
please	visit:	http://cainc.to/9GQ2JI

More Related Content

What's hot

Modernizing the CA Datacom Data – SQL Access Part I
Modernizing the CA Datacom Data – SQL Access Part IModernizing the CA Datacom Data – SQL Access Part I
Modernizing the CA Datacom Data – SQL Access Part ICA Technologies
 
CA Gen Updates: Application Modernization and What's New
CA Gen Updates: Application Modernization and What's NewCA Gen Updates: Application Modernization and What's New
CA Gen Updates: Application Modernization and What's NewCA Technologies
 
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...CA Technologies
 
CA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and MaintenanceCA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and MaintenanceCA Technologies
 
Driving Down Costs for DB2 Management
Driving Down Costs for DB2 ManagementDriving Down Costs for DB2 Management
Driving Down Costs for DB2 ManagementCA Technologies
 
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...CA Technologies
 
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2CA Technologies
 
What’s new in CA Datacom
What’s new in CA DatacomWhat’s new in CA Datacom
What’s new in CA DatacomCA Technologies
 
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12CA Technologies
 
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...CA Technologies
 
Mainframe Application Modernization for Enterprise Developers
Mainframe Application Modernization for Enterprise DevelopersMainframe Application Modernization for Enterprise Developers
Mainframe Application Modernization for Enterprise DevelopersCA Technologies
 
Enabling a Hybrid Enterprise Application Launch Pad
Enabling a Hybrid Enterprise Application Launch PadEnabling a Hybrid Enterprise Application Launch Pad
Enabling a Hybrid Enterprise Application Launch PadCA Technologies
 
Pre-Con Ed: Using SQL to Access Your CA IDMS Databases
Pre-Con Ed: Using SQL to Access Your CA IDMS DatabasesPre-Con Ed: Using SQL to Access Your CA IDMS Databases
Pre-Con Ed: Using SQL to Access Your CA IDMS DatabasesCA Technologies
 
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your Organization
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your OrganizationPre-Con Ed: Interactive Session: Mainframe & DevOps in your Organization
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your OrganizationCA Technologies
 
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create ReportsPre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create ReportsCA Technologies
 
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...CA Technologies
 
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0CA Technologies
 
Advanced DBA – High Availability for Data
Advanced DBA – High Availability for DataAdvanced DBA – High Availability for Data
Advanced DBA – High Availability for DataCA Technologies
 
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...CA Technologies
 
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5CA Technologies
 

What's hot (20)

Modernizing the CA Datacom Data – SQL Access Part I
Modernizing the CA Datacom Data – SQL Access Part IModernizing the CA Datacom Data – SQL Access Part I
Modernizing the CA Datacom Data – SQL Access Part I
 
CA Gen Updates: Application Modernization and What's New
CA Gen Updates: Application Modernization and What's NewCA Gen Updates: Application Modernization and What's New
CA Gen Updates: Application Modernization and What's New
 
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...
Pre-Con Ed: What's New with CA DB2 Tools for Administration, Utilities, Perfo...
 
CA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and MaintenanceCA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and Maintenance
 
Driving Down Costs for DB2 Management
Driving Down Costs for DB2 ManagementDriving Down Costs for DB2 Management
Driving Down Costs for DB2 Management
 
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...
Pre-Con Ed: How to Get the Most out of Your DB2, DB2 Management, and Analytic...
 
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2
Pre-Con Ed: High Performance Masking and Test Data Generation for IMS and DB2
 
What’s new in CA Datacom
What’s new in CA DatacomWhat’s new in CA Datacom
What’s new in CA Datacom
 
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
 
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...
Pre-Con Ed: Optimizing System and Network Performance Part II: What's New in ...
 
Mainframe Application Modernization for Enterprise Developers
Mainframe Application Modernization for Enterprise DevelopersMainframe Application Modernization for Enterprise Developers
Mainframe Application Modernization for Enterprise Developers
 
Enabling a Hybrid Enterprise Application Launch Pad
Enabling a Hybrid Enterprise Application Launch PadEnabling a Hybrid Enterprise Application Launch Pad
Enabling a Hybrid Enterprise Application Launch Pad
 
Pre-Con Ed: Using SQL to Access Your CA IDMS Databases
Pre-Con Ed: Using SQL to Access Your CA IDMS DatabasesPre-Con Ed: Using SQL to Access Your CA IDMS Databases
Pre-Con Ed: Using SQL to Access Your CA IDMS Databases
 
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your Organization
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your OrganizationPre-Con Ed: Interactive Session: Mainframe & DevOps in your Organization
Pre-Con Ed: Interactive Session: Mainframe & DevOps in your Organization
 
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create ReportsPre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
 
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
 
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
Pre-Con Ed: Explore What’s New in CA Performance Management 3.0
 
Advanced DBA – High Availability for Data
Advanced DBA – High Availability for DataAdvanced DBA – High Availability for Data
Advanced DBA – High Availability for Data
 
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...
Pre-Con Ed: Best Practices: Enabling CA Workload Automation DE Artifacts to M...
 
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
Pre-Con Ed: Learn What’s New in CA Unified Infrastructure Management 8.5
 

Viewers also liked

Reducing TCO with Datacom Compression (Presspack)
Reducing TCO with Datacom Compression (Presspack)Reducing TCO with Datacom Compression (Presspack)
Reducing TCO with Datacom Compression (Presspack)CA Technologies
 
Application Tuning for CA Datacom Environments Part I
Application Tuning for CA Datacom Environments Part IApplication Tuning for CA Datacom Environments Part I
Application Tuning for CA Datacom Environments Part ICA Technologies
 
Tools for Monitoring and Tuning your CA IDMS/DC System
Tools for Monitoring and Tuning your CA IDMS/DC SystemTools for Monitoring and Tuning your CA IDMS/DC System
Tools for Monitoring and Tuning your CA IDMS/DC SystemCA Technologies
 
Advanced DBA – Performance Tuning for MUF Part I
Advanced DBA – Performance Tuning for MUF Part IAdvanced DBA – Performance Tuning for MUF Part I
Advanced DBA – Performance Tuning for MUF Part ICA Technologies
 
Introduction to Identity-as-a-Service and Secure Access to SaaS
Introduction to Identity-as-a-Service and Secure Access to SaaSIntroduction to Identity-as-a-Service and Secure Access to SaaS
Introduction to Identity-as-a-Service and Secure Access to SaaSCA Technologies
 
CA IDMS Deadlock Analysis
CA IDMS Deadlock AnalysisCA IDMS Deadlock Analysis
CA IDMS Deadlock AnalysisCA Technologies
 
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference Session
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference SessionWhat's New in CA Service Virtualization 8.0 - CA World Pre-Conference Session
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference SessionStefana Muller
 
CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...CA Technologies
 
CA IDMS Performance and Tuning
CA IDMS Performance and TuningCA IDMS Performance and Tuning
CA IDMS Performance and TuningCA Technologies
 
Securing Mobile Payments: Applying Lessons Learned in the Real World
Securing Mobile Payments: Applying Lessons Learned in the Real WorldSecuring Mobile Payments: Applying Lessons Learned in the Real World
Securing Mobile Payments: Applying Lessons Learned in the Real WorldCA Technologies
 
Convenience and Security for banking customers with CA Advanced Authentication
Convenience and Security for banking customers with CA Advanced AuthenticationConvenience and Security for banking customers with CA Advanced Authentication
Convenience and Security for banking customers with CA Advanced AuthenticationCA Technologies
 
CA IDMS Database Navigation
CA IDMS Database NavigationCA IDMS Database Navigation
CA IDMS Database NavigationCA Technologies
 
CA Agile Requirements Designer and Coverage 101 - Hands on Lab
CA Agile Requirements Designer and Coverage 101 - Hands on LabCA Agile Requirements Designer and Coverage 101 - Hands on Lab
CA Agile Requirements Designer and Coverage 101 - Hands on LabCA Technologies
 
TDM: Masking, Subsetting and generating Synthetic Data
TDM: Masking, Subsetting and generating Synthetic Data TDM: Masking, Subsetting and generating Synthetic Data
TDM: Masking, Subsetting and generating Synthetic Data CA Technologies
 
Auto Integrate – DevTest Automation and Integration Best Practices
Auto Integrate – DevTest Automation and Integration Best PracticesAuto Integrate – DevTest Automation and Integration Best Practices
Auto Integrate – DevTest Automation and Integration Best PracticesCA Technologies
 
Identity and Access Management Survey: Current Market Challenges and Solutions
Identity and Access Management Survey: Current Market Challenges and SolutionsIdentity and Access Management Survey: Current Market Challenges and Solutions
Identity and Access Management Survey: Current Market Challenges and SolutionsCA Technologies
 
Get Started with JMeter in 60 Minutes
Get Started with JMeter in 60 MinutesGet Started with JMeter in 60 Minutes
Get Started with JMeter in 60 MinutesCA Technologies
 
Digital transformation in financial services through trusted digital relation...
Digital transformation in financial services through trusted digital relation...Digital transformation in financial services through trusted digital relation...
Digital transformation in financial services through trusted digital relation...CA Technologies
 

Viewers also liked (18)

Reducing TCO with Datacom Compression (Presspack)
Reducing TCO with Datacom Compression (Presspack)Reducing TCO with Datacom Compression (Presspack)
Reducing TCO with Datacom Compression (Presspack)
 
Application Tuning for CA Datacom Environments Part I
Application Tuning for CA Datacom Environments Part IApplication Tuning for CA Datacom Environments Part I
Application Tuning for CA Datacom Environments Part I
 
Tools for Monitoring and Tuning your CA IDMS/DC System
Tools for Monitoring and Tuning your CA IDMS/DC SystemTools for Monitoring and Tuning your CA IDMS/DC System
Tools for Monitoring and Tuning your CA IDMS/DC System
 
Advanced DBA – Performance Tuning for MUF Part I
Advanced DBA – Performance Tuning for MUF Part IAdvanced DBA – Performance Tuning for MUF Part I
Advanced DBA – Performance Tuning for MUF Part I
 
Introduction to Identity-as-a-Service and Secure Access to SaaS
Introduction to Identity-as-a-Service and Secure Access to SaaSIntroduction to Identity-as-a-Service and Secure Access to SaaS
Introduction to Identity-as-a-Service and Secure Access to SaaS
 
CA IDMS Deadlock Analysis
CA IDMS Deadlock AnalysisCA IDMS Deadlock Analysis
CA IDMS Deadlock Analysis
 
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference Session
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference SessionWhat's New in CA Service Virtualization 8.0 - CA World Pre-Conference Session
What's New in CA Service Virtualization 8.0 - CA World Pre-Conference Session
 
CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...
 
CA IDMS Performance and Tuning
CA IDMS Performance and TuningCA IDMS Performance and Tuning
CA IDMS Performance and Tuning
 
Securing Mobile Payments: Applying Lessons Learned in the Real World
Securing Mobile Payments: Applying Lessons Learned in the Real WorldSecuring Mobile Payments: Applying Lessons Learned in the Real World
Securing Mobile Payments: Applying Lessons Learned in the Real World
 
Convenience and Security for banking customers with CA Advanced Authentication
Convenience and Security for banking customers with CA Advanced AuthenticationConvenience and Security for banking customers with CA Advanced Authentication
Convenience and Security for banking customers with CA Advanced Authentication
 
CA IDMS Database Navigation
CA IDMS Database NavigationCA IDMS Database Navigation
CA IDMS Database Navigation
 
CA Agile Requirements Designer and Coverage 101 - Hands on Lab
CA Agile Requirements Designer and Coverage 101 - Hands on LabCA Agile Requirements Designer and Coverage 101 - Hands on Lab
CA Agile Requirements Designer and Coverage 101 - Hands on Lab
 
TDM: Masking, Subsetting and generating Synthetic Data
TDM: Masking, Subsetting and generating Synthetic Data TDM: Masking, Subsetting and generating Synthetic Data
TDM: Masking, Subsetting and generating Synthetic Data
 
Auto Integrate – DevTest Automation and Integration Best Practices
Auto Integrate – DevTest Automation and Integration Best PracticesAuto Integrate – DevTest Automation and Integration Best Practices
Auto Integrate – DevTest Automation and Integration Best Practices
 
Identity and Access Management Survey: Current Market Challenges and Solutions
Identity and Access Management Survey: Current Market Challenges and SolutionsIdentity and Access Management Survey: Current Market Challenges and Solutions
Identity and Access Management Survey: Current Market Challenges and Solutions
 
Get Started with JMeter in 60 Minutes
Get Started with JMeter in 60 MinutesGet Started with JMeter in 60 Minutes
Get Started with JMeter in 60 Minutes
 
Digital transformation in financial services through trusted digital relation...
Digital transformation in financial services through trusted digital relation...Digital transformation in financial services through trusted digital relation...
Digital transformation in financial services through trusted digital relation...
 

Similar to Modernizing the CA Datacom Data – SQL Access Part II

Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...CA Technologies
 
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...CA Technologies
 
CA IDMS™ 19.0 SQL Enhancements for Modernization
CA IDMS™ 19.0 SQL Enhancements for ModernizationCA IDMS™ 19.0 SQL Enhancements for Modernization
CA IDMS™ 19.0 SQL Enhancements for ModernizationCA Technologies
 
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...CA Technologies
 
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing ToolEclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing ToolCA Technologies
 
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)CA Technologies
 
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System AgentPre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System AgentCA Technologies
 
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12CA Technologies
 
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...
Complements Will Get You Everywhere:  How Do CA Workload Automation iDash and...Complements Will Get You Everywhere:  How Do CA Workload Automation iDash and...
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...CA Technologies
 
Case Study: Jack Henry & Associates Automates Application Deployments Through...
Case Study: Jack Henry & Associates Automates Application Deployments Through...Case Study: Jack Henry & Associates Automates Application Deployments Through...
Case Study: Jack Henry & Associates Automates Application Deployments Through...CA Technologies
 
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...CA Technologies
 
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization NightmaresIt's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization NightmaresCA Technologies
 
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal resultsPre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal resultsCA Technologies
 
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...CA Technologies
 
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsHands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsCA Technologies
 
Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps CA Technologies
 
Pre-Con Ed: Building Basic Workflows in CA Service Management
Pre-Con Ed: Building Basic Workflows in CA Service ManagementPre-Con Ed: Building Basic Workflows in CA Service Management
Pre-Con Ed: Building Basic Workflows in CA Service ManagementCA Technologies
 
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...CA Technologies
 
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...CA Technologies
 
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...CA Technologies
 

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

Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
Pre-Con Ed: Beyond the AE CLI - Leveraging CA Workload Automation AE Web Serv...
 
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
Efficiently Manage SLAs using Predictive Analytics with CA Workload Automatio...
 
CA IDMS™ 19.0 SQL Enhancements for Modernization
CA IDMS™ 19.0 SQL Enhancements for ModernizationCA IDMS™ 19.0 SQL Enhancements for Modernization
CA IDMS™ 19.0 SQL Enhancements for Modernization
 
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
 
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing ToolEclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
 
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
Maximizing Your CA Datacom® Investment for the New Application Economy (Part 1)
 
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System AgentPre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
 
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
Benefits of Upgrading to CA Workload Automation CA 7® Edition r12
 
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...
Complements Will Get You Everywhere:  How Do CA Workload Automation iDash and...Complements Will Get You Everywhere:  How Do CA Workload Automation iDash and...
Complements Will Get You Everywhere: How Do CA Workload Automation iDash and...
 
Case Study: Jack Henry & Associates Automates Application Deployments Through...
Case Study: Jack Henry & Associates Automates Application Deployments Through...Case Study: Jack Henry & Associates Automates Application Deployments Through...
Case Study: Jack Henry & Associates Automates Application Deployments Through...
 
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
Case Study: EchoStar Transforms Complex Software Releases to Customer Network...
 
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization NightmaresIt's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
It's Not a Dream—Conquer Chaos for Your DB2® for z/OS® Optimization Nightmares
 
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal resultsPre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
 
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Applicat...
 
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsHands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
 
Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps
 
Pre-Con Ed: Building Basic Workflows in CA Service Management
Pre-Con Ed: Building Basic Workflows in CA Service ManagementPre-Con Ed: Building Basic Workflows in CA Service Management
Pre-Con Ed: Building Basic Workflows in CA Service Management
 
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...
Case Study: Decide. Commit. Succeed. How Beachbody Moved to a Next-Generation...
 
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
 
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
 

More from CA Technologies

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

More from CA Technologies (20)

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

Recently uploaded

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 

Recently uploaded (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 

Modernizing the CA Datacom Data – SQL Access Part II