Link to home
Start Free TrialLog in
Avatar of isames
isames

asked on

SQL Update Table

I have a table that's already being populated by a SSIS package nightly. The table is never truncated. The table is below:
User generated image
I want to add a new column for Credit Rating in the source code of the SSIS package. The joins are already there to support the data i want to add etc, so just adding the column would work.

My question is how would this impact the existing data in the table that don't have credit rating info.

Also when the job runs tonight, would it just automatically create the new column and add the info, not modifying the existing data?
ASKER CERTIFIED SOLUTION
Avatar of dsacker
dsacker
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Good comment by dsacker.  You could also in his last step, instead of setting the CreditRating to 0 run your calculation on the existing data to get it caught up.