C# Quiz 7
C# Quiz 7
In order to work with a cursor we need to perform some steps in the following order:
1. Declare cursor
2. Open cursor
3. Fetch row from the cursor
4. Process fetched row
5. Close cursor
6. Deallocate cursor
8. What is Collation?
Collation refers to a set of rules that determine how data is sorted and compared. Character
data is sorted using rules that define the correct character sequence, with options for
specifying case sensitivity, accent marks, kana character types and character width.
9. What is Difference between Function and Stored Procedure?
UDF can be used in the SQL statements anywhere in the WHERE/HAVING/SELECT section
where as Stored procedures cannot be. UDFs that return tables can be treated as another
rowset. This can be used in JOINs with other tables. Inline UDF's can be thought of as views
that take parameters and can be used in JOINs and other Rowset operations.