1
vote
0answers
57 views

Have @Table1 with values to update into @Table2, can I update @Table1 with @Table2.@@Identity? or Cursor?

I have 2 tables: declare @Customer_Links table ( Customer_LinkID int identity(1,1), CustomerID int ) declare @Customer_Regions table ( CustomerRegionID int identity(1,1), Customer_LinkID int, ...
0
votes
2answers
154 views

Is there a SQL Server equivalent to “OVERRIDING USER VALUE”

While googling I found about the OVERRIDING USER VALUE parameter for an INSERT for IBM's iSeries. Is there an equivalent command for Microsoft SQL Server versions 2005 or newer to allow you to ...
2
votes
1answer
101 views

After dropping the clustered index, it is still attempting to do a clustered insert

I am trying to convert data from one database system to another. One of the tables I need to transfer and format contains over 10 million rows. I am running the following script to do it: USE ...
2
votes
2answers
940 views

Move data from one table to other in batch's

I have a table 18 Million records I need to add append it to another table (with the same structure) I tried the import-export wizard, the problem is that the log gets very very big and eventually it ...