I've got a View setup in a DBC to a SQL-Server Table that currently has about 500k records with a potential of having 100x that amount.
The real problem is that when the view is opened, it has to retrieve all the records before being able to do anything. 500k records takes about 2 minutes- when it gets to a 10 million records, it will take longer to open the data than to it will to make any of the changes/additions I need to do.
I'm alreading issueing a "Go Bottom" command which speeds up the process, but is there any additinal suggestions that anyone might have for me. Each block of approx 500k records represents 1 month of data and so I've considered creating Views on that represent each month or creating an "Empty" view temporarely when all I need to do is append new records.
As Always,Thanks for any suggestions.
HJ
The real problem is that when the view is opened, it has to retrieve all the records before being able to do anything. 500k records takes about 2 minutes- when it gets to a 10 million records, it will take longer to open the data than to it will to make any of the changes/additions I need to do.
I'm alreading issueing a "Go Bottom" command which speeds up the process, but is there any additinal suggestions that anyone might have for me. Each block of approx 500k records represents 1 month of data and so I've considered creating Views on that represent each month or creating an "Empty" view temporarely when all I need to do is append new records.
As Always,Thanks for any suggestions.
HJ