I am not understanding why this isn't working right. This is that table I have:CREATE TABLE [dbo].[tblAfter_Accurint_High] ( [textfile] [nvarchar] (600) AS NULL )
INSERT INTO tblAfter_Accurint_High (textfile) SELECT acctno+''+[name-last]+','+[name-first]+''+subj_address_1+''+subj_city_1+''+subj_state_1+''+subj_zipcode_1+''+akas_ssn_1+''+subj_phone10_1+'' FROM tblAccurint_Above1500
It is inserting null values every few rows. Can anyone see why? I can't figure it out :(Thanks!Brenda