Recent content by xcrx

  1. X

    My database is very slow.

    Well I just finished switching all my Access queries into Mysql views and the difference is amazing. Running just a basic speed test that opens my query 'Inventory_qry' and moves though all the records, I got 12 seconds using access and less than 1 second using Mysql. The best part was that I...
  2. X

    My database is very slow.

    The frontend of the database is written in access 2007 with the backend being mysql 5.1. This database is for the fabrication portion of a manufacturing plant. Basically the foremen order the parts they need to build equipment using the Orders_tbl and Orders_detail_tbl. Those parts are then...
  3. X

    My database is very slow.

    lol no problem. The structure is fairly consistent all the way though but let me know if you have any questions.
  4. X

    My database is very slow.

    Below is a description of my tables and columns. I wasn't sure what all info you needed so let me know if I have forgotten anything. I also attached a text file with the same information for easier reading.
  5. X

    My database is very slow.

    No I knew what you meant :). I am not faint of heart but before anything in production changes it will be changed on my test server to see if it is worth it or not. I will write up what each table is for on monday and post it if you are interested in understanding how I put it together. I am...
  6. X

    My database is very slow.

    The database is in production but I keep a test server running a duplicate so I can work on improving it without risking the data.
  7. X

    My database is very slow.

    I am open to suggestions.
  8. X

    My database is very slow.

    That is what I was afraid of. When I filter that recordset it is still quite slow. You can try it and see what you think. On the "Inventory_frm" there is a box at the bottom to filter by description. I am going to keep going with converting all the queries to mysql views to reduce constantly...
  9. X

    My database is very slow.

    After a little research this morning I have realized I can't run a pass though query because my "Inventory_qry" is based of several other queries. I think I am going to have to look into running things though views in mysql. Does anybody have any experience with views? I am wondering how many...
  10. X

    My database is very slow.

    i I will think about if i have to pull all the records at loa but first i will try the pass through query. and yes all the tables have proper indexes and relationships in mysql.
  11. X

    My database is very slow.

    No problem.
  12. X

    My database is very slow.

    @Beetle It is 'Inventory_frm' that is the troublemaker. @GinaWhipp The tables don't matter. In production all the tables are in a mysql database.
  13. X

    My database is very slow.

    I have reattached my database as a mdb file. Let me know what you think.
  14. X

    My database is very slow.

    Yeah I can do that. It will be tomorrow before I can convert it as I don't run access at home.
  15. X

    My database is very slow.

    It is only my main form that is a troublemaker. It is read only but it pulls data from several tables though several querries to get the end result with is a list of my inventory as calculated by the data entered. It might be the the query is just too complex. I am not sure of a way to simplify...
Back
Top Bottom