Search results

  1. M

    Clear out data

    "Normalization to DKNF is something that I won't worry about until later" -- that's a huge red flag right there. If you do it up front / on paper before you build anything, it saves a ton of time later on. I think I'll just quietly back away from this one... Sounds like volcanics... Oh right...
  2. M

    Solved Update records through a recordset

    Why even use a recordset? if it's always true that the only records where the DogID value is null are for the current DogID (in the form(?)), then just use an update query UPDATE tblDNAProfile SET DogID = @DogID WHERE DogID IS NULL; then maybe you'd have to do something silly like use REPLACE...
  3. M

    Solved Inner Join Table Query Not Run properly

    What IS this? WHERE (((RTGST.RTGSUTR1) Is Null) AND (Not (RTGST.RTGSMailToHO1) Is Null));??? Why make simple things so difficult? One: remove all the parentheses. You don't need ANY of them. WHERE RTGST.RTGSUTR1 IS NULL AND RTGSTT.MailToHO1 IS NOT NULL yup. super hard.
  4. M

    How to deal with dynamic IP address in MS Access to MYSQL DB Maria

    The normal thing to do is to have a reserved range of IP addresses for shared resources like servers, routers, printers etc. Then just the clients (non-server computers) use dynamic IP addresses. I think your network configuration isn't right.
  5. M

    I need the minimum value among 5 different fields in one record

    In invisible ink, so nobody can read it. Here's the data as described in his first post. /* I have fields named for each of several companies. Imagine Progressive, National General, Geico, Safeco, Liberty Mutual. Each field is currency, and will contain the quote received from each of them...
  6. M

    I need the minimum value among 5 different fields in one record

    Final Answer: /* I have fields named for each of several companies. Imagine Progressive, National General, Geico, Safeco, Liberty Mutual. Each field is currency, and will contain the quote received from each of them. What I'm trying to accomplish is to compare those five fields and find the...
  7. M

    I need the minimum value among 5 different fields in one record

    Lemme try this again... Now that I have table definitions... use tempdb; go /* I have fields named for each of several companies. Imagine Progressive, National General, Geico, Safeco, Liberty Mutual. Each field is currency, and will contain the quote received from each of them. */ /* SETUP */...
  8. M

    I need the minimum value among 5 different fields in one record

    Oh, MajP brings up a significant point. If your database is properly designed and you want to add a "feature" (something like a set of tables, some queries and some reports in order to answer a specific set of questions), then the expansion is easy. You just have to look at the database ERD and...
  9. M

    I need the minimum value among 5 different fields in one record

    Maybe post your proposed table definitions before you go too far. Better to have your design proofread before you spend a ton of time building on top of something that's not going to serve you very well long term. As they say "an ounce of prevention..."
  10. M

    I need the minimum value among 5 different fields in one record

    Since I don't know your exact structure, but I've dealt with this before, I'll use my example. A long time ago, I inherited a database where my job was basically to do frequency counts of symptoms and grades. (like the drug ads on TV that say "common side effects include mild [symptom]...") What...
  11. M

    I need the minimum value among 5 different fields in one record

    Maybe post your design. Just an empty database. The thing I'm afraid of, having worked with messes like this, is that answering a simple question with a database that isn't designed correctly can be really hard. When I used to do this with databases I inherited, I'd map out the limitations of...
  12. M

    Sql Joins issue

    Any chance you could post CREATE TABLE and INSERT scripts with dummy data so we can try out some solutions? You like tested answers, right? SELECT c.CourseID, COUNT(e.*) FROM Courses c LEFT JOIN Enrollments e ON c.CourseID = e.EnrollmentID
  13. M

    I need assistance pulling a big db into SQL Server

    no need for the Import Export wizard. I'd use BULK INSERT for that. It's crazy fast. SSIS in this case is overkill I think. If you create a format file, you're sorted. I imported something like a 10 GB file in less than a minute. (I'd skip the indexing until after the table is populated.)
  14. M

    MySQL Server Question

    Did you repoint the Access database front end to the MySQL backend yet? Does it work?
  15. M

    Vintage Member Reappears

    ASP? (Honestly, I don't know. That's the kind of thing I'd ask Albert Kallal about.) I'm not an ASP/.NET person, but Albert should be able to help you out.
  16. M

    Vintage Member Reappears

    Oh, super handy. What's your pick for dealing with the linked SQL Server tables? Do you use DSNless? Because I'm working on data that requires SQL Server (common table expressions etc). Welcome! (Looking forward to picking your brain!) =)
  17. M

    I need assistance pulling a big db into SQL Server

    Where's the file? I wanna see if I can get it to insert.
  18. M

    Importing PowerQuery results into SQL Server

    Has anybody here ever created a PowerQuery that does a hideous transformation and then gotten that to import into SQL Server? For all the gringos... I wrote a PowerQuery to parse a Costco Purchase History report, and combine the purchases and the discounts so that the discount is in the same...
  19. M

    I need assistance pulling a big db into SQL Server

    Do you have the link for the file so we can try to import it?
  20. M

    Importing PowerQuery results into SQL Server

    In theory, it's possible to use the PowerQuery source in SSIS to import PowerQuery results into SQL Server, but so far I haven't gotten it to work. (I wanted to import a single file at a time, because I wanted to be able to handle the failures by moving the file to a "failed" or "imported"...
Back
Top Bottom