Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

DB2 Interview Questions
Questions Answers Views Company eMail

What is null value in db2?

1074

What does runstats do in db2?

1181

How to find schema of a table in db2?

1063

What is a bind in db2?

1100

Is ibm db2 free?

1061

What are catalog tables in db2?

1104

What is a plan and package in db2?

1150

What are bind parameters in db2?

1093

What is a db2 collection?

1105

What os does db2 run on?

1042

Is db2 a programming language?

1095

What is db2 plan table?

1106

Is db2 relational database?

1041

What is db2 instance?

1162

How to run db2 command in windows?

1238


Post New DB2 Questions

Un-Answered Questions { DB2 }

Is ibm db2 open source?

1125


What is ibm db2 connect?

1049


How do you simulate the explain of an embedded sql statement in spufi/qmf?

1138


What is performance tuning db2?

1109


What is a cursor in programming?

1110


Explain about dbrm.

1101


What is a db2 collection?

1105


What is load utility in db2?

1227


What are the various data types available in db2?

1142


What is dbrm library?

1112


Which are the db2 tools to protect integrity of the database?

1164


How many types of page locks can be held in db2?

1085


Are view updateable?

1085


Hi Everyone... Under the Logical files, when am working on multiple rec format logical file, I have joined two pf's using the multiple record format logical file concept, but when i run queried the LF only the first mentioned pf records are reflecting and I am not able to see any of the field records specified under the second pf. Kindly let me know whats the reason behind this. Below is the str of LF., R rec PFILE(LOGICAA) CUSTNO CUSTNAME BILL K CUSTNO R rec1 PFILE(LOGICAA1) CUSTNO ADD K CUSTNO .....

2410


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.

2722