Forum Discussion
Anonymous
6 years agoNot applicable
Not Enough Memory Error
Hello Community, I have a connection to Amazon Redshift where I am pulling in 7 tables. I have been using this report for the last 7 months, and it has been working just fine. 2 days ago, I...
Anonymous
6 years agoNot applicable
depending on the size of the DB, you're doing a bunch of string concats for what are otherwise numbers to get to an index. Can you keep an index pure and just a 1,2,3,....? This will likely save on cycles.
I get the memory errors when I try and do really big operations that are CPU expensive on big DB's....so filter the size of the DB down, or reduce the complexity of the operation. :)