Viewing 14 posts - 31 through 44 (of 44 total)
H4K (10/30/2012)
Use the...
October 30, 2012 at 7:16 am
H4K (10/16/2012)
I don't know if it works or not. But you can try to create a calculated field with the 'iif' expression.And include sum(new calculated field) into the textbox...
I changed...
October 29, 2012 at 11:10 am
Tim Paulsen (10/17/2012)
October 29, 2012 at 11:02 am
H4K (10/15/2012)
I mean there are 3 years from 2009 to 2011. So which of them are you...
October 15, 2012 at 8:05 am
codebyo (1/24/2012)
SELECT YEAR(SaleDate) AS Year,
SUM(CASE MONTH(SaleDate) WHEN 1 THEN SaleProfit ELSE 0 END) AS...
January 24, 2012 at 3:00 pm
Christian Bahnsen (1/24/2012)
Joining the...
January 24, 2012 at 9:14 am
This is a great way to get a running total. I would caution people you are trying to use this to get sales for your company. Everyone I have ever...
January 24, 2012 at 9:03 am
Update:
I limited the total memory given to the SQL Server, enabled locked pages, applied the hotfixes, and limited the PF size. I gave the server a restart which basically cleared...
October 11, 2011 at 1:59 pm
Schadenfreude-Mei (9/28/2011)
If your server is a dedicated db server all...
September 28, 2011 at 8:30 am
Yes, it says it is not required, but it doesn't say that it wont help keep the memory from paging out. I am aware that the AWE allows 32 bit...
September 27, 2011 at 7:47 am
It is a dedicated SQL box, so nothing but SQL is running on it. The only other thing I can think of is once in a while the server gets...
September 26, 2011 at 7:46 am
This is what I am assuming. For some unknown reason the server decided to page out all of the memory. After this happens queries that normally run quick run slow....
September 21, 2011 at 3:46 pm
Any idea why the page file is so large? I was wondering if I needed more memory because of the size of the page file.
September 21, 2011 at 2:48 pm
I know that SQL takes memory and doesn't give it back to the OS. I have it set to use 14GB of the total 16GB.
I guess my biggest concern is...
September 21, 2011 at 2:35 pm
Viewing 14 posts - 31 through 44 (of 44 total)