dbTalk Databases Forums  

logging the volume of data loaded other the network?

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss logging the volume of data loaded other the network? in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Jéjé
 
Posts: n/a

Default logging the volume of data loaded other the network? - 11-08-2004 , 11:06 PM






Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is local
on my server.

Thanks for your help

Jerome.



Reply With Quote
  #2  
Old   
AnthonyThomas
 
Posts: n/a

Default RE: logging the volume of data loaded other the network? - 11-08-2004 , 11:43 PM






A couple of places. In the package properties, enable package logging. This
will give you counts and times it took to execute various tasks within the
package.

Also in package properties, there is an option to provide an output file for
execution details. Then, also in the same set of dialogs, you can choose to
have the package to log in the servers event logs.

Hope this helps.

Sincerely,


Anthony Thomas


"Jéjé" wrote:

Quote:
Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is local
on my server.

Thanks for your help

Jerome.




Reply With Quote
  #3  
Old   
Jéjé
 
Posts: n/a

Default Re: logging the volume of data loaded other the network? - 11-09-2004 , 08:20 AM



but does these option display the amount of data?
in Mb, not in rows!

"AnthonyThomas" <AnthonyThomas (AT) discussions (DOT) microsoft.com> wrote

Quote:
A couple of places. In the package properties, enable package logging.
This
will give you counts and times it took to execute various tasks within the
package.

Also in package properties, there is an option to provide an output file
for
execution details. Then, also in the same set of dialogs, you can choose
to
have the package to log in the servers event logs.

Hope this helps.

Sincerely,


Anthony Thomas


"Jéjé" wrote:

Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is
local
on my server.

Thanks for your help

Jerome.






Reply With Quote
  #4  
Old   
Mark Allison
 
Posts: n/a

Default Re: logging the volume of data loaded other the network? - 11-09-2004 , 08:32 AM



Jéjé,

You might want to look into a network monitoring tool, there's nothing
built-in that does it.
--
Mark Allison, SQL Server MVP
http://www.markallison.co.uk

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602m.html


Jéjé wrote:
Quote:
Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is local
on my server.

Thanks for your help

Jerome.



Reply With Quote
  #5  
Old   
Jéjé
 
Posts: n/a

Default Re: logging the volume of data loaded other the network? - 11-09-2004 , 08:43 AM



but my actual problem is:
all is on 1 server!
so I can't monitor any network activity, because there is no network
activity for the moment.

"Mark Allison" <marka (AT) no (DOT) tinned.meat.mvps.org> wrote

Quote:
Jéjé,

You might want to look into a network monitoring tool, there's nothing
built-in that does it.
--
Mark Allison, SQL Server MVP
http://www.markallison.co.uk

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602m.html


Jéjé wrote:
Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is
local on my server.

Thanks for your help

Jerome.



Reply With Quote
  #6  
Old   
Sue Hoegemeier
 
Posts: n/a

Default Re: logging the volume of data loaded other the network? - 11-09-2004 , 09:12 AM



If you want to monitor network activity, bytes, etc you may
want to look at using a Network sniffer tool or PerfMon and
the Network Interface object.

-Sue

On Tue, 9 Nov 2004 09:20:12 -0500, "Jéjé"
<willgart_A_ (AT) hotmail_A_ (DOT) com> wrote:

Quote:
but does these option display the amount of data?
in Mb, not in rows!

"AnthonyThomas" <AnthonyThomas (AT) discussions (DOT) microsoft.com> wrote in message
news:385122A2-440F-483D-B92D-60BCC3D05CE8 (AT) microsoft (DOT) com...
A couple of places. In the package properties, enable package logging.
This
will give you counts and times it took to execute various tasks within the
package.

Also in package properties, there is an option to provide an output file
for
execution details. Then, also in the same set of dialogs, you can choose
to
have the package to log in the servers event logs.

Hope this helps.

Sincerely,


Anthony Thomas


"Jéjé" wrote:

Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is
local
on my server.

Thanks for your help

Jerome.






Reply With Quote
  #7  
Old   
AnthonyThomas
 
Posts: n/a

Default Re: logging the volume of data loaded other the network? - 11-09-2004 , 01:54 PM



There are still the performance counters, server as well as SQL Server that
will give I/O transferred, pages manipulated, etc. Also, the Profiler tool,
which can focus on that application/database/user/etc., will record CPU time,
and Read I/O and Write I/O. Sorry, it is only in bytes but I think you can
do the conversion.

Moreover, you can automate the launch of background trace with the use of
the system stored procedures and have the output loaded to a SQL Server table.

Sincerely,


Anthony Thomas


"Jéjé" wrote:

Quote:
but my actual problem is:
all is on 1 server!
so I can't monitor any network activity, because there is no network
activity for the moment.

"Mark Allison" <marka (AT) no (DOT) tinned.meat.mvps.org> wrote in message
news:u3K1ojmxEHA.1296 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
Jéjé,

You might want to look into a network monitoring tool, there's nothing
built-in that does it.
--
Mark Allison, SQL Server MVP
http://www.markallison.co.uk

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602m.html


Jéjé wrote:
Hi,

how can I know or log the volume loaded by my DTS packages?

I need to evaluate the traffic and the bandwidth required.
Does the profiler can provide enough info?

For the moment I work on a copy of the production database. so all is
local on my server.

Thanks for your help

Jerome.




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.