M
Mike Thomas
I have a situation where I need to:
1. Make a blank copy of a table
2. Add and populate the records one at a time to the copy
3. Update the original
4. Append the records from the copy to the orig
#1 Is there a way to do this with an SQL statement, bringing along the field
definitions, but not properties such as auto numbering?
2. No problem, rst.AddNew and rst.Update are fine. There is a lot of data
manipulation with each record.
3. No problem, that's just an SQL statement.
4. What is the best way to append records from one table to another where
both tables have the same structure? I find the syntax of the INSERT INTO
statement awkward when the tables have a lot of fields and those fields are
different types. Is there a mechanism , or a strategy, in Access to
simplify this.
Many thanks
Mike Thomas
1. Make a blank copy of a table
2. Add and populate the records one at a time to the copy
3. Update the original
4. Append the records from the copy to the orig
#1 Is there a way to do this with an SQL statement, bringing along the field
definitions, but not properties such as auto numbering?
2. No problem, rst.AddNew and rst.Update are fine. There is a lot of data
manipulation with each record.
3. No problem, that's just an SQL statement.
4. What is the best way to append records from one table to another where
both tables have the same structure? I find the syntax of the INSERT INTO
statement awkward when the tables have a lot of fields and those fields are
different types. Is there a mechanism , or a strategy, in Access to
simplify this.
Many thanks
Mike Thomas