Reputation: 17
In a starting point , I use a variable " id" for a particular task . Then in a final package point , I require use that same variable to a completely different task . You can reuse ? or should I create new variables?
Upvotes: 0
Views: 583
Reputation: 2565
Yes, you can reuse variables if they are scoped to the package as a whole.
A typical example is a "Rowcount" variable that populated several times during the course of the package, and the number contained used for logging or validation as the package runs.
Upvotes: 1