Sql Server Fetching Data
-
Hi there, i have a sql server table there i have thousands of record and when i call it from Stored procedure then it will take very huge time to display records how can i make Fast. Thanks in Advance
-
Hi there, i have a sql server table there i have thousands of record and when i call it from Stored procedure then it will take very huge time to display records how can i make Fast. Thanks in Advance
Without your query I can only suggest things to try as I had to do something similar just recently 1. Break your query down into sections and find what part is slow 2. Indexing your data. or like the other poster suggested, post your query
Nagy Vilmos wrote:
And eat bacon. Bacon's real important for 'puters.
-
Hi there, i have a sql server table there i have thousands of record and when i call it from Stored procedure then it will take very huge time to display records how can i make Fast. Thanks in Advance
-
Hi there, i have a sql server table there i have thousands of record and when i call it from Stored procedure then it will take very huge time to display records how can i make Fast. Thanks in Advance
In general you shouldn't be attempting to display "thousands" of records in the first place. This typically occurs in list box type displays for users who are interested in looking at the records. But those users don't want 'thousands" what they want is a very small subset very likely one record. And they know what they are looking for. So only display the single record they are looking for.
-
Hi there, i have a sql server table there i have thousands of record and when i call it from Stored procedure then it will take very huge time to display records how can i make Fast. Thanks in Advance