Re: How to join a local and a remote cursor?

2007-03-02 Thread Vassilis Aggelakos
Hi Derek, I'd say most experts would never put 100k records in a grid, ever. GUI controls aren't designed for this amount of data typically, and it's fairly un-usable to end users. Maybe I wasn't so clear. I didn't want to display 100K records in a grid. I have a small cursor with 50 records

Re: How to join a local and a remote cursor?

2007-03-02 Thread Vassilis Aggelakos
Thanks Ted, I've solved this in the past by creating a temp file on the remote server, uploading the 50 local records to the temp table, Definetly I have to benchmark this. As a third option I have thought to create a mechanism to scan these 50 records and to hit 50 indivindual queries in

Re: How to join a local and a remote cursor?

2007-03-02 Thread Derek Kalweit
I've solved this in the past by creating a temp file on the remote server, uploading the 50 local records to the temp table, Definetly I have to benchmark this. As a third option I have thought to create a mechanism to scan these 50 records and to hit 50 indivindual queries in the server

Re: How to join a local and a remote cursor?

2007-03-02 Thread Ted Roche
On 3/2/07, Vassilis Aggelakos [EMAIL PROTECTED] wrote: Definetly I have to benchmark this. As a third option I have thought to create a mechanism to scan these 50 records and to hit 50 indivindual queries in the server and then to create a local union select with all these results. What

How to join a local and a remote cursor?

2007-03-01 Thread Vassilis Aggelakos
Hi folks, Let's say we have a small local cursor (50 records) and we want to join it (inner join) with a big remote table (100K records). What is the best way to join these two cursors? The obvious solution Select Col1,Col2 From BigTable into cursor qrylocalCursor and then join qrylocalCursor

Re: How to join a local and a remote cursor?

2007-03-01 Thread Derek Kalweit
Let's say we have a small local cursor (50 records) and we want to join it (inner join) with a big remote table (100K records). What is the best way to join these two cursors? The obvious solution Select Col1,Col2 From BigTable into cursor qrylocalCursor and then join qrylocalCursor with

Re: How to join a local and a remote cursor?

2007-03-01 Thread Vassilis Aggelakos
Hi Derek, Thank you for answering. A little more info on how you're joining and the end need for the cursor might be helpful for us to give you more suitable suggestions... The resulting cursor will be used as recordsource in a grid. Until now I used to download all the records from the big