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.

 All Forums
 SQL Server 2000 Forums
 Import/Export (DTS) and Replication (2000)
 Result of DTS-package execution

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
Go to Top of Page

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?




Brett

8-)
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2003-11-13 : 14:56:51
I agree.

Tara
Go to Top of Page
   

- Advertisement -