Cursor1 = SQL1.ExecQuery("CREATE Table DataTable_backup As Select * FROM DataTable")
the above gives an error if the "DataTable_backup" already exists and no error if the "DataTable_backup" does not exist however, it will not create the "DataTable_backup" nunder any circumstances.....
The SQL statements, looks ok to me. Although I have never used that type of statement, though a CREATE statement should be used with sql.ExecNonQuery()
it pops back with something about not assigning a void value.... really i just want to do a table backup so a delete followed by a create will do me.... could you please give me the minimalist query for moving all records from one table to a second and completely identical table..... thank you