0
INSERT MILLION RECORD SQL SERVER
I have a table Employee, issue i dont know how to insert 1 million reocrd ( name ) into table, can you help me
6 Respostas
+ 4
Depending on the origin of data, and whether the source of data was supported, you might get some help by using import/export data wizard
https://learn.microsoft.com/en-us/sql/integration-services/import-export-data/start-the-sql-server-import-and-export-wizard
+ 1
It would be all the records if there are less than a million records
0
i wanna insert from another table
0
Try to follow the steps described in attached link, hope it helps you find a way ...
0
INSERT INTO Employee
(col1, col2, col3, ...)
SELECT col1, col2, col3, ...
FROM AnotherEmployee
LIMIT 1000000;
0
but that table dont enough 1000000 row