What are the differences between stored procedure and
functions in SQL Server 2000?
Answer Posted / chauhan rakesh botad
1>Procedure can return zero or n values whereas function can
return one value which is mandatory.
2>Procedures can have input,output parameters for it whereas
functions can have only input parameters.
3>Procedure allow select as well as DML statement in it
whereas function allow only select statement in it.
4>Functions can be called from procedure whereas procedures
cannot be called from function.
5>Exception can be handled by try-catch block in a procedure
whereas try-catch block cannot be used in a function.
6>We can go for transaction management in procedure whereas
we can't go in function.
7>Procedures can not be utilized in a select statement
whereas function can be embedded in a select statement.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Explain a checkpoint?
Difference between report and query parameter. Why do we need different type of parameter?
there is a trigger defined for insert operations on a table, in an oltp system. The trigger is written to instantiate a com object and pass the newly inserted rows to it for some custom processing. What do you think of this implementation? Can this be implemented better? : Sql server database administration
What is the difference between count () and rowcount ()?
What do mean by xml datatype?
What are cursors stored procedures and triggers?
Using the customer, and order table in northwind database, please write a query to produce xml?
how many type of indexing in database?
Will the writetext statement activate a trigger?
why would you use sql agent? : Sql server database administration
What is difference between clustered and non clustered index?
What is star, snowflake and star flake schema? : sql server analysis services, ssas
Explain magic tables in sql server?
How to list all field names in the result set using mssql_field_name()?
What is data source in connection string?