Search results

  1. G

    The Qur'an

    Many a pedophile has blamed their victims. History is written by the victors who often claim that the vanquished were evil. The truth is the Hebrews were violently invaders and participated in multiple brutal genocides, looting the towns of those they murdered for precious metals and jewels...
  2. G

    The Qur'an

    Then there is the story of the incestuous pedophile, Job whose daughters bore him children. It blames the daughters and tells us Job is a good man. He also claimed his wife had turned into a pillar of salt when she mysteriously disappeared while in his company.
  3. G

    The Qur'an

    There are millions of happy people who don't accept the god myths. There are even more miserable believers.
  4. G

    The Qur'an

    God enjoys watching suffering. Otherwise He would stop it happening. He also loves the smell of burning flesh. Exod. 29. [18]. I guess that is why He created Hell.
  5. G

    Solved Change NAME in VBA

    Are you referring to the V-tools Deep Search? It would have found it in the forms. Best tool ever for this task and completely free.
  6. G

    The Qur'an

    Your irrational delusions are not a valid basis for a rational argument.
  7. G

    Solved Query help on Between # and #

    That is not a good query because it isn't SARGable. The criteria should involve operations on the current date that are calculated once, rather than being applied to FieldDate which requires every record to be processed and cannot use the index on FieldDate. The difference in performance won't...
  8. G

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    Of course it is valid and efficient in its operation. What I am wondering is why you bother making all this extra work and what you imagine you are gaining over using ODBC linked tables and bound forms. Many developers with a fetish for using SQL commands don't seem to realise that they are...
  9. G

    The Qur'an

    Yes it is because an atheist business owner cannot consider the applicant's distasteful religious belief as reason not to employ them.
  10. G

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    What do you perceive you are actually gaining over simply using linked tables? ODBC passes queries through where it can so it isn't likely to make significant performance differences under most circumstances. You are certainly making a whole lot of extra work. Part of the whole reason for using...
  11. G

    The Qur'an

    The frenzied postings by Aziz Rasul are doing a great job of turning people away from his brand of faith by portraying Muslims as mindless extremists.
  12. G

    The Qur'an

    In Australia it is illegal to discriminate on the basis of religion. Except of course for religious enterprises such as faith based schools who are allowed to discriminate against those who don't subscribe to their beliefs. It is hypocrisy of course but that is a fundamental tenet of religion.
  13. G

    A Safer Way to Use TempVars

    The name TempVars is ironic as they are more persistent than any VBA variable, holding their value after a VBA reset. Some people think this is an advantage. I've never used them and never will.
  14. G

    Solved show data from previous year

    The important matter of whether a query is SARGable or not has absolutely nothing to do with whether a field is going to be updated or not. Your comment ended in a question mark. I was asking what your question was. Did you actually have a question or was it meant as pointless rhetoric?
  15. G

    Solved show data from previous year

    NO! That suggestion is absolutely wrong. This expression requires a function to be run on every record before matches can be returned. Hence it cannot use the index on the date field.The difference in performance won't be noticed on small numbers of records but will become evident as the number...
  16. G

    Import must be read as-is into a table.

    Import the whole csv into a table as a single value. Then apply STRING_SPLIT with the ordinal argument set. (You will need SQL Server 2022 or Azure.) Then split the multiple records on the commas.
  17. G

    What causes a database file size to bloat (file size increase)?

    I think that is a fairly common situation. Many database administrators subscribe to hating Access. Some because they have seen troubled caused by Access dabblers who haven't got a clue what they are doing but many just to be part of that culture,
  18. G

    What causes a database file size to bloat (file size increase)?

    I am fortunate to have always been part of that IT team in my workplace with full access to the network configuration and database administration. Eventually I settled into the role of the designated database administrator as we took on more IT staff. The size of the business I'm in is now very...
  19. G

    What causes a database file size to bloat (file size increase)?

    I have long argued that putting temp tables in the front end is the equivalent of writing a shopping list in margins of an encyclopedia. Temp tables belong in a separate database which I call a "Side End". There are multiple ways to implement a side end. The easiest is to keep a pristine file...
Back
Top Bottom