How does one decompile and recompile a database application?

To Decompile an Access database you’ll need to create a shortcut with the following elements: Path to the MS Access Executable (MSACESS.exe) Path to the database you would like to decompile The /decompile flag All together, then, the shortcut would look something like the following: “C:\Program Files\Microsoft Office\Office\MSACCESS.EXE” “C:\users\tim\documents\Mydatabase.mdb” /decompile Obviously, the paths will be … Read more

SQL Access ” Count “? [closed]

You can’t use Count as it will do just that – count the number of records for each Name ignoring the value of tap. But you check for the values of tap and sum these matches. However, while SQL Server returns 1 for a match, Access returns -1, thus – for a universal solution – … Read more

sql in ms-access [closed]

For a start, you need something like: SELECT TOP 5 ID, [Case ID], [Owner], Rnd(-Timer()*[ID]) AS RandomRecord FROM [Cases] ORDER BY Rnd(-Timer()*[ID]); to be used as a subquery filtered on OwnerID of your Owners’ table. I once posted an article on this with a lot more details: Random Rows in Microsoft Access