February 28, 2025 at 1:09 pm
where to find information about xE sqlserver.databases_bulk_copy_throughput ?
I'm searching for de description of all attributes ( e.g. "count" - is it number of B/KB/MB/GB or number of rows ? )
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
March 1, 2025 at 1:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
March 13, 2025 at 11:39 pm
The sqlserver.databases_bulk_copy_throughput event in Extended Events captures bulk copy throughput, but Microsoft’s official documentation doesn’t always provide granular details on all attributes. For attribute descriptions, the best approach is to query sys.dm_xe_object_columns to check metadata.
For the count attribute, it typically represents the number of bytes processed, but to confirm, you can compare it against actual bulk insert operations and check whether it aligns with row count or data volume.
If you're running bulk inserts, you can enable this event along with sqlserver.bulk_insert_complete or sqlserver.bulk_load_table_lock, It can give better insights.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply