G
Guest
Hello
Let's say I have the following three table
1. Customer (100,000 rows
2. Invoice (1,000,000 rows
3. Detail (10,000,000 rows)
4. Product (100 rows
an
Customer has a 1-M relationship with Invoice and Invoice has 1-M relationship with Detail. There is a M-1 relationship between Order and Product
When I create a dataset that has these three tables in them, use it on a Windows form and fill it, am I correct in assuming that all the data (11.1 million rows) will have come down the network pipe?
I was told some one that I was right and that's why once the dataset gets filled, subsequent operations are fast because the data is available locally
If that's true, I will have to put in some code so that I can have some search criteria the user has to enter so that I retrieve only those customers that meet that criteria
Thanks
Venkat
Let's say I have the following three table
1. Customer (100,000 rows
2. Invoice (1,000,000 rows
3. Detail (10,000,000 rows)
4. Product (100 rows
an
Customer has a 1-M relationship with Invoice and Invoice has 1-M relationship with Detail. There is a M-1 relationship between Order and Product
When I create a dataset that has these three tables in them, use it on a Windows form and fill it, am I correct in assuming that all the data (11.1 million rows) will have come down the network pipe?
I was told some one that I was right and that's why once the dataset gets filled, subsequent operations are fast because the data is available locally
If that's true, I will have to put in some code so that I can have some search criteria the user has to enter so that I retrieve only those customers that meet that criteria
Thanks
Venkat