Viewing 15 posts - 121 through 135 (of 629 total)
Grant Fritchey (9/26/2016)
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...
September 29, 2016 at 6:43 am
netmikem (9/28/2016)
I can't seem...
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...
September 27, 2016 at 9:09 am
It's an option for the version 11 and 13 ODBC driver
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...
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...
September 27, 2016 at 3:40 am
mike.jones 60369 (9/23/2016)
I have two tables A and B below and I wish...
September 23, 2016 at 4:21 am
neophilius (9/21/2016)
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...
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...
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...
September 16, 2016 at 8:02 am
GilaMonster (9/7/2016)
September 7, 2016 at 8:04 am
^^^ Exactly This!
If you have scores of servers and hundreds of systems, manually repointing them all in the event of a datacentre, or even host - loss, for a number...
September 7, 2016 at 4:21 am
Viewing 15 posts - 121 through 135 (of 629 total)