I have two table Tbl1 and Tbl2. Tbl1 size is 150 TB.
I have do insert like:
INSERT INTO Tbl2
SELECT *
FROM Tbl1
What's way to do this much more effectivly? I just created columnstore index on Tbl2, I have't any other ideas
I have two table Tbl1 and Tbl2. Tbl1 size is 150 TB.
I have do insert like:
INSERT INTO Tbl2
SELECT *
FROM Tbl1
What's way to do this much more effectivly? I just created columnstore index on Tbl2, I have't any other ideas