ranjani


{ City } bangalore
< Country > india
* Profession * software engineer
User No # 15583
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 # 17
Users Marked my Answers as Wrong # 1
Questions / { ranjani }
Questions Answers Category Views Company eMail




Answers / { ranjani }

Question { Wipro, 10907 }

What provider ADO.net use by default ?


Answer

sqlclient

Is This Answer Correct ?    16 Yes 1 No

Question { Symphony, 23847 }

Differnce between Stored procedure and user defined functions?


Answer

1.UDF can't use a nondeterministic functions such as Getdate
(),RAND() where as StoreProcedure cn use such a functions.
2.UDF must return a value or a single resultset . Store
Procedure can return a value or even multiple resultsets,
but doesn't have to
3. UDF can be used in anywhere sql statements like
where/having/Select sections where as store procedure
cannot be.
4.UDFs that return table can be treated as another rowset.
This can be used in JOINS with other table

Is This Answer Correct ?    1 Yes 0 No