What is an instance database?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More DB2 Interview Questions

SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

0 Answers  


My DB2 program first read the data from a file and then it look into a table with the data it got from the file.If we did not bind the program , should the file read before SQL execution be success??

2 Answers   Xansa,


where can we use index and subscript ? with example ?

3 Answers   CTS,


What is meant by repeatable read?

4 Answers  


What is lock contention?

1 Answers  






I have a subprogram B calling from mainprogram A.I have opened a cursor in A ,Can i fetch the same cursor in subprogram B , If yes , Please explain the reason?

1 Answers   HeadStrong,


What is cascading rollback?

0 Answers  


Can there be more than one cursor open for any program?

0 Answers  


Can we declare DB2 HOST variable in COBOL COPY book?

2 Answers  


Can you define an Index if the table size less than 10 PAGES?

1 Answers   IBM,


What's the difference between DB2 active log and archive log? Thanks a lot...

2 Answers   IBM,


What is read-only cursor?

1 Answers  


Categories