Viewing 7 posts - 1 through 7 (of 7 total)
Very interesting approach and a well written article! I've been looking for scalable and redundant SSRS farm alternatives using Standard Edition to save on licensing costs vs. Enterprise Edition.
January 29, 2019 at 1:51 pm
I don't believe the AWE option makes any difference on a 64-bit system so that shouldn't be an issue.
See these two articles for more explanation:
Since it's a VMware...
July 23, 2013 at 12:18 pm
If I understand what you're asking for correctly, this should do it:
SELECT C.Name, SUM(P.Total), SUM(O.Total)
FROM Customer AS C
LEFT OUTER JOIN [Order] AS O
ON O.CustomerID = C.CustomerID
...
July 22, 2013 at 5:29 pm
Scripting this out from msdb is the way to go. All the information you need to generate a script for this is stored in msdb already. The link below has...
July 18, 2013 at 1:22 pm
No need to restart the server, it will take effect immediately. If you have Task Manager up on the Server while you do it, you can see the results almost...
July 12, 2013 at 10:21 am
Hi nagkarjun1,
The Max Server Memory setting only controls the size of the Buffer Pool and not the entire memory used by SQL Server.
Taken from: http://msdn.microsoft.com/en-us/library/ms180797(v=sql.105).aspx
SQL Server as a...
July 10, 2013 at 6:23 pm
The "reader" name is definitely misleading. This may be stating the obvious, but to get around this I've granted the SQLAgentReaderRole role and explicitly denied EXECUTE on add job sprocs...
March 25, 2010 at 4:19 pm
Viewing 7 posts - 1 through 7 (of 7 total)