I am working on optimizing a Data Flow Task. I Ado.Net source firing a query like below.
Select Emp_id, EmpName, Salary from Employee.
After source I hace a derived column transform whcih adds a derived column with user variable value @[User::TestVariable].
Now I guess this derived column transform would be taking some time atleast so I was wondering if I can save that time by doing something like below at source.
Select Emp_id, EmpName, Salary, DerivColumn as @[User::TestVariable]
from Employee
Is it possible to do something of this kind? if yes how?
Above is DFT I am working on how can i find out which component took how much time, so i can look to optimize that.
so you wish to add a new column to your dataset with a fixed value (contained on @[User::TestVariable]) to be inserted later on a destination, right? NO, you cant do what you are thinking because the scope is the database (where you execurte the query) and the variable is on the package.
Are you sure this derived column operation is take that long? It shouldnt. If it is, you could use a execute SQL task to insert this value on the DB into a temp table and the use it on your query
it is kind of a messy solution, but it is worth it if the derived column is really taking that long