1

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.

Tom Aranda
  • 5,919
  • 11
  • 35
  • 51
Indigo_heart
  • 129
  • 11

1 Answers1

1

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.

Jeffrey Van Laethem
  • 2,601
  • 1
  • 20
  • 30