T-SQL How to Insert Into from Table with Identity Column

Job ID: 34679819

Budget: $10 – $30 USD

Our tables have hundreds of columns and most are not used so they have null values in most of the rows. I want to do inserts from a temp table into a persistent table but I get the error that the column list must be specified. What is the script to allow the insert from the temp table into the persistent table with an identity column? Or, generate the Select and Insert Into statement for only columns that do not have all null values in the rows in the table.

SELECT * FROM [MergeAccounts].[dbo].[table1]

SET IDENTITY_INSERT [dbo].[table1] On;
BEGIN TRAN SELECT * INTO #tmpTESTTABLE1 FROM [dbo].[table1] WHERE IDNUM = 11113; INSERT INTO [table1] SELECT * FROM #tmpTESTTABLE1; DROP TABLE #tmpTESTTABLE1; DELETE FROM [table1] WHERE IDNUM = 11113; COMMIT TRAN;
--An explicit value for the identity column in table 'table1' can only be specified when a column list is used and IDENTITY_INSERT is ON.
--NEEDS column LIST
SET IDENTITY_INSERT [dbo].[table1] OFF;

SELECT * FROM [MergeAccounts].[dbo].[table1]

Sql Server 2016, Database Create script attached.

Please reply with:
The time of day that you are available. I am available 7am to 10pm UTC-06:00 Central Time US & Canada. Will you require contact by voice and do you speak English? When you can complete the project.

Confidentiality.
a) No Use. Recipient agrees not to use the Confidential Information in any way, or to manufacture or test any product embodying Confidential Information, except for the purpose set forth above.
b) No Disclosure. Recipient agrees to use its best efforts to prevent and protect the Confidential Information, or any part thereof, from disclosure to any person other than Recipient's employees having a need for disclosure in connection with Recipient's authorized use of the Confidential Information.
c) Protection of Secrecy. Recipient agrees to take all steps reasonably necessary to protect the secrecy of the Confidential Information, and to prevent the Confidential Information from falling into the public domain or into the possession of unauthorized persons.
d) Scope. The scope of Confidentiality is deemed to be in all contracts present past and future with the Parties to this request