What is the difference between a query and stored procedure?
chaitanya k
Select an image from your device to upload
stored procedure comes with some major characterstics, as it consists in pre compiled format so the performance increase during dataaccess. incase of simple query it requires to complie again and again as per user request, but here its not required due to precompile format (*compile requires only ones).
next it reduce the network traffice so impacts less burden on server and u can integrate it with different front-end applications (e.g. vb.bnet,c#,java etc) inorder to data access.
come to next, due to precompile code resides in database server it provides more security and due to complicated queries can be integrated with one form it is portable also.