sandip borkar


{ City } mumbai
< Country > india
* Profession * sr software developer
User No # 54591
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 7
Questions / { sandip borkar }
Questions Answers Category Views Company eMail




Answers / { sandip borkar }

Question { 247Customer, 20417 }

How many types of cursors are there in SQL Server?


Answer

There can be 7 types of Cursors in SQL Server
1] Dynamic : Scrollable. Its slowest, and sensitive to all changes in resultset.
2] Keyset : Scrollable. Its slow but faster than Dynamic.Sensitive to Changes like updation and deletion but not insertion
3] Static : Its srollable and faster than both above. We can move forward and backward, but changes are not visible
4] Forward_Only Dynamic : Its not scrollable, but sensitive to changes.
5] Forward_only keyset : Its not scrollable, but sensitive to updation and deletion in resultset but not insertion. We can only move forward and not backward.
6] Forward_only Static : Not sensitive to changes not scrollable.
7] Fast-forward : fastest among all.

Is This Answer Correct ?    1 Yes 6 No

Question { 5378 }

what is onfocus and onblur events in java script?


Answer

onFocus : occurs when an element gets focus
onBlur : occurs when an element loses focus

Is This Answer Correct ?    10 Yes 1 No