I currently have two tables. The first, User, has a column "Inactive", that has a boolean value of 0 if they are Active, and 1 if they are Inactive. I am importing into a table that has a column "User Status" that only accepts the DT_STR values "A" for Active and "I" for inactive.
I am using a lookup table called "User Status" that maps these together.
Inactive - User Status
0 - A
1 - I
I added a Data Viewer after the lookup transformation in my data flow to verify it was doing the lookup correctly, and it is. Data in the Data Viewer shows about a hundred inactive uses. But the data being imported into my destination table consists of only "A".
I have recreated the destination OLE DB connection, and I have gone so far as to totally recreate my project and it's still exhibiting the same behavior. I am open to trying anything at this point.
↧