hi to all i want to know that are there any catching system available for the statements which used by applications.When statement is created in server and again request is made for same statemets. does sql server return the same statements to applications. or it is necessary for me to implements my own catching scheme or something else thanks in advance
Not sure what you mean. When a statement is executed the query plan is cached. Futeure statements are checked against the cached plans and the lpan is used if the statement uis sent again.
If you mean is the resultset retained in case the same statement is sent again then no. Reporting services and other clients will do something similar.
========================================== Cursors are useful if you don't know sql. DTS can be used in a similar way. Beer is not cold and it isn't fizzy.