Viewing 15 posts - 5,176 through 5,190 (of 6,678 total)
nimmi.smith (5/20/2009)
Thanks for the advise. I will find a math forum and post there. Any know of math forums?
I will say it again - the problem you are...
May 20, 2009 at 4:23 pm
I also would recommend looking at SQL Server 2008 and filestreams.
May 20, 2009 at 3:40 pm
What you have is called an np-complete or np-hard problem. It is also referenced as the bin packing problem.
Hugo has a great article on this exact issue at: http://sqlblog.com/blogs/hugo_kornelis/archive/2007/11/30/bin-packing-part-1-setting-a-baseline.aspx
I...
May 20, 2009 at 3:34 pm
Scheduling a shrink of your transaction logs every week is a mistake you really don't want to make. Review the article I link to in my signature which explains...
May 20, 2009 at 3:10 pm
SELECT MIN(CASE WHEN PeriodId = 1 THEN PeriodEnd END) AS Period1,
MIN(CASE WHEN PeriodId = 2 THEN PeriodEnd END) AS Period2,
...
May 20, 2009 at 2:43 pm
Be careful - you might be surprised when you use something like:
SELECT 1.Email, 2.Everything, 3.Else
May 20, 2009 at 1:59 pm
george sibbald (5/19/2009)
I usually go the backup\restore method but thats really just a personal preference...
May 19, 2009 at 5:26 pm
Now, you need to identify what queries are causing the CPU's to spike and fix them. It definitely sounds like you have an underpowered system that could benefit from...
May 19, 2009 at 5:18 pm
You should set the max memory to no more than 4GB (4096MB). This will leave 2GB of memory to the OS.
You can also set the lock pages in memory...
May 19, 2009 at 4:01 pm
If you have not set lock pages in memory, and you have not set the maximum memory - then you could be seeing issues.
Once again - SQL Server should not...
May 19, 2009 at 3:21 pm
balbirsinghsodhi (5/19/2009)
Yes, it's 64 bit machine.
I am thinking of creating two virtual files. One will be the default on c drive and other will be on D drive and...
May 19, 2009 at 1:33 pm
SQL Server will use as much memory as you have configured. If you have not set a maximum, it will use as much memory as is available on that...
May 19, 2009 at 12:14 pm
They are eithier temp file ie. tm344.tmp or ~vs2E0 sql server query files. But it only fills up when we are running a long sql server query.
You are causing...
May 19, 2009 at 10:12 am
A couple of things you could look at instead of using a specific index hint would be to use a query hint or plan guide.
Try using the OPTIMIZE FOR statement...
May 18, 2009 at 2:33 pm
Viewing 15 posts - 5,176 through 5,190 (of 6,678 total)