Access Db Table questions

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Access Db Table questions

    I received a master employee file that contains 10,000 records. I filtered it
    records I need and that is about 2,000 records only. I then inserted that data
    into a table and added some new columns and put in data. I run my applications
    against this new table. However, the master employee file changes periodically
    and for my application to be current, I need to retrieve the file monthly and
    filter it out again. What I need to know how to do is how do I compare the new
    file with the existing file and check for additons, deletions, and changes, and
    update my file accordingly, without touching the new columns that I created.
    For example, if the new filetered file contains five new records, I need to add
    those to my existing table. If five records in my existing table no longer
    existis in the new filetered file, I need to delete those from my table, and if
    there any chagnes, ie address, names, etc, I need to update my table with those
    changes. How can I do all of this ? Additionally, would it be possible to
    produce a report showing me which records were added, deleted, and changed ?

    trojnfn Guest

  2. Similar Questions and Discussions

    1. Connecting to a Linked Table in Access
      I am using Dreamweaver MX 2004. I am trying to connect, via Dreamweaver, to a linked file in Access. The linked file is connected to a text file...
    2. ASP / Access: use of same table twice in one query
      Hi, In a query I use the same table twice: Select u.*, ud.*, dep.*, u2.* from users as u, departments as dep, user_in_departments as ud, users...
    3. access questions for IDE
      have VS2002 installed on WIN XP pro machine that connects to the internet. But my IIS is on a Win 2Kpro system networked via crossover. When I try...
    4. Access table names
      That depends on exactly what you are doing. But basically 'work' is a keyword, which is why the problem occurs. If you reference it as it...
    5. CREATE TABLE IN ACCESS
      Hi all, Quick question, how do you create a table in MS Access from with an asp script? I will be creating the table name from ...
  3. #2

    Default Re: Access Db Table questions

    One way is to put each new master file into a working table and do your
    comparisons between the real table and the working table.

    A better method is to get rid of the file and use your database instead.

    Dan Bracuk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139