I am running my package using 'LoadFromSqlSer ver()' in SMO. I am successfully able to run it but I want number of rows which were affected using that package in a Database. So Is there any way for this.
my code is as follows.
Please help me on this as I have wasted too much of time on this and I got no help for this..
Thanx in adavance..
my code is as follows.
Code:
Package pkgIn; Application app; DTSExecResult pkgResults; pkgIn = app.LoadFromSqlServer(PackPath ,ServerName , UserName , Passward , null); pkgResults = pkgIn.Execute();
Thanx in adavance..
Comment