Here is my issues, I'm provided with a text file with around 900k line that looks like this.
INSERT INTO TABLE_A VALUES (VAL1, Val2, val3)
INSERT INTO TABLE_A VALUES (VAL1, Val2, val3)
INSERT INTO TABLE_A VALUES (VAL1, Val2, val3)
INSERT INTO TABLE_A VALUES (VAL1, Val2, val3)
When i run this into SQL server i get an out of memory error. Is there a way to split this into bulk other than Copy/Paste/Comment that would prevent Server to not execute this and prevent lost data because of poor selection during the select/copy/past/comment process that would also take forever!