41) How is a typical DB2 batch pgm executed ? 1. Use DSN utility to run a DB2 batch program from native TSO. An example is shown: DSN SYSTEM(DSP3) RUN …
DB2
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
Mainframe DB2 Interview Questions and Answers Part-4
by Sby S31) How do you leave the cursor open after issuing a COMMIT? ( for DB2 2.3 or above only ) Use WITH HOLD option in DECLARE CURSOR statement. But, it …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
Mainframe DB2 Interview Questions and Answers Part-3
by Sby S21.) Explain about RCT. RCT is expanded as Resource – Control Table and is defined in the DB2/CICS region. This is the component that comprises of features that are gathered …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
Mainframe DB2 Interview Questions and Answers Part-2
by Sby S11.) Explain the function of Data Manager. The physical database is managed by the DB2 component called Data manager. It invokes other system components to perform logging, locking etc. 12.) …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
Mainframe DB2 Interview Questions and Answers Part-1
by Sby S1.) How would you find out the total number of rows in a DB2 table? Use SELECT COUNT(*) … in db2 query 2.) How do you eliminate duplicate values in …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Graduates Part-3
by Sby S21.What are some of the main fields in SQLCA? Major Fields in SQLCA is SQL CODE, SQLERRM, and SQLERRD.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Graduates Part-2
by Sby S11.When the LIKE statement is used? LIKE statement is used to conduct partial searches like the search of employees by name. It is not necessary to indicate the complete name, …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Graduates Part-1
by Sby S1.How to find number of rows in DB2 tables? User has to use SELECT COUNT (*) on DB2 query.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-5
by Sby S41.Write a query to delete a table from database.? DROP TABLE table-name is the syntax to delete a table from database.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-4
by Sby S31.When you will face SQLCODE -911? At the time of deadlock or timeout you will face SQLCODE -911.