can machine.config file orverrides web.config. For example: if u set session timeout as 30 mins in web.config file to a particular application and if u set session timeout as 10 mins in machin.config. what will happen and which session is set to the appliction?
2 11517How to Pass table from a cobol program to another cobol program and how to use that table in called program
8 221341]Give me Two examples for - High Priority and Low Severity?? 2]Give me Two Examples for - High Severity and Low Priority??
2 6662Give me 2 examples for - High Priority with Low Severity? And - High Severity with Low Priority??
1 9220Post New SunGard Interview Questions
WHAT IS LIMITED REVIEW? WHY IT IS REQUIRE?
What is base case scenario?
What is the difference between the operators ‘==‘ & ‘===‘?
What is a flip-flop?
What is the difference between a class and a module?
What is spring batch joblauncher?
what is the difference you can make by doing your course in the country of your choice
Is xhtml and xml same?
What are different types of classes in c#?
How to call a sub procedure?
What is the name of the dna duplication process?
what are the different kinds of cash books
What is a excel sheet?
How we can change the direction of rotation of Induction motor? Prove it using graphical
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.