Intro to Embedded SQL Programming for ILE RPG Developers

Size: px
Start display at page:

Download "Intro to Embedded SQL Programming for ILE RPG Developers"

Transcription

1 Intro to Embedded SQL Programming for ILE RPG Developers Dan Cruikshank DB2 for i Center of Excellence 1

2 Agenda Reasons for using Embedded SQL Getting started with Embedded SQL Using Host Variables Using Indicator Variables Using a cursor Reading/writing more than 1 row at a time Updating and deleting multiple rows Best practices 2

3 Reasons for Using Embedded SQL Leverage SQL set processing when processing large amounts of data Automatic input/output blocking, searched updates, etc. Take advantage of HLL programming constructs not available to DB2 SQL Procedure Language (PSM) Blocked INSERT support via externally described data structures Built-in functions not available in DB2 To take advantage of the full range of performance optimizations from the Query Optimizer 3

4 Getting Started with Embedded SQL Licensed program IBM DB2 Query Manager and SQL Development Kit for i5/os. Compilers for the host languages you want to use. 4

5 Rules for Embedding SQL in HLL programs Each SQL statement must begin with EXEC SQL and end with a semicolon (;) The EXEC SQL keywords must be on the same line The SQL statement can be on the same line or multiple lines Only 1 SQL statement for each EXEC SQL group Refer to the Embedded SQL Programming manual for other language specific restrictions/conventions 5

6 Types of SQL Embedded SQL is a general term for SQL in an application program and can be either Static or Dynamic Static SQL validated during compilation Dynamic SQL validated during preparation Both produce plans that can be shared and reused Both Static and Dynamic can be used in the same program SQL EXEC SELECT COUNT(*) INTO SQL EXEC EXECUTE IMMEDIATE DELETE SQL implemented in PSM is generally Static but can also be Dynamic 6

7 Advantages of Dynamic SQL Offers a high degree of application flexibility Can create/build SQL statement based on parameters received from: Interactive user interface List selection techniques Application control file RPG Open Access Two types: Fixed list (does not require a descriptor) Varying List (requires a descriptor) 7

8 Using Host Variables Host Variable Single field commonly used to: Host Structure specify a value in the predicate of a search condition replace a literal value in an expression Provide a target to receive a value from an INTO clause A group of host variables commonly used to: Specify values for VALUES clause (INSERT), SET clause (UPDATE) Provide a target to receive multiple values from a FETCH or SELECT INTO Host Structure Array A multiple occurrence data structure or array Commonly used for blocked FETCH and INSERT statements Currently not supported in SQL PL 8

9 Assigning Host Variables SQL values are assigned to host variables during the running of FETCH, SELECT INTO, SET, and VALUES INTO statements. from host variables during the running of INSERT, UPDATE, and CALL statements. Use soft-coding techniques to avoid data conversion or data mapping errors For instance: SQL Descriptors or SQLDA Externally described data structures RPG Template support 9

10 Host Structure Array Soft-Coding Techniques RPG Example FSQLVIEW IF E DISK F RENAME(SQLVIEWR:INPRECORD3) F TEMPLATE DR3 DS LIKEREC(INPRECORD3) D result_set... D DS OCCURS(10000) D CITY LIKE(R3.CITY) D STATE LIKE(R3.STATE) D ZIPCODE LIKE(R3.ZIPCODE) TEMPLATE added in

11 What are they? An SQL descriptor area is used to contain information about a dynamic SQL statement A set of variables are used to communicate this information between SQL and your program SQL Descriptor Areas Think externally described data structure with a variable file name The meaning of the information in the descriptor area depends on the type of statement SELECT or non-select (UPDATE, INSERT, etc.) Where could they be used? Eliminate DDS Select/Omit Logical Files or SQL Sparse Indexes Replace OPNQRYF or embedded RUNQRY commands Create Generic SQL Open Access Handlers Provide single stored procedure for all data access to/from a view Minimize SQL coding 11

12 Static Vs Dynamic Host Structures Static SQL Host Array One SQL Service PGM per format Dynamic SQL Descriptors One SQL Service PGM 12

13 CALL PROC1 ( ABC, X127B89 ); Variable WHERE Clause Construct WHERE clause ALLOCATE DESCRIPTOR PREPARE and SET DESCRIPTOR DECLARE and OPEN CURSOR SELECT * FROM VIEW WHERE Company =? And Store =? Size of descriptor based on number of parameter markers (?) Load descriptor with column attributes and variables Result set based on parameter values Descriptor Size Max Nbr of Vars 96 bytes 2 2 Type Length Name Data CHAR 3 Company ABC Actual nbr of vars VARCHAR 15 Store X127B89 Company Store ABC X127B89 1 A ABC X127B89 2 B ABC X127B89 3 C 13

14 Using Indicator Variables for Input Operations Indicator Variable Further defines the contents of a host variable Half word (2 byte) integer type Indicator value used to denote nulls, data mapping errors or string truncation Always test the indicator variable first HLL C COBOL Indicator Variable Definition short PIC S9(4) COMP-4 or PIC S9(4) BINARY RPG 5i 0 or 4b 0 Example of testing for NULL EXEC SQL SELECT COUNT(*), AVG(SALARY) INTO :vcount, :vsalary:indvar FROM EMPLOYEE_VIEW WHERE EDLEVEL < 18; If INDVAR < 0 then vsalary is not usable 14

15 Input Indicator Array An array of indicator variables Used to support host structures The number of indicators must equal the number of columns in the host structure For host arrays there needs to be an equivalent number of indicator arrays RPG Host Array Example DSAL_REC DS D MIN_SAL 6P 2 D AVG_SAL 6P 2 D MAX_SAL 6P 2 DSAL_IND_ARY DS D SAL_IND OCCURS(10) OCCURS(10) 4B 0 DIM(3) Equal to number of structures Equal to number of columns 15

16 Indicator Values for INSERT and UPDATE Normal indicators If zero then use host variable value If negative 1 then set to NULL Example of setting a column to NULL PHONEIND = -1; EXEC SQL UPDATE EMPLOYEE_VIEW SET PHONENO=:NEWPHONE:PHONEIND WHERE EMPNO = :EMPID; After completion of UPDATE PHONENO will be NULL 16

17 Extended Indicator Values for INSERT and UPDATE Extended indicators Provides more flexibility Single SQL statement can be used for multiple INSERT and UPDATE scenarios Besides nulls, columns can be set to defaults or ignored completely The following table describes the possible indicator values along with their intended purpose Indicator Value Purpose 0 Use host variable value -1, -2, -3, -4 or -6 Set column to NULL -5 Use default value for column -7 For UPDATE ignore, for INSERT use default 17

18 Extended Indicators UPDATE Scenarios Multiple users execute a common table maintenance program Each user updates different columns within the table The maintenance program calls a common service program Each instance of the maintenance program passes a record structure containing the column update values and an indicator array The service program issues a single update to the SQL view The following is a diagram depicting the above scenario: T H R E A D S ADDRLINE3 = p_addrline3; Ind_Ary(3) = 0; Call Srv_Pgm(Upd_View:Ind_Ary); ADDRLINE2 = p_addrline2; Ind_Ary(2) = 0; Call Srv_Pgm(Upd_View:Ind_Ary); D Upd_View LIKEDS(Upd_Record) D Ind_Ary 5i 0 DIM(3) INZ(-7) ADDRLINE1 = p_addrline1; Ind_Ary(1) = 0; Call Srv_Pgm(Upd_View:Ind_Ary); Reset Ind_Ary; CALL Service Pgm D Srv_pgm PI N D HV LIKEDS(Upd_Record) D Ind_Ary 5i 0 DIM(3) D Ind_Ary_Ptr S * D Ind_Ary_DS DS BASED(Ind_Ary_Ptr) D Ind_Ary_1 5i 0 D Ind_Ary_2 5i 0 D Ind_Ary_3 5i 0 EXEC SQL UPDATE EMPLOYEE_ADDRESS_VIEW SET ADDRLINE1 = :HV.ADDRLINE1:Ind_Ary_1, ADDRLINE2 = :HV.ADDRLINE2:Ind_Ary_2, ADDRLINE3 = :HV.ADDRLINE3:Ind_Ary_3, WHERE EMPNO = :HV.EMPNO; S R V P R O G R A M 18

19 Using an SQL Cursor SQL Statements used with a Cursor DECLARE an SQL cursor OPEN a declared SQL cursor FETCH from an open SQL cursor CLOSE an open SQL cursor 19

20 DECLARE CURSOR Input only or Update By default, all columns may be updated or deleted FOR UPDATE OF - lists the columns that are to be updated only columns NOT included in ORDER BY are eligible FOR READ ONLY - specifies no updating/deleting allowed Considerations: FOR READ ONLY better concurrency and documentation FOR UPDATE OF - security; better throughput and documentation With Hold clause useful with commitment control Example: Default cursors are closed with commit/rollback commands With Hold keeps cursor open /FREE EXEC SQL DECLARE empcsr CURSOR WITH HOLD FOR SELECT empno, lastname, SALARY FROM EMPLOYEE_VIEW WHERE workdept = :dept FOR UPDATE OF SALARY; 20

21 DECLARE CURSOR Returning the result set WITH RETURN allows the result set to be accessed by a calling program Very useful in client/server or web applications Available to RPG in release 7.1 Default is return to program WITH RETURN TO CLIENT allows nested programs to return result sets to client program Example /FREE EXEC SQL DECLARE empcsr CURSOR WITH RETURN TO CLIENT SELECT empno, lastname, SALARY FROM EMPLOYEE_VIEW WHERE workdept = :dept FOR READ ONLY; /END-FREE 21

22 DECLARE CURSOR using extended indicators Allows extended indicators to be used with positioned updates Overrides SQL pre-compiler option Best practice is to tell DB2 everything you know Example /FREE EXEC SQL DECLARE empcsr CURSOR WITH HOLD WITH EXTENDED INDICATORS FOR SELECT empno, lastname, SALARY FROM EMPLOYEE WHERE workdept = :dept FOR UPDATE OF SALARY; 22

23 OPEN a Declared SQL Cursor Executes the SELECT Statement For a Declared Cursor Validates SQL and allocates required resources Successful Open places the file cursor before the first row of the result table Cursor must be closed before it can be opened Example /Free EXEC SQL OPEN empcsr; 23

24 FETCH From an Open SQL Cursor Two Functions Position the cursor at the start of the result set EXEC SQL FETCH FIRST FROM empcsr; INTO Bring rows/records into the program EXEC SQL FETCH NEXT FROM empcsr INTO :number, :name, :pay; Note: FETCH NEXT after OPEN is same as FETCH FIRST 24

25 Multiple Row FETCH RPG Multiple Occurrence Data Structure or Array Clause on FETCH FOR n ROWS (n = max number of rows to be returned) Can be host variable Specify number of rows to be retrieved to fill the structure Example D Result_set DS OCCURS(10) D empnbr LIKE(empno) D firstname LIKE(firstnme) D dpt LIKE(workdept) D v_row_count S 31P 0 /FREE EXEC SQL FETCH FROM Employee_Cursor FOR 10 ROWS INTO Result_set; EXEC SQL GET DIAGNOSTICS :v_row_count = ROW_COUNT; /END-FREE Number of rows can be 1 to maximum occurrence of data structure GET DIAGNOSTIC returns actual number of rows fetched 25

26 CLOSE an Open SQL Cursor Closes the cursor DB2 for i will attempt to perform a soft close Open Data Path (ODP) is reused Cursor must be opened in order to be closed DB2 for i hard closes cursors for the following reasons: job end activation group ends Precompiler option CLOSQLCSR is not properly set commit or rollback without a 'with hold' clause error handling... Best practice - close the cursor when finished with it Example /EXEC SQL CLOSE empcsr; 26

27 Accessing Result Sets ASSOCIATE LOCATORS and ALLOCATE CURSOR (7.1) Allows a result set created within a stored procedure to be returned to the calling program Example Pointers D RS_LOC1 S SQLTYPE(RESULT_SET_LOCATOR) EXEC SQL ASSOCIATE LOCATORS (:RS_loc1) WITH PROCEDURE P1; EXEC SQL ALLOCATE C1 CURSOR FOR RESULT SET :RS_loc1; The data structure used for passing row data is based on a pointer The procedure populates the data structure and the results are available upon return to the calling program Example D ViewHostArray... D DS OCCURS(29000) D LIKEREC(SQLRESULT) D BASED(HostArrayPtr) 27

28 ASSOCIATE LOCATORS and ALLOCATE CURSOR (7.1) Stored Procedure Example CREATE PROCEDURE RS1_PROC ( IN P_WDEPT CHAR(3)) RESULT SETS 1 DECLARE RS1_PROC_C1 CURSORFOR SELECT * FROM VEMPDPT3 WHERE WORKDEPT = p_wdept; OPEN RS1_PROC_C1; HLL Program Example EXEC SQL CALL RS1_PROC (E11); EXEC SQL ASSOCIATE RESULT SET LOCATORS (:RS_Loc1)WITH PROCEDURE RS1_PROC; EXEC SQL ALLOCATE C1 CURSOR FOR RESULT SET :RS_Loc1; EXEC SQL FETCH NEXT FROM C1 FOR n ROWS INTO:RS_Array; EXEC SQL SET RESULT SETS ARRAY :RS_Array FOR n ROWS; 28

29 Consuming Result Set Program Flow Simplifies coding effort Results Single procedure can be used by multiple applications Allows exploitation of what SQL does best Reusable cursors Blocked FETCH Advanced join technology 1 cursor versus multiple open files 1 IO versus multiple file reads 29

30 Blocked INSERT Multiple elements from a host structure are inserted into a table Program variable may be used to set the number of records to be inserted Executes as if n INSERT statements had been issued but with improved performance Example OCCURS(10) D empnbr LIKE(empno) D firstname LIKE(firstnme) D dpt LIKE(workdept) EXEC SQL INSERT INTO Employee_view 10 ROWS VALUES :Result_set 30

31 Updating and/or Deleting Multiple Rows Searched UPDATE/DELETE All rows selected are updated in a single SQL statement Eliminates need for cursor and For loop Can be used with extended indicators Examples: EXEC SQL DELETE EMPLOYEE_VIEW WHERE SALARY + BONUS + COMM = 0; EXEC SQL UPDATE EMPLOYEE_VIEW SET BONUS = 1000 WHERE WORKDEPT = 'D11'; 31

32 Best Practices Use SQL Views - easier to soft code, mask complexity Use data access modules HLL - ILE service programs SQL - PROGRAM TYPE SUB Use NULL indicator support Use dynamic SQL Parameter Markers, Descriptors Use pre-compiler opiton CLOSQLCSR(*ENDACTGRP) 32

33 IBM Education Roadmap for DB2 & SQL DB2 for i Advanced Programming Data Modeling Best Practices DB2 for i Architecture and Types of SQL Data Cenric Development DDL and DML basics Embedded SQL within an HLL program use of host variables and indicator variables Thinking in Sets and Processing Data Sets Error Detection Dynamic SQL Debugging Tools using the debugger, running SQL Scripts Advanced Table and Index Definition Sequence and Variable Objects Joins, views, subqueries, common table expressions Instead of Triggers, Online Analytical Processing (OLAP) SQL Procedures, User Defined Functions, and Triggers And more Labs SQL only via System I Navigator SQL and Embedded SQL via inav and RDP and IBM Data Studio 33

34 34

ERserver. DB2 Universal Database for iseries SQL Programming with Host Languages. iseries. Version 5

ERserver. DB2 Universal Database for iseries SQL Programming with Host Languages. iseries. Version 5 ERserver iseries DB2 Universal Database for iseries SQL Programming with Host Languages Version 5 ERserver iseries DB2 Universal Database for iseries SQL Programming with Host Languages Version 5 Copyright

More information

Using SQL in RPG Programs: An Introduction

Using SQL in RPG Programs: An Introduction Using SQL in RPG Programs: An Introduction OCEAN Technical Conference Catch the Wave Susan M. Gantner susan.gantner @ partner400.com www.partner400.com Your partner in AS/400 and iseries Education Copyright

More information

Database DB2 Universal Database for iseries Embedded SQL programming

Database DB2 Universal Database for iseries Embedded SQL programming System i Database DB2 Universal Database for iseries Embedded SQL programming Version 5 Release 4 System i Database DB2 Universal Database for iseries Embedded SQL programming Version 5 Release 4 Note

More information

Embedding SQL in High Level Language Programs

Embedding SQL in High Level Language Programs Embedding SQL in High Level Language Programs Alison Butterill IBM i Product Manager Power Systems Agenda Introduction Basic SQL within a HLL program Processing multiple records Error detection Dynamic

More information

Advanced SQL. Jim Mason. www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353. jemason@ebt-now.

Advanced SQL. Jim Mason. www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353. jemason@ebt-now. Advanced SQL Jim Mason jemason@ebt-now.com www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353 What We ll Cover SQL and Database environments Managing Database

More information

ERserver. Embedded SQL programming. iseries. Version 5 Release 3

ERserver. Embedded SQL programming. iseries. Version 5 Release 3 ERserer iseries Embedded SQL programming Version 5 Release 3 ERserer iseries Embedded SQL programming Version 5 Release 3 Note Before using this information and the product it supports, be sure to read

More information

ERserver. iseries. DB2 Universal Database for iseries SQL Programming with Host Languages

ERserver. iseries. DB2 Universal Database for iseries SQL Programming with Host Languages ERserver iseries DB2 Universal Database for iseries SQL Programming with Host Languages 2 ERserver iseries DB2 Universal Database for iseries SQL Programming with Host Languages 2 Copyright International

More information

IBM Power Systems Software. The ABCs of Coding High Performance SQL Apps DB2 for IBM i. Presented by Jarek Miszczyk IBM Rochester, ISV Enablement

IBM Power Systems Software. The ABCs of Coding High Performance SQL Apps DB2 for IBM i. Presented by Jarek Miszczyk IBM Rochester, ISV Enablement The ABCs of Coding High Performance SQL Apps DB2 for IBM i Presented by Jarek Miszczyk IBM Rochester, ISV Enablement 2008 IBM Corporation SQL Interfaces ODBC / JDBC / ADO / DRDA / XDA Network Host Server

More information

Embedded SQL programming

Embedded SQL programming Embedded SQL programming http://www-136.ibm.com/developerworks/db2 Table of contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Before

More information

Darshan Institute of Engineering & Technology PL_SQL

Darshan Institute of Engineering & Technology PL_SQL Explain the advantages of PL/SQL. Advantages of PL/SQL Block structure: PL/SQL consist of block of code, which can be nested within each other. Each block forms a unit of a task or a logical module. PL/SQL

More information

Introduction to SQL and database objects

Introduction to SQL and database objects Introduction to SQL and database objects IBM Information Management Cloud Computing Center of Competence IBM Canada Labs 1 2011 IBM Corporation Agenda Overview Database objects SQL introduction The SELECT

More information

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Chapter 9, More SQL: Assertions, Views, and Programming Techniques

Chapter 9, More SQL: Assertions, Views, and Programming Techniques Chapter 9, More SQL: Assertions, Views, and Programming Techniques 9.2 Embedded SQL SQL statements can be embedded in a general purpose programming language, such as C, C++, COBOL,... 9.2.1 Retrieving

More information

14 Triggers / Embedded SQL

14 Triggers / Embedded SQL 14 Triggers / Embedded SQL COMS20700 Databases Dr. Essam Ghadafi TRIGGERS A trigger is a procedure that is executed automatically whenever a specific event occurs. You can use triggers to enforce constraints

More information

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach TRAINING & REFERENCE murach's SQL Server 2012 for developers Bryan Syverson Joel Murach Mike Murach & Associates, Inc. 4340 N. Knoll Ave. Fresno, CA 93722 www.murach.com murachbooks@murach.com Expanded

More information

MOC 20461C: Querying Microsoft SQL Server. Course Overview

MOC 20461C: Querying Microsoft SQL Server. Course Overview MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server

More information

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com Essential SQL 2 Essential SQL This bonus chapter is provided with Mastering Delphi 6. It is a basic introduction to SQL to accompany Chapter 14, Client/Server Programming. RDBMS packages are generally

More information

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT INTRODUCTION: Course Objectives I-2 About PL/SQL I-3 PL/SQL Environment I-4 Benefits of PL/SQL I-5 Benefits of Subprograms I-10 Invoking Stored Procedures

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the

More information

Instant SQL Programming

Instant SQL Programming Instant SQL Programming Joe Celko Wrox Press Ltd. INSTANT Table of Contents Introduction 1 What Can SQL Do for Me? 2 Who Should Use This Book? 2 How To Use This Book 3 What You Should Know 3 Conventions

More information

DB2 Developers Guide to Optimum SQL Performance

DB2 Developers Guide to Optimum SQL Performance DB2 Developers Guide to Optimum SQL Performance Réunion du Guide DB2 pour z/os France Lundi 18 mars 2013 Tour Euro Plaza, Paris-La Défense Tom Beavin Silicon Valley Lab Email: beavin@us.ibm.com 2012 IBM

More information

References & SQL Tips

References & SQL Tips References & SQL Tips Speaker: David Larsen (dlarsen@lagoonpark.com), Software Engineer at Lagoon Corporation Topic: SQL Tips and Techniques on the IBM i Date: Wednesday, January 14th, 2015 Time: 11:00

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions, tools used

More information

Introduction to PL/SQL Programming

Introduction to PL/SQL Programming Introduction to PL/SQL Programming Introduction to PL/SQL Programming i-ii Introduction to PL/SQL Programming 1997-2001 Technology Framers, LLC Introduction to PL/SQL Programming This publication is protected

More information

Handling PL/SQL Errors

Handling PL/SQL Errors Handling PL/SQL Errors In PL/SQL, a warning or error condition is called an exception. Exceptions can be internally defined (by the run-time system) or user defined. Examples of internally defined exceptions

More information

InterBase 6. Embedded SQL Guide. Borland/INPRISE. 100 Enterprise Way, Scotts Valley, CA 95066 http://www.interbase.com

InterBase 6. Embedded SQL Guide. Borland/INPRISE. 100 Enterprise Way, Scotts Valley, CA 95066 http://www.interbase.com InterBase 6 Embedded SQL Guide Borland/INPRISE 100 Enterprise Way, Scotts Valley, CA 95066 http://www.interbase.com Inprise/Borland may have patents and/or pending patent applications covering subject

More information

Firebird. Embedded SQL Guide for RM/Cobol

Firebird. Embedded SQL Guide for RM/Cobol Firebird Embedded SQL Guide for RM/Cobol Embedded SQL Guide for RM/Cobol 3 Table of Contents 1. Program Structure...6 1.1. General...6 1.2. Reading this Guide...6 1.3. Definition of Terms...6 1.4. Declaring

More information

Maintaining Stored Procedures in Database Application

Maintaining Stored Procedures in Database Application Maintaining Stored Procedures in Database Application Santosh Kakade 1, Rohan Thakare 2, Bhushan Sapare 3, Dr. B.B. Meshram 4 Computer Department VJTI, Mumbai 1,2,3. Head of Computer Department VJTI, Mumbai

More information

Database Programming with PL/SQL: Learning Objectives

Database Programming with PL/SQL: Learning Objectives Database Programming with PL/SQL: Learning Objectives This course covers PL/SQL, a procedural language extension to SQL. Through an innovative project-based approach, students learn procedural logic constructs

More information

Course Objectives. Database Applications. External applications. Course Objectives Interfacing. Mixing two worlds. Two approaches

Course Objectives. Database Applications. External applications. Course Objectives Interfacing. Mixing two worlds. Two approaches Course Objectives Database Applications Design Construction SQL/PSM Embedded SQL JDBC Applications Usage Course Objectives Interfacing When the course is through, you should Know how to connect to and

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to

More information

Course ID#: 1401-801-14-W 35 Hrs. Course Content

Course ID#: 1401-801-14-W 35 Hrs. Course Content Course Content Course Description: This 5-day instructor led course provides students with the technical skills required to write basic Transact- SQL queries for Microsoft SQL Server 2014. This course

More information

An Introduction to PL/SQL. Mehdi Azarmi

An Introduction to PL/SQL. Mehdi Azarmi 1 An Introduction to PL/SQL Mehdi Azarmi 2 Introduction PL/SQL is Oracle's procedural language extension to SQL, the non-procedural relational database language. Combines power and flexibility of SQL (4GL)

More information

Oracle SQL. Course Summary. Duration. Objectives

Oracle SQL. Course Summary. Duration. Objectives Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data

More information

Querying Microsoft SQL Server 20461C; 5 days

Querying Microsoft SQL Server 20461C; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Querying Microsoft SQL Server 20461C; 5 days Course Description This 5-day

More information

NEMUG Feb 2008. Create Your Own Web Data Mart with MySQL

NEMUG Feb 2008. Create Your Own Web Data Mart with MySQL NEMUG Feb 2008 Create Your Own Web Data Mart with MySQL Jim Mason jemason@ebt-now.com ebt-now copyright 2008, all rights reserved What We ll Cover System i Web Reporting solutions Enterprise Open-source

More information

SQL. Short introduction

SQL. Short introduction SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.

More information

Mimer SQL. Programmer s Manual. Version 8.2 Copyright 2000 Mimer Information Technology AB

Mimer SQL. Programmer s Manual. Version 8.2 Copyright 2000 Mimer Information Technology AB Mimer SQL Version 8.2 Copyright 2000 Mimer Information Technology AB Second revised edition December, 2000 Copyright 2000 Mimer Information Technology AB. Published by Mimer Information Technology AB,

More information

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to: D61830GC30 for Developers Summary Duration Vendor Audience 5 Days Oracle Database Administrators, Developers, Web Administrators Level Technology Professional Oracle 5.6 Delivery Method Instructor-led

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

SQL. Agenda. Where you want to go Today for database access. What is SQL

SQL. Agenda. Where you want to go Today for database access. What is SQL SQL Where you want to go Today for database access What is SQL Agenda AS/400 database query tools AS/400 SQL/Query products SQL Execution SQL Statements / Examples Subqueries Embedded SQL / Examples Advanced

More information

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours Área de formação Plataforma e Tecnologias de Informação Querying Microsoft SQL Introduction This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL

More information

ADVANCED 1 SQL PROGRAMMING TECHNIQUES

ADVANCED 1 SQL PROGRAMMING TECHNIQUES ADVANED 1 SQL PROGRAMMING TEHNIQUES hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN Objectives You will learn: Performance factors related to SQL clauses Isolation level with specified SQL clauses Selecting

More information

A basic create statement for a simple student table would look like the following.

A basic create statement for a simple student table would look like the following. Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));

More information

www.gr8ambitionz.com

www.gr8ambitionz.com Data Base Management Systems (DBMS) Study Material (Objective Type questions with Answers) Shared by Akhil Arora Powered by www. your A to Z competitive exam guide Database Objective type questions Q.1

More information

PL/SQL Overview. Basic Structure and Syntax of PL/SQL

PL/SQL Overview. Basic Structure and Syntax of PL/SQL PL/SQL Overview PL/SQL is Procedural Language extension to SQL. It is loosely based on Ada (a variant of Pascal developed for the US Dept of Defense). PL/SQL was first released in ١٩٩٢ as an optional extension

More information

SQL Basics for RPG Developers

SQL Basics for RPG Developers SQL Basics for RPG Developers Chris Adair Manager of Application Development National Envelope Vice President/Treasurer Metro Midrange Systems Assoc. SQL HISTORY Structured English Query Language (SEQUEL)

More information

Oracle 10g PL/SQL Training

Oracle 10g PL/SQL Training Oracle 10g PL/SQL Training Course Number: ORCL PS01 Length: 3 Day(s) Certification Exam This course will help you prepare for the following exams: 1Z0 042 1Z0 043 Course Overview PL/SQL is Oracle's Procedural

More information

CA IDMS SQL. Programming Guide. Release 18.5.00

CA IDMS SQL. Programming Guide. Release 18.5.00 CA IDMS SQL Programming Guide Release 18500 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

MOC 20461 QUERYING MICROSOFT SQL SERVER

MOC 20461 QUERYING MICROSOFT SQL SERVER ONE STEP AHEAD. MOC 20461 QUERYING MICROSOFT SQL SERVER Length: 5 days Level: 300 Technology: Microsoft SQL Server Delivery Method: Instructor-led (classroom) COURSE OUTLINE Module 1: Introduction to Microsoft

More information

SQL Query Performance Tuning: Tips and Best Practices

SQL Query Performance Tuning: Tips and Best Practices SQL Query Performance Tuning: Tips and Best Practices Pravasini Priyanka, Principal Test Engineer, Progress Software INTRODUCTION: In present day world, where dozens of complex queries are run on databases

More information

The Unconstrained Primary Key

The Unconstrained Primary Key The Unconstrained Primary Key Dan Cruikshank www.ibm.com/systems/services/labservices In this presentation I build upon the concepts that were presented in my article The Keys to the Kingdom. I will discuss

More information

DBMS / Business Intelligence, SQL Server

DBMS / Business Intelligence, SQL Server DBMS / Business Intelligence, SQL Server Orsys, with 30 years of experience, is providing high quality, independant State of the Art seminars and hands-on courses corresponding to the needs of IT professionals.

More information

In the March article, RPG Web

In the March article, RPG Web RPG WEB DEVELOPMENT Using Embedded SQL to Process Multiple Rows By Jim Cooper In the March article, RPG Web Development, Getting Started (www.icebreak4rpg.com/articles. html), the wonderful and exciting

More information

Oracle PL/SQL Best Practices

Oracle PL/SQL Best Practices Achieving PL/SQL Excellence Oracle PL/SQL Best Practices Steven Feuerstein Me - www.stevenfeuerstein.com PL/Solutions - www.plsolutions.com RevealNet - www.revealnet.com 7/5/99 Copyright 1999 Steven Feuerstein

More information

Top 25+ DB2 SQL Tuning Tips for Developers. Presented by Tony Andrews, Themis Inc. tandrews@themisinc.com

Top 25+ DB2 SQL Tuning Tips for Developers. Presented by Tony Andrews, Themis Inc. tandrews@themisinc.com Top 25+ DB2 SQL Tuning Tips for Developers Presented by Tony Andrews, Themis Inc. tandrews@themisinc.com Objectives By the end of this presentation, developers should be able to: Understand what SQL Optimization

More information

4 Simple Database Features

4 Simple Database Features 4 Simple Database Features Now we come to the largest use of iseries Navigator for programmers the Databases function. IBM is no longer developing DDS (Data Description Specifications) for database definition,

More information

Module 1: Getting Started with Databases and Transact-SQL in SQL Server 2008

Module 1: Getting Started with Databases and Transact-SQL in SQL Server 2008 Course 2778A: Writing Queries Using Microsoft SQL Server 2008 Transact-SQL About this Course This 3-day instructor led course provides students with the technical skills required to write basic Transact-

More information

Handling Exceptions. Copyright 2006, Oracle. All rights reserved. Oracle Database 10g: PL/SQL Fundamentals 8-1

Handling Exceptions. Copyright 2006, Oracle. All rights reserved. Oracle Database 10g: PL/SQL Fundamentals 8-1 Handling Exceptions Copyright 2006, Oracle. All rights reserved. Oracle Database 10g: PL/SQL Fundamentals 8-1 Objectives After completing this lesson, you should be able to do the following: Define PL/SQL

More information

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved.

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved. Retrieving Data Using the SQL SELECT Statement Objectives After completing this lesson, you should be able to do the following: List the capabilities of SQL SELECT statements Execute a basic SELECT statement

More information

Teach Yourself InterBase

Teach Yourself InterBase Teach Yourself InterBase This tutorial takes you step-by-step through the process of creating and using a database using the InterBase Windows ISQL dialog. You learn to create data structures that enforce

More information

CSE 530A Database Management Systems. Introduction. Washington University Fall 2013

CSE 530A Database Management Systems. Introduction. Washington University Fall 2013 CSE 530A Database Management Systems Introduction Washington University Fall 2013 Overview Time: Mon/Wed 7:00-8:30 PM Location: Crow 206 Instructor: Michael Plezbert TA: Gene Lee Websites: http://classes.engineering.wustl.edu/cse530/

More information

MYSQL DATABASE ACCESS WITH PHP

MYSQL DATABASE ACCESS WITH PHP MYSQL DATABASE ACCESS WITH PHP Fall 2009 CSCI 2910 Server Side Web Programming Typical web application interaction Database Server 3 tiered architecture Security in this interaction is critical Web Server

More information

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours Course 20461C: Querying Microsoft SQL Server Duration: 35 hours About this Course This course is the foundation for all SQL Server-related disciplines; namely, Database Administration, Database Development

More information

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Course 2778A: Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Length: 3 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2008 Type: Course

More information

SQL - QUICK GUIDE. Allows users to access data in relational database management systems.

SQL - QUICK GUIDE. Allows users to access data in relational database management systems. http://www.tutorialspoint.com/sql/sql-quick-guide.htm SQL - QUICK GUIDE Copyright tutorialspoint.com What is SQL? SQL is Structured Query Language, which is a computer language for storing, manipulating

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Oracle 11g PL/SQL training

Oracle 11g PL/SQL training Oracle 11g PL/SQL training Course Highlights This course introduces students to PL/SQL and helps them understand the benefits of this powerful programming language. Students learn to create PL/SQL blocks

More information

DB2 V8 Performance Opportunities

DB2 V8 Performance Opportunities DB2 V8 Performance Opportunities Data Warehouse Performance DB2 Version 8: More Opportunities! David Beulke Principal Consultant, Pragmatic Solutions, Inc. DBeulke@compserve.com 703 798-3283 Leverage your

More information

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio Querying Microsoft SQL Server 2012 Microsoft Course 10774 This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server

More information

Micro Focus Database Connectors

Micro Focus Database Connectors data sheet Database Connectors Executive Overview Database Connectors are designed to bridge the worlds of COBOL and Structured Query Language (SQL). There are three Database Connector interfaces: Database

More information

Course 10774A: Querying Microsoft SQL Server 2012

Course 10774A: Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 About this Course This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft

More information

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Overview About this Course Level: 200 Technology: Microsoft SQL

More information

Oracle Database 10g: Program with PL/SQL

Oracle Database 10g: Program with PL/SQL Oracle University Contact Us: Local: 1800 425 8877 Intl: +91 80 4108 4700 Oracle Database 10g: Program with PL/SQL Duration: 5 Days What you will learn This course introduces students to PL/SQL and helps

More information

Embedded SQL. Unit 5.1. Dr Gordon Russell, Copyright @ Napier University

Embedded SQL. Unit 5.1. Dr Gordon Russell, Copyright @ Napier University Embedded SQL Unit 5.1 Unit 5.1 - Embedde SQL - V2.0 1 Interactive SQL So far in the module we have considered only the SQL queries which you can type in at the SQL prompt. We refer to this as interactive

More information

Handling Exceptions. Schedule: Timing Topic 45 minutes Lecture 20 minutes Practice 65 minutes Total

Handling Exceptions. Schedule: Timing Topic 45 minutes Lecture 20 minutes Practice 65 minutes Total Handling Exceptions Schedule: Timing Topic 45 minutes Lecture 20 minutes Practice 65 minutes Total Objectives After completing this lesson, you should be able to do the following: Define PL/SQL exceptions

More information

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Course 2778-08;

More information

SQL:2003 Has Been Published

SQL:2003 Has Been Published SQL:2003 Has Been Published Andrew Eisenberg IBM, Westford, MA 01886 andrew.eisenberg@us.ibm.com Jim Melton Oracle Corp., Sandy, UT 84093 jim.melton@acm.org Krishna Kulkarni IBM, San Jose, CA 94151 krishnak@us.ibm.com

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

Oracle to MySQL Migration

Oracle to MySQL Migration to Migration Stored Procedures, Packages, Triggers, Scripts and Applications White Paper March 2009, Ispirer Systems Ltd. Copyright 1999-2012. Ispirer Systems Ltd. All Rights Reserved. 1 Introduction The

More information

Handling PL/SQL Errors

Handling PL/SQL Errors 7 Handling PL/SQL Errors There is nothing more exhilarating than to be shot at without result. Winston Churchill Run-time errors arise from design faults, coding mistakes, hardware failures, and many other

More information

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer.

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Test: Final Exam Semester 1 Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 6 1. The following code does not violate any constraints and will

More information

HP NonStop SQL Programming Manual for TAL

HP NonStop SQL Programming Manual for TAL HP NonStop SQL Programming Manual for TAL Abstract This manual describes the programmatic interface to HP NonStop SQL for the Transaction Application Language (TAL). The NonStop SQL relational database

More information

Migrate Topaz databases from One Server to Another

Migrate Topaz databases from One Server to Another Title Migrate Topaz databases from One Server to Another Author: Olivier Lauret Date: November 2004 Modified: Category: Topaz/BAC Version: Topaz 4.5.2, BAC 5.0 and BAC 5.1 Migrate Topaz databases from

More information

MySQL for Beginners Ed 3

MySQL for Beginners Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Beginners Ed 3 Duration: 4 Days What you will learn The MySQL for Beginners course helps you learn about the world's most popular open source database.

More information

Foreign and Primary Keys in RDM Embedded SQL: Efficiently Implemented Using the Network Model

Foreign and Primary Keys in RDM Embedded SQL: Efficiently Implemented Using the Network Model Foreign and Primary Keys in RDM Embedded SQL: Efficiently Implemented Using the Network Model By Randy Merilatt, Chief Architect - January 2012 This article is relative to the following versions of RDM:

More information

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts D80186GC10 Oracle Database: Program with Summary Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts Level Professional Technology Oracle

More information

50439B: Basics of Transact SQL with SQL Server 2008 R2

50439B: Basics of Transact SQL with SQL Server 2008 R2 50439B: Basics of Transact SQL with SQL Server 2008 R2 Duration: 3 days Class Description This instructor-led course provides students with the necessary knowledge to work with the data in SQL Server 2008R2.

More information

Information Systems SQL. Nikolaj Popov

Information Systems SQL. Nikolaj Popov Information Systems SQL Nikolaj Popov Research Institute for Symbolic Computation Johannes Kepler University of Linz, Austria popov@risc.uni-linz.ac.at Outline SQL Table Creation Populating and Modifying

More information

New SQL Features in Firebird 3

New SQL Features in Firebird 3 New SQL Features in Firebird 3 Sponsors! Whats new in Firebird 3 Common SQL Full syntax of MERGE statement (per SQL 2008) MERGE... RETURNING Window (analytical) functions SUBSTRING with regular expressions

More information

DATABASE DESIGN AND IMPLEMENTATION II SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College

DATABASE DESIGN AND IMPLEMENTATION II SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College -1- SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: CODE NO. : SEMESTER: 4 PROGRAM: PROGRAMMER (2090)/PROGRAMMER ANALYST (2091) AUTHOR:

More information

Querying Microsoft SQL Server 2012

Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2012 Type: Course Delivery Method: Instructor-led

More information

PL/SQL. Database Procedural Programming PL/SQL and Embedded SQL. Procedures and Functions

PL/SQL. Database Procedural Programming PL/SQL and Embedded SQL. Procedures and Functions PL/SQL Procedural Programming PL/SQL and Embedded SQL CS2312 PL/SQL is Oracle's procedural language extension to SQL PL/SQL combines SQL with the procedural functionality of a structured programming language,

More information

AN INTRODUCTION TO THE SQL PROCEDURE Chris Yindra, C. Y. Associates

AN INTRODUCTION TO THE SQL PROCEDURE Chris Yindra, C. Y. Associates AN INTRODUCTION TO THE SQL PROCEDURE Chris Yindra, C Y Associates Abstract This tutorial will introduce the SQL (Structured Query Language) procedure through a series of simple examples We will initially

More information

Oracle Database 11g SQL

Oracle Database 11g SQL AO3 - Version: 2 19 June 2016 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries

More information

ERserver. iseries. DB2 Universal Database for iseries - Database Performance and Query Optimization

ERserver. iseries. DB2 Universal Database for iseries - Database Performance and Query Optimization ERserver iseries DB2 Universal Database for iseries - Database Performance and Query Optimization ERserver iseries DB2 Universal Database for iseries - Database Performance and Query Optimization Copyright

More information

How to Improve Database Connectivity With the Data Tools Platform. John Graham (Sybase Data Tooling) Brian Payton (IBM Information Management)

How to Improve Database Connectivity With the Data Tools Platform. John Graham (Sybase Data Tooling) Brian Payton (IBM Information Management) How to Improve Database Connectivity With the Data Tools Platform John Graham (Sybase Data Tooling) Brian Payton (IBM Information Management) 1 Agenda DTP Overview Creating a Driver Template Creating a

More information