I am trying to remove the information in one table and place it in an archive table. I am using the following code,<br>"Insert into ArchiveTable Select * from Table;"<br>The problem I am getting is that if there is more than one record it only inserts the first record and then stops, even though I have selected *, which means I should get all records in the table.<br>any suggestions??<br>