Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MBorofsky

  1. MBorofsky

    Convert query from MDB to ADP

    We just decided to stick with MDB faced with too short a deadline to convert for speedier runtime. From what I remember it would not convert totals queries (GROUP BY, Sum, ect) but I could be wrong.
  2. MBorofsky

    detect installed version of MS Office or Access runtime

    An MDE compiled in 2000 doesn't always run on systems with 2003. It seems to be very sporadic because sometimes it will run and sometimes it won't. The only constant we found in testing was that an MDE compiled on 2000 runs on runtime or full 2000, compiled on 2002 runs on ... 2002, ect. I...
  3. MBorofsky

    detect installed version of MS Office or Access runtime

    For various reasons we needed to make our Access database an MDE file. It appears that each MDE is specific to Access 2000, 2002, and 2003 meaning there will need to be a different front end for different computers. In order to create a nice smooth install process I want to write a program...
  4. MBorofsky

    Quickly Determine if a query returns records

    Tranman, I am using Access. My reference to Oracle was b/c you had mentioned Oracle. My thinking was that perhaps TOP 1 had the behavior you described, stopping after it finds the first recordset, only occured in Oracle. I eventually tested the TOP 1 statement on one of the queries that did...
  5. MBorofsky

    Quickly Determine if a query returns records

    How would that be functionally different from PaulF's solution?
  6. MBorofsky

    Quickly Determine if a query returns records

    That also has the same run time. Each of these solutions seems to calculate the entire query before picking whichever record/s it picks. Thanks anyway though.
  7. MBorofsky

    Quickly Determine if a query returns records

    Just for reference here is a copy of one of the query's SQL: SELECT tblAllegations.Allegation_ID AS 1, tblAllegations.Referral_ID AS 2, tblAllegations.FIPS AS 3, Count(1) AS 4 FROM tblAllegations GROUP BY tblAllegations.Allegation_ID, tblAllegations.Referral_ID, tblAllegations.FIPS HAVING...
  8. MBorofsky

    Quickly Determine if a query returns records

    I need to be able to run a set of queries and determine if each one returns at least one record. There are so many that executing using a DCount or a recordset.recordcount is extremely slow. Is there any way to quickly determine if a query returns at least one record?
  9. MBorofsky

    Website creates reports on data stored in client's network

    #2 would be the only option. Due to privacy requirements of the data we CANNOT see the data. It would be totally unacceptable to me personally as a gross violation of privacy and very likely a HIPA violation. I did a little research and I decided that in all liklihood the only options were...
  10. MBorofsky

    Website creates reports on data stored in client's network

    We have 2 months which I think is enough time. I am an experience VB6 developer, I have just never done anything with the web. I did do some limited things with ASP a couple years ago - just creating a website that lets you enter data into a database on the server but what we need is leagues...
  11. MBorofsky

    Website creates reports on data stored in client's network

    We are trying to create a web-enabled reporting system. Their is a database somewhere on the client's network which we cannot have access to but the client can. The data must never be uploaded to our server, it must stay local. The client would log into our website. Our website would need...
  12. MBorofsky

    Hiding query definitions

    SELECT field1, field2, etc FROM table1 INNER JOIN [SELECT DISTINCT fieldX, fieldY FROM tableZ WHERE fieldY Like '%SDF%']. As SubQ ON table1.field1 = SubQ.fieldX The above is a query that calls a query. What do I do if a query calls a query that calls a query? I...
  13. MBorofsky

    Hiding query definitions

    Never mind, I just figured out that I actually had to remove all DAO.Database declarations as well. Thanks for the input, it really helped. Just as a side note, we decided not to go with the password protected queries because all you had to do was delete the password file which was exterior to...
  14. MBorofsky

    Hiding query definitions

    Hello again. I just completed going through all the different possible options here and have decided that an MDE file is the way to go. Unfortunately my MDE file conversion seems to freeze up whenever I run it. I did get it to generate the file once. I ended up having to make some changes to...
  15. MBorofsky

    Convert query from MDB to ADP

    For some reason the upsizing wizard does not convert 99% of our queries from MDB to ADP. Is there anyway to automate this process so I don't have to go through each query individually and rebuild it in ADP/SQL-Server?

Part and Inventory Search

Back
Top