Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
negotiator
Starting Member
4 Posts |
Posted - 2003-11-13 : 13:03:18
|
| I use VB to build and run DTS-packages to import/export files.Is there any way to get the number of imported/exported rows after the succesful execution of the package?Thanks in advance |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-11-13 : 13:28:53
|
| Where would you want to the count to go to? A file, a table? I think that you can just log the information to SQL Server by going to the packages properties and turning on logging.Why not do a count(*) and put that information wherever you want it to go?Tara |
 |
|
|
X002548
Not Just a Number
15586 Posts |
Posted - 2003-11-13 : 14:54:20
|
quote: Originally posted by negotiator I use VB to build and run DTS-packages to import/export files.Is there any way to get the number of imported/exported rows after the succesful execution of the package?Thanks in advance
Wouldn't it be easier to use bcp or BULK INSERT?Brett8-) |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-11-13 : 14:56:51
|
| I agree.Tara |
 |
|
|
|
|
|