Wearetryingtoinsertrecordsreturnedfromquerytotablebutwheneverwemapthecolumn,wearegettingdifferentcolumnthanwhatweselected.Hereisthescriptfromwhichwewantdatatobeinserted.Thisreturntheserverspacedetailbutwhenweputthatinimportwizarditisreturningthecolumnsofsp_configure.Please
Begin Set NoCount on Exec sp_configure 'show advanced options', 1; RECONFIGURE ;Exec sp_configure 'Ole Automation Procedures', 1 RECONFIGURE ;CREATE TABLE ##space( ID int identity(1,1), dletter varchar(3), tspace BIGINT, fspace int, percentfree numeric(5,2) , Date_Time datetime default getdate()) INSERT INTO ##space (
Thanks