JeanMarc22
New member
- Local time
- Today, 04:27
- Joined
- May 26, 2023
- Messages
- 14
So, I'm analyzing data and I'm building a query where I can see all of table B and matching table A. It's like an "Unmatched Query" without the "WHERE A.MAINCODE = Null;". Here's a simplified version of my query:
Table A and B are linked table on the same local drive.
So far so good. I can see my data. But I'm looking for a pattern of data within 500k rows. So in the column where the Nulls are, A.MAINCODE, I search using Ctrl-F and I enter "*" (without the quotes). Wham, Access closes on me.
So I re-open it, do a compact and repair, then rebuild my query. I can see the data just fine. I wait until I see the total number of rows in the navigator bar. This time I first search for "c*". I found the row. I scroll down to the next blank and search for "*". Wham, Access closes on me again. I tried setting the search to "Start of Field", "Whole Field" or "Any Part of Field" with the same result.
I was able to replicate this behaviour in another desktop databases. We currently have Office 365, Access version 16.0, on Windows 10 with a large SSD drive. This behaviour did not occur in our previous version: Office 2013. Has anyone come across this before?
SQL:
SELECT B.*, A.*
FROM A RIGHT JOIN B ON A.MAINCODE = B.MAINCODE
WHERE (((B.LANG_CD)="ENG"));
So far so good. I can see my data. But I'm looking for a pattern of data within 500k rows. So in the column where the Nulls are, A.MAINCODE, I search using Ctrl-F and I enter "*" (without the quotes). Wham, Access closes on me.
So I re-open it, do a compact and repair, then rebuild my query. I can see the data just fine. I wait until I see the total number of rows in the navigator bar. This time I first search for "c*". I found the row. I scroll down to the next blank and search for "*". Wham, Access closes on me again. I tried setting the search to "Start of Field", "Whole Field" or "Any Part of Field" with the same result.
I was able to replicate this behaviour in another desktop databases. We currently have Office 365, Access version 16.0, on Windows 10 with a large SSD drive. This behaviour did not occur in our previous version: Office 2013. Has anyone come across this before?