Viewing 15 posts - 121 through 135 (of 631 total)
MDW also has some decent functionality for managing and reporting on this, as well as a range of other performance and management related stuff
http://www.johnsansom.com/sql-server-management-data-warehouse-and-why-it-rocks/
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
October 6, 2016 at 5:25 am
To me, they're not really the same thing. MySQL is more of a replacement for xBase than a proper enterprise product, it's certainly nowhere like Oracle or SQL Server...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
October 3, 2016 at 9:10 am
Grant Fritchey (9/26/2016)
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 29, 2016 at 7:09 am
Another thing to consider when you're benchmarking for CPU would be the comparative performance of the CPU. If you're on something like E5-2640 v3 CPU's you may be getting...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 29, 2016 at 6:43 am
netmikem (9/28/2016)
I can't seem...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 29, 2016 at 6:22 am
For the benefit of any future unwary victims.
The Audit_DDL_Events table is one that is used by DDL triggers for tracking changes, and presumably is only set up when you create...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 27, 2016 at 9:09 am
It's an option for the version 11 and 13 ODBC driver
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 27, 2016 at 7:38 am
Bharat21 (9/27/2016)
Is any one know what is the minimum log shipping frequency or time for SQL server 2014.
Via the wizard 10 seconds, but it would more likely be...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 27, 2016 at 7:02 am
Gary Varga (9/26/2016) ... he believed that the contractor wouldn't provide any form of hand over if he was leaving as he refused to document what he was doing when...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 27, 2016 at 3:40 am
mike.jones 60369 (9/23/2016)
I have two tables A and B below and I wish...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 23, 2016 at 4:21 am
neophilius (9/21/2016)
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 21, 2016 at 5:50 am
You don't need IIS for native only, but you do with SharePoint configured for SSRS as Shareportint requires it.
What error messages are you seeing?
logs can be found at
%ProgramFiles%\Microsoft SQL...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 20, 2016 at 4:55 am
Not technically an answer, but this article from one of the regular posters here covers the thinking behind the question you're asking well
http://sqlinthewild.co.za/index.php/2016/09/13/what-is-a-sargable-predicate/
there are also other related articles to help...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 16, 2016 at 9:21 am
You're actually quite close, you just need to put your query into a derived table and filter on the ranked column
SELECT
VisitID, InstanceID, ValueInfo
FROM
(
SELECT
VisitID, InstanceID, ValueInfo,
Row_Number() OVER(PARTITION BY VisitID ORDER...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 16, 2016 at 8:02 am
TheSQLGuru (9/16/2016)
I honestly haven't used PLE as a metric in probably a decade. Avg disk sec/read and avg disk sec/write are WAY more appropriate IMHO.
While obviously not expecting you to...
I'm a DBA.
I'm not paid to solve problems. I'm paid to prevent them.
September 16, 2016 at 7:29 am
Viewing 15 posts - 121 through 135 (of 631 total)