Peter Lehrack Posted June 27, 2018 Posted June 27, 2018 (edited) Smart people, I have a hosted solution that runs a server side script every 5 minutes polling several different tables and putting the information on a Dashboard table that contains 1 record. I have a table that has 280,000+ records that needs access to the Dashboard's record. I made a Cartesian Join first starting with the Big table to the Dashboard table. After staring at 'Find in progress... Processing query' for an hour, I tried to start the Cartesian join from the Dashboard table to the Big table and have now been staring at the same 'Find in progress... Processing query' for over 2 hours. I assumed that since the Big table only needed access to the 1 record of the Dashboard table, the join wouldn't take hours to accomplish. Would this be a 1 time processing query? Will future long queries be needed? Is there a preferred direction to make the join in this scenario? I don't need the Dashboard's single record to have any access to the Big table's records, just the Big table's records to have access to the single Dashboard record, thus unidirectional. I tried to provide the Dashboard record info to the Big table via global variables but since the script is running server side, the info is not properly updated on every users machine. What think? Peter Lehrack Edited June 27, 2018 by Peter Lehrack
Peter Lehrack Posted June 29, 2018 Author Posted June 29, 2018 I stopped the 'Find in progress... Processing query' after 24 hours. 😕
Recommended Posts
This topic is 2413 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now