SQL Server 2008
-
Dear All, We have a table with millions of records,i created a Windows application to retrieve data from mentioned table,it taking too much time to get result,I loaded data in the form load event,its stucking for few minutes to display as data is too much. anyone can help me out to find any way to retrieve data w/o stuck the application? thanks
-
Dear All, We have a table with millions of records,i created a Windows application to retrieve data from mentioned table,it taking too much time to get result,I loaded data in the form load event,its stucking for few minutes to display as data is too much. anyone can help me out to find any way to retrieve data w/o stuck the application? thanks
Do you really need to load million of rows from table on load of form?
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post. www.cacttus.com
-
Do you really need to load million of rows from table on load of form?
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post. www.cacttus.com
No ... I realized
-
Dear All, We have a table with millions of records,i created a Windows application to retrieve data from mentioned table,it taking too much time to get result,I loaded data in the form load event,its stucking for few minutes to display as data is too much. anyone can help me out to find any way to retrieve data w/o stuck the application? thanks
Besides adding criteria (WHERE) to the data request look into indexes.
-
No ... I realized
Member 4650287 wrote:
I realized
You realized what?
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post. www.cacttus.com
-
Dear All, We have a table with millions of records,i created a Windows application to retrieve data from mentioned table,it taking too much time to get result,I loaded data in the form load event,its stucking for few minutes to display as data is too much. anyone can help me out to find any way to retrieve data w/o stuck the application? thanks
Use paging and filtering in result-set. Look at this article. SQL Server Paging Results[^]
thatraja
**My Tip/Tricks
My Dad had a Heart Attack on this day so don't...
** -
Dear All, We have a table with millions of records,i created a Windows application to retrieve data from mentioned table,it taking too much time to get result,I loaded data in the form load event,its stucking for few minutes to display as data is too much. anyone can help me out to find any way to retrieve data w/o stuck the application? thanks
-
Use paging and filtering in result-set. Look at this article. SQL Server Paging Results[^]
thatraja
**My Tip/Tricks
My Dad had a Heart Attack on this day so don't...
**thanks for replies