Search results

  1. J

    Question Access database deleted it self

    All the data was lost in the result.
  2. J

    Question Access database deleted it self

    But would you think that DbSync could have done it? or more likely somebody has been messing around? Cheers, Justin
  3. J

    Question Access database deleted it self

    No the program would not do that if not called for. Also DbSync is connected to sync data from access to mysql. This is a one way street though. Since it has been connected it has not been syncing data (task scheduler not run yet). The only other i can think of is if somebody cut/paste the mdb...
  4. J

    Question Access database deleted it self

    The database has been used for a long time without this happening before. The access file is never accessed directly, a program reads it but office access is never opened. Is it possible that a disk clean up was run randomly and compressed it?
  5. J

    Question Access database deleted it self

    Does anybody know why an access database would delete itself? The database file was 170mb and it is now about 10mb.. why did it drop all of the records in an instant? I'm clueless. Any explanation would be great. Justin
  6. J

    Update Query from another database

    Thanks for the reply, I will need to update that table based on the data in the other database, as this will be done automatically with a macro. I think my code will work but i just don't know how to specify the database url in the update query correctly. I have the same thing to append data...
  7. J

    Check box results into a query

    Nice work john
  8. J

    Using Access Database on Web

    You will have to read the database with either php or asp. I would hit google for some simple connection strings and then copy/paste your sql queries into the php/asp script to mimic your program. From my experience there are more php tutorials. type (connect to access database with php)...
  9. J

    Check box results into a query

    You could select each one like this: SELECT RecordEntryT.RecordNumber, RecordEntryT.Date, RecordEntryT.Month, RecordEntryT.MediaTitle, RecordEntryT.Audience, RecordEntryT.[Business advice and information], RecordEntryT.[To become the one govt site for all businesses], RecordEntryT.[Helps...
  10. J

    Update Query from another database

    hi, I'm trying to update a table in a database based on the info from the same table in another access database. here is what i have so far with no success. UPDATE jobs_web SET StatusCNTR = 'C:\Users\Justin\AppData\Local\VirtualStore\Program Files...
  11. J

    database password access 2007

    Hi all, I have created a .bat file to open my database run a macro and then close. This works file however another program uses this database useing the jet engine and a password is set. The password is not from the users and passwords section it is the database password "set database...
  12. J

    Macro from task scheduler

    it wont run as a batch file like that. The batch file runs fine when i double click it (previous way) but it wont run through scheduled tasks. it says it run fine but it never opened the database and my macro didnt run. Justin
  13. J

    Macro from task scheduler

    It suggested to use a .bat file with this code: C: CD\Program Files\Microsoft Office\Office Msaccess.exe C:\Northwind.mdb /x Macro1 (related to mine of course) It didn't work with access 2007 and vista, however i managed to use this code: START MSACCESS.exe...
  14. J

    Macro from task scheduler

    I have a macro that i want to run every five minutes so i have made a scheduled task. the string is: "C:\Users\Justin\AppData\Local\VirtualStore\Program Files (x86)\PaperWRX\Data\pwEssentials.mdb - Shortcut" "/x ApendCustMacro" Which runs perfect from the run (start menu) but i get errors from...
  15. J

    Append Macro error VBA

    Hi im new to Access and VB. Im having trouble with appending a table to another access database table. With my code im trying to make it only update new records. Here is what i have: Sub AppendMacro() With DoCmd .SetWarnings False .RunSQL "INSERT INTO Customers1 ( [CNTR]...
  16. J

    Linked Tables from access to MySql

    Thanks that worked, Justin
  17. J

    Linked Tables from access to MySql

    okay got it all done but i cannot find the location of msaccess.exe lol. all i can find is "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Office\Microsoft Office Access 2007.ink" c:\program files\Microsoft Office\msaccess.exe does not work either. not even from run function...
  18. J

    Linked Tables from access to MySql

    okay so what i have done is made another database file that is linked to the mysql databse. I have made an append query from the main database to the new .mdb but im using access 2007 and i cannot figure out how to make the append query a macro so i can then store it as a shortcut for task...
  19. J

    Linked Tables from access to MySql

    Yes i have redone it a couple of times also with the link ect. also i have installed the program fresh with no data and relinked ect. when i delete the table to rename the linked one to take its place it says warning "blah blah about its group" but when i look at its group its the only one...
  20. J

    Linked Tables from access to MySql

    I dont think the password has anything to do with it as after the error message i check the MySql database and details have been added to the fields. However when the program trys to search the access database it returns no results (data is presant in access database). It only does this when...
Back
Top Bottom