I have exported a data record from Sqlite to Sql Server with Dump. I need to get these records and insert inside a new table that I have created to receive these records inside my database on the Sql server. The problem is that I have many rows to insert. There are more than 1,000 rows and I would like to know if there is a simpler way of doing this than repeating 1000 times the insert into TableName values ...
ex:
INSERT INTO MyTable VALUES ("John", 123, "Lloyds Office");
INSERT INTO MyTable VALUES ("Jane", 124, "Lloyds Office");
INSERT INTO MyTable VALUES ("Billy", 125, "London Office");
INSERT INTO MyTable VALUES ("Miranda", 126, "Bristol Office");
INSERT INTO MyTable VALUES ("John", 123, "Lloyds Office");
INSERT INTO MyTable VALUES ("roger", 23, "Nuvens");
INSERT INTO MyTable VALUES ("jose", 500, "London Office");
INSERT INTO MyTable VALUES ("elanda", 126, "Paris");
Let's imagine that these insert has more than 1,000 Is there a way to do it in an easier way without repeating 1,000 times?