Viewing 15 posts - 46 through 60 (of 1,192 total)
This is all correct behavior given the types involved. As Mark Cowne pointed out, what you are seeing in SSMS as 0.29 if you run the ROUND, or 29 if...
December 11, 2019 at 6:08 pm
Yeah, this has been known for a while.
See here, here, and here (this last is the wayback machine's copy of the connect item referenced by the second article).
From the first...
December 10, 2019 at 9:24 pm
Just a bit of clarification:
"Always On" is a label MS applies to some of its availability solutions, including Availability Groups and Failover Cluster Instances.
While it is often used interchangeably with...
December 10, 2019 at 9:16 pm
I'm glad you seem to have gotten this working with Eddie's solution.
For the record, my hint about the original session's capturing zero events was not related to the case of...
November 29, 2019 at 3:58 pm
A bit of a hint:
What strings would the TSQL comparison LIKE 'ALTER' match? 🙂
Cheers!
November 27, 2019 at 9:28 pm
In that case, something like this should do the trick:
SELECT *,
percentage_of_selection=Base*100.0/SUM(Base) OVER (PARTITION BY Selection)
FROM TestData;
Cheers!
August 10, 2018 at 4:08 pm
It's not entirely clear from your description, but from your expected results it looks like maybe what you're wanting is this:
For each row, report the percentage its Base...
August 10, 2018 at 3:50 pm
This is a documented change in behavior.
Under database compatibility level 130, implicit conversions from datetime to datetime2 data types show improved accuracy by accounting for the fractional...
August 10, 2018 at 3:01 pm
Glad to help!
http://rusanu.com/2012/01/17/what-is-an-lsn-log-sequence-number/ is a good place to start for the LSN.
Cheers!
August 10, 2018 at 1:46 pm
Check out https://technet.microsoft.com/en-us/library/2009.07.sqlbackup.aspx for an explanation of the amount of log needed by data backups.
It could be a number of things, from the database's generating more...
August 10, 2018 at 11:42 am
August 10, 2018 at 9:26 am
Wow. I've been away from here for a while. Reading that thread certainly makes for a bizarre re-entry to SSC.
I remembered his posts always being difficult, but I...
August 10, 2018 at 9:10 am
The most likely explanation is the log that has to be included in database backups to allow a restore using that backup file to recover the database to a consistent...
August 10, 2018 at 8:47 am
Just convert the varbinary to varchar using the appropriate style, in this case likely style 1.
Cheers!
June 27, 2018 at 12:54 pm
If performance has otherwise increased noticeably, this is maybe not so surprising.
That counter is reporting the number of active transactions at the time the the value is sampled,...
May 1, 2018 at 1:23 pm
Viewing 15 posts - 46 through 60 (of 1,192 total)