Hi there,
I'm Using an Access front end and I'd liek to insert the data from a view into a table.
Before I upsized I used Make Table, but I'm unsure now how the best way to go about it in SQL Server.
The table already exists I'd like to clear the contents then copy in the view.
Is it best to use truncate to clear the table, then use Update to add the View's data. I have tried this but it didn't like the fact the table already existed.
Or would it be better to Create table, in which presumably is the longwinded method as there are many fields.
Any advice would be appreciated.
I'm Using an Access front end and I'd liek to insert the data from a view into a table.
Before I upsized I used Make Table, but I'm unsure now how the best way to go about it in SQL Server.
The table already exists I'd like to clear the contents then copy in the view.
Is it best to use truncate to clear the table, then use Update to add the View's data. I have tried this but it didn't like the fact the table already existed.
Or would it be better to Create table, in which presumably is the longwinded method as there are many fields.
Any advice would be appreciated.