Search results

  1. Garren.Shannon

    Solved Migrating tables from Access 2019 to SQL 2019 - help...

    Thanks Minty... that is great advice. The steps I took were to split the database, Import the 5 tables from the BE file into SQL then in the FE file, deleted the 5 tables and created/added links to the SQL table. I then renamed each to the original name and everything works. So I think I, by...
  2. Garren.Shannon

    Solved Migrating tables from Access 2019 to SQL 2019 - help...

    Thanks for the pro-tip Isaac. What about queries? I noted when I tried to use the SSMA tool that it listed queries as an import item. Should I be trying to import queries into SQL?
  3. Garren.Shannon

    Solved Migrating tables from Access 2019 to SQL 2019 - help...

    OK... I think I am finally getting it. I have 5 tables. I imported them into SQL. In the FE (Front-End... spent a few min's looking for an actual file with and FE ext.) DB, I delete one of the tables, then add a new link to the table in SQL. Totally makes sense. I created the link to Drivers...
  4. Garren.Shannon

    Solved Migrating tables from Access 2019 to SQL 2019 - help...

    Is that done in the be.accdb file or from my original? And I can't find where the links are to delete or relink. I see the Linked Table Manager but only offers options to export to Excel.
  5. Garren.Shannon

    Solved Migrating tables from Access 2019 to SQL 2019 - help...

    Hey all, Again, thanks to all who reply. This forum is great for nubies like me. I only have a tacit understanding of SQL server operations and I do have a working knowledge of SQL commands. I most likely didn't do this correctly but I do have a backup. I have a fairly simply Access DB I...
  6. Garren.Shannon

    Solved How to pick top 3 out of many...

    Well, originally, it was the only way I could figure out how to compress the data initially. When this thing is running, we will have between 50 and 100 trips a day being added into the DB. Each trip is listed under type TF, A, F and M with the super majority being To/From. For reporting to the...
  7. Garren.Shannon

    Solved How to pick top 3 out of many...

    Thanks Isladogs. I figured out what I was doing wrong and my poor logic lead me WAY down a bad path. I actually just needed to add a DLookup() to the query for pulling the dates from the SchoolYrDates table. Once I pulled my head out and pointed it in the right direction, I was able to use the...
  8. Garren.Shannon

    Solved How to pick top 3 out of many...

    Well, not quite there. TOP is an awesome function and I didn't know about it. However, I still can't seem to find the core solution. Top gives me the top 3 but the query does not total by day... it finds the top 3 days, two of those days should be added together. Still on the hunt for how to...
  9. Garren.Shannon

    Solved How to pick top 3 out of many...

    Select TOP 3... awesome answer. Gave me exactly what I needed with a supper short edit to the SQL. Seriously great answer. :-)
  10. Garren.Shannon

    Solved How to pick top 3 out of many...

    Hey all, I have to report the top 3 headcount days to the state for 3 count-periods during the year... FirstCount (Sept 1 to Oct 31), SecondCount (Nov 1 to Jan 31st) and LastCount (Feb 1 to Apr 30th). I have a query that lists all the bus trips between date X to end date Y. All trips have a...
  11. Garren.Shannon

    Solved Working with time entry...

    Looking at this... it is very cool in deed. Quite a clean approach.
  12. Garren.Shannon

    Solved Working with time entry...

    Thanks Arnelgp
  13. Garren.Shannon

    Solved Working with time entry...

    OK... that is cool. I tried importing something like this before and missed a critical step that made the thing work kind of wonky. What are the steps to properly import this?
  14. Garren.Shannon

    Solved Working with time entry...

    Thanks CJ... good advise. I actually set all format checking in the table but your suggestion makes perfect sense so I will modify and move it to the form.
  15. Garren.Shannon

    Solved Working with time entry...

    Thanks CJ... I do have check to ensure the return time is after the depart time. The input mask is a great suggestion. That I will add. Where is the format property set? In the table or the form?
  16. Garren.Shannon

    Solved Working with time entry...

    Interesting Arnelgp... so the overlay unbound text box provides the default template? in this case, 8:00 am? For T1, I don't see in the property sheet how that is accomplished.
  17. Garren.Shannon

    Solved Working with time entry...

    OK... I see what you did there. I guess I could train them to enter only numbers, then assume the last 2 were min's and the remainder hours and work from there. Still, a lot of assumptions. There are so many ways users can screw up entering time. But you're giving me some good ideas. Thanks...
  18. Garren.Shannon

    Solved Working with time entry...

    Not sure what you mean Arnelgp. What would the dummy text boxes do for correcting the time entry?
  19. Garren.Shannon

    Solved Working with time entry...

    Wise words doc. :cool: I do have a check for a 5 min increments but that is one crazy line of code. I am using validation rules in the table... but this sucks. Not elegant AT ALL. Second([DepartTime])=0 And (Minute([DepartTime])=0 Or Minute([DepartTime])=5 Or Minute([DepartTime])=10 Or...
  20. Garren.Shannon

    Solved Working with time entry...

    Hey all, Still working on a Ridership database. On my trip entry form, drivers are to put in the start and end times. I have the fields set to 24hr clock which is helpful but I am wondering if there is a way to capture (to help speed up entry) forms of entry and convert them into proper form...
Back
Top Bottom