Thanks so much for such a great resource.
So I hooked up one of my tabkles that had over a million records.
These are Products for 3 different companies. So I did a very simple query:
- Code: Select all
SELECT a."Description", a."CatOne", a."CatTwo"
FROM "Products" a
WHERE a."company" = ?
ORDER BY a."Description" ASC
So I did a query of Company A which has 40,000 records and it gave me no results. Although it looked like it was trying. Tried Company B which had 500,000 and same thing. So I typed Company Test in 1 record and found no problem. I also took Company A and put in only 1500 of the records and it worked. I PROMISE I USED SAME EXACT VALUES SPELLED IDENTICALLY!!! Any idea why I am not getting results on this large data set? My Company field is Text....Thanks so much!!