In the past when I was given a csv there would be only a few thousand rows so I would just create a temporary table and then insert the needed values into the table. The problem here is that I was given a csv this time with over 80,000 rows and there is a maximum allowed number of inserting 1000 row values. In the past with a few thousand I would just do this 3 or 4 times and then union them to create a master temporary table. What can I do to get these csv IDs into my SQL server? Also I included what I was doing before to be clear. Also to note, I have limited access. Thanks!
EDIT: Limited access means that I don't have permission to use the bulk load statement. I hoping there was a around that. If not, I will have to just explain the situation.
CREATE TABLE ##Test(ID BIGINT);
INSERT INTO ##Test
VALUES
(21477217322),
(21479276022),
(21478037922)
;