I itmagr Member Joined Feb 8, 2008 Messages 6 Programming Experience 3-5 Feb 8, 2008 #1 What's the easiest way to move records from one table to another, both tables being identical ?
L lsdev Well-known member Joined Jan 20, 2008 Messages 61 Programming Experience 1-3 Feb 8, 2008 #2 Can you not just create a data table with a fill query based on that of the other table Upvote 0 Downvote
cjard Well-known member Joined Apr 25, 2006 Messages 7,081 Programming Experience 10+ Feb 13, 2008 #3 itmagr said: What's the easiest way to move records from one table to another, both tables being identical ? Click to expand... in oracle: InSERT INTO dest SELECT * FROM src in sqlserver: SELECT * INTO dest FROM src Next time you ask a question, please at least say what DB youre using? Upvote 0 Downvote
itmagr said: What's the easiest way to move records from one table to another, both tables being identical ? Click to expand... in oracle: InSERT INTO dest SELECT * FROM src in sqlserver: SELECT * INTO dest FROM src Next time you ask a question, please at least say what DB youre using?