I have a procedure which selects data from a table called Test. And the way the data is loaded into the test Table is through File Import.
What I am trying is, Is there a way to run the Procedure automatically whenever there is an import on the Table.
In SSIS, you can add an execute SQl task to runthe proc after the main import work. We do this in all our import pacakges to save meta data. If you are running the import from a job, an alternative would be to use a second task in the job to run your proc.