Getting an error message when trying to "Split Database" - ms-access

I am trying to split my dbs, but keep getting an error:
I don't have an append query. I have gone through every single object in the database, modules, tables, name it - there is no single "INSERT INTO" statement that I can see. I searched hidden and system objects too...
Any idea?

Related

Laravel inserting large amounts of CSV data - QueryException

I hope that I wrote title good.
So I'm trying to read data from CSV file and insert data in specific mysql database table.
Everything is working as expected, only after some time it throws out this error -> shown in picture.
My CSV file is about 25'000 lines big, and around 12'000 line I get this error. Same is with second function, it throws same error around 6'000 line, same file, different filtering settings.
I also got different file with different function with 1269 lines, and it's inserting all data in database without problems. So might it be that it takes to long time or something like that?

Nifi, I'm receiving error while adding records to database

I'm trying to load records into database using "PutDatabaseRecord" processor. But an error is coming as "Field Age cannot be null". But i don't have that field either in the records I'm trying to load or there is no such column in the table I have created. Tried many times creating new data and new table. Similar error is coming.

'Id' is not an index in this table

I think my database is corrupted. Every time I open the database or any object (table, forms, reports) in the database, I get an error message that says
"'Id' is not an index in this table".
I created a new DB and tried to export the objects in the DB. I was only able to export the tables, not the forms or report. Help please
My other attempts to fix the problem both failed:
compact & repair
Turned off the Name AutoCorrect check boxes

Too many columns in query, MySQL Error Code: 1117

I very recently started the process of trying to get a undocumented and poorly designed project under control. After struggling to get the thing built locally, I started running into errors when going through various functionalities.
Most of these problems appear to be a result of MySQL errors due to the way my product is generating Hibernate criteria queries. For example, when doing an autocomplete on the displayName of an object, the criteria query that results from this action is very large. I end up with around 2200 fields to select from around 50 tables. When hibernate attempts to execute this query I get an error:
30-Mar-2018 11:43:07.353 WARNING [http-nio-8080-exec-8] org.hibernate.util.JDBCExceptionReporter.logExceptions SQL Error: 1117, SQLState: HY000
30-Mar-2018 11:43:07.353 SEVERE [http-nio-8080-exec-8] org.hibernate.util.JDBCExceptionReporter.logExceptions Too many columns
[ERROR] 11:43:07 pos.services.HorriblyDefinedObjectAjax - could not execute query
org.hibernate.exception.GenericJDBCException: could not execute query
I turned on general logging for MySQL and obtained the criteria query that is trying to be executed. If I attempt to execute it in MySQLWorkbench I also get the following result:
Error Code: 1117. Too many columns
I've gone to the QA instances of this application and the autocompletes work there, which seems to indicate there is a way that this huge query will execute. Is it possible that I just do not have the right MySQL configurations on?
Currently my sql_mode='NO_ENGINE_SUBSTITUTION', is there anything else I might need to do?

Is it safe to frequently Compact and Repair Access DB?

I have an Access Database which I populate using a pass through query.
I get specific data from an SQL database and dumps it on Access.
This Access DB is updated weekly but I cannot simply append new data from the previous week because all other past weeks also updates.
What I did is truncate the Access DB and then load everything again.
When I do that, I need to Compact and Repair the DB so that the size doesn't bloat.
My question is, is it ok to do that? Currently I am using the logic posted in this answer.
I have not encountered any problems yet but I just want to make sure and get our access guru's thought about it. Also I'm planning on doing a scheduled run on our server to do the task.
Just need to make sure that it will not get corrupted easily (what is the chance of corrupting the file in the first place?).
If you'll ask, why do I need to do this? Users of data have no access on SQL server.So I have to pull data for them so they can just connect to Access DB instead.
Just in case you need the code:
Dim sqlDelete As String
Dim sqlAppend As String
sqlDelete = "DELETE * FROM dbo_Table;"
sqlAppend = "INSERT INTO dbo_Table (Col1,Col2) SELECT Col1,Col2 FROM passThrough;"
With DoCmd
.SetWarnings False
.RunSQL sqlDelete
.RunSQL sqlAppend
.SetWarnings True
End With
Application.SetOption "Auto Compact", True
If you need to truncate the data and load again I would recommend to move all tables, which should be truncated and all temporary tables to separate database.
After separating it will be possible to replace this database with unnecessary data by empty database file when the application starts. Just save a copy of empty database and copy this file over existing database with old data. This should be done before opening any form/recordset based on tables from temp database. It will work faster than C&R each time and more reliable, because sometimes C&R may damage the file.
Template database file also can be stored in main database in Memo field
I will refer this forum post: http://www.utteraccess.com/forum/index.php?showtopic=1561733