The import of data in test works but it no longer works when we publish and the application becomes Current
The import of data in test works but it no longer works when we publish and the application becomes Current
When my application is in test and I import the data, it works and I can see in my application the 28,000 records that the database represents. On the other hand, when I publish the application and it becomes current. The Records disapear. So I re-import my data the same way as in test and I get this error message when I try to view my recordings.
Thanks for your help.-
- Posts: 2431
- Joined: Mon Jul 02, 2012 12:24 am
- Location: Ulaanbaatar, Mongolia
Re: The import of data in test works but it no longer works when we publish and the application becomes Current
How do you Import?
Did you create an Import Template?
If so, did you Export your Import Template from your test machine and Import it onto your Server?
Did you create an Import Template?
If so, did you Export your Import Template from your test machine and Import it onto your Server?
Cheers,
Mark
_________________
AwareIM 6.0, 8.7, 8.8, 9.0 , MariaDB, Windows 10, Ubuntu Linux. Theme: Default, Browser: Arc
Upcloud, Obsidian....
Mark
_________________
AwareIM 6.0, 8.7, 8.8, 9.0 , MariaDB, Windows 10, Ubuntu Linux. Theme: Default, Browser: Arc
Upcloud, Obsidian....
Re: The import of data in test works but it no longer works when we publish and the application becomes Current
Make sure there is no faulty or weirdly formatted data in your production database table.
You should do a "SELECT * FROM tablename" on the test database table and compare it to the production database table.
We screwed up an import once, and one row prevented the query from displaying anything. I think the conclusion was that we accidentally imported an .xlsx file (which there is no support for), and we got the same result as your error messages when trying to display the query.
You should do a "SELECT * FROM tablename" on the test database table and compare it to the production database table.
We screwed up an import once, and one row prevented the query from displaying anything. I think the conclusion was that we accidentally imported an .xlsx file (which there is no support for), and we got the same result as your error messages when trying to display the query.
Re: The import of data in test works but it no longer works when we publish and the application becomes Current
Click Here to see a collection of my tips & hacks on this forum. Or search for "JaymerTip" in the search bar at the top.
Jaymer
Aware Programming & Consulting - Tampa FL
Jaymer
Aware Programming & Consulting - Tampa FL
Re: The import of data in test works but it no longer works when we publish and the application becomes Current
Exactly, I was no longer able to download my database, because my project had been corrupted by downloading the .xls file that I had done by mistake before downloading the .csv file. Luckily I had made a backup. So I started a new project by downloading a .csv file without having downloaded the .xls file just before and now everything works. Thank you Jobenjoben wrote: ↑Thu May 04, 2023 7:58 am Make sure there is no faulty or weirdly formatted data in your production database table.
You should do a "SELECT * FROM tablename" on the test database table and compare it to the production database table.
We screwed up an import once, and one row prevented the query from displaying anything. I think the conclusion was that we accidentally imported an .xlsx file (which there is no support for), and we got the same result as your error messages when trying to display the query.
Re: The import of data in test works but it no longer works when we publish and the application becomes Current
Is there really no support for importing excel-files? I would like to make it possible for users to import an excel file instaed of having to punch one line after the other..