Updating table in SSIS script component

1.3k Views Asked by At

I have table in database with these columns

ID  |  Fact  | Date

And in column Fact I have only NULLs. I want to use Script Component to update data in this table. Is there any way to do that?

Note: I can't use SQL statement because of query performance.

1

There are 1 best solutions below

1
On BEST ANSWER

A script component will allow you to use C# or VB to do things. You can send database commands with C# or VB, but it's still going to end up being a SQL statement in the end.

If you can't update data in your table due to performance, you need to investigate why the performance is bad and rectify that.