Recent content by ebs17

  1. E

    Connect different databases

    However, with the UNION query you subsequently lose all index usage. A real database regularly comes with a lot of data, and you need some resources to achieve satisfactory performance. What does that mean? If you have or can compile the full path in a file system in the database, you can open...
  2. E

    Connect different databases

    This is a problem of our own making. If necessary, you should move the attachments to additional backends, but not the actual data.
  3. E

    How can I delete Duplicate Records from a table

    If you only want to delete parts of them, you need an attribute that allows you to distinguish between the records and can therefore be used to determine which records you want to delete or which records you want to keep. A typical field would be an ID with a continuous number (autoincrement)...
  4. E

    Linked table date error trapping

    You could show these examples.
  5. E

    Linked table date error trapping

    In the import specification, change the data type for this column to text. Text can initially record everything. Then, to link the text table, use a query like this: SELECT T.[FieldList] FROM...
  6. E

    Stop Users from adding on second subform if #1 is not filled

    I think you have to approach it completely differently. What dependencies are there between specialty and specialist? Show the database schema. I would expect a many-to-many relationship between specialty and specialist, and so the form would look completely different.
  7. E

    Solved Need some advice on a Total query

    Passing parameters to a query - variants: https://www.access-programmers.co.uk/forums/threads/query-to-find-records-not-between-two-dates.328481/page-2#post-1886589
  8. E

    Negative values are seen as positive

    Expr1="Yes" What does this have to do with positive or negative numbers?
  9. E

    Date on query

    WHERE DateField > 0 In contrast to the suggestion with NOT, index use is possible here, and index use should always be kept as open as possible in the interest of good performance. 0 corresponds to 1899-12-30 and implies that dates used are greater than this date.
  10. E

    Solved Tool for combining PDFs

    In order to present something as the "best solution", requirements from a development environment such as Access should be met. A key requirement would be code-controlled access via an accessible object model or via command lines. I have enough user interface in my access frontend, as changing...
  11. E

    Updating MakeTable Queries for a new version of the database

    You always have to react to unknown changes, regardless of whether you use an annual copy or an entire database. Where is there a significant difference? What characterizes fields that change? Samples? These are probably bullet fields from poor data modeling. Importing new data is always an...
  12. E

    Solved Allowable file types for import

    It is better to display VBA codes as well as SQL statements from queries as code in the forum instead of packing them in a file that is not user-friendly. The text files mentioned, which contain the definition of Access objects, play a role more for developers themselves, for example in source...
  13. E

    Solved Allowable file types for import

    Counter question: If you could upload these formats to the forum - who could and would want to read them directly? Should one put together his own database from 10 files instead of the questioner simply providing an example with data? My first encounter with a database usually takes place by...
  14. E

    Add digit before each group in a query

    Save your query under a name, e.g. qryXX. You can then set up another query. SELECT DCount("*", "qryXX", "ComplaintType = '" & Q.ComplaintType & "' AND AvgOfCost > " & Str(Q.AvgOfCost)) + 1 & "." & Q.ComplaintType AS ComplaintTypeX, Q.AvgOfCost FROM qryXX AS Q
  15. E

    Solved Function to calculate your start and end dates for the current day

    WHERE YourDateTimeField >= Date() AND YourDateTimeField < Date() + 1
Top Bottom