Viewing 15 posts - 2,176 through 2,190 (of 5,394 total)
GilaMonster (1/10/2012)
Gianluca Sartori (1/10/2012)
Even worse: http://141microseconds.wordpress.com/2011/09/24/faster-than-light/.Oh my....
Remember this next time you complain about your politicians. 😉
January 10, 2012 at 7:04 am
SQL Kiwi (1/10/2012)
January 10, 2012 at 6:46 am
GilaMonster (1/10/2012)
Ninja's_RGR'us (1/10/2012)
Gianluca Sartori (1/10/2012)
mtillman-921105 (1/9/2012)
jcrawf02 (1/9/2012)
And what does that make those of us who are following the debates about the faster than light neutrinos?
I've been interested in that too......
January 10, 2012 at 6:42 am
I don't think there's a baked answer to this question.
"As many as your hardware can handle" would be quite close.
If your server has adequate memory, CPU and disk to serve...
January 10, 2012 at 4:54 am
mtillman-921105 (1/9/2012)
jcrawf02 (1/9/2012)
And what does that make those of us who are following the debates about the faster than light neutrinos?
I've been interested in that too... Is Einstein wrong?...
January 10, 2012 at 3:05 am
There's an article here[/url] that describes how to extract the cached plans that contain missing indexes information. Doesn't do exactly what you're after, but could get you started.
Hope this helps
Gianluca
January 10, 2012 at 2:57 am
Very annoying. I think the random words are meant to trick search engines.
I don't know which countermeasures can be taken, if any. I would be extremely upset if I had...
January 10, 2012 at 2:49 am
Did anyone else notice an unusual spam flood these days?
Also, spammers seem to have changed strategy now and they add replies to existing threads instead of starting new ones.
edit: fixed...
January 10, 2012 at 2:30 am
Jeff Moden (1/9/2012)
Revenant (1/9/2012)
Yes, it was Einstein who first used the dirty trick called "renormalization,"Is that anything like repivoting an EAV back to 3rd normal form? 😛
No, that's resuscitating...
January 10, 2012 at 2:29 am
No way, AFAIK.
You could do that with dynamic sql:
CREATE PROCEDURE mysproc
AS
BEGIN
EXEC ('select * from myserver.mydb.dbo.mytable')
Not exactly what you're after, but could work. Another possible solution is creating a loopback linked...
January 10, 2012 at 2:18 am
Why re-invent the wheel? Adam Machanic wrote a great piece of code known as "sp_WhoIsActive", that will tell you this and much more. Give it a try!
January 10, 2012 at 2:11 am
This should do:
WITH SampleData (seconds) AS (
SELECT 1
UNION ALL
SELECT 110
UNION ALL
SELECT 65
)
SELECT roundedUpSeconds = 60 * CEILING(CAST(seconds AS decimal(18,6)) / 60)
FROM SampleData
Hope this helps
Gianluca
January 10, 2012 at 2:07 am
anonymous2009 (1/9/2012)
I'm wondering if the select from the table variable "SELECT @Count = tabl_var_Count FROM @tab_var WHERE tab_var_Id = 1" could be avoided and instead something could be...
January 10, 2012 at 2:02 am
You could use sqlio to benchmark the drives.
Here is a video tutorial by Brent Ozar that should help you understand how to use the tool.
Hope this helps
Gianluca
January 10, 2012 at 1:44 am
Koen Verbeeck (1/4/2012)
Did I miss anything...
January 4, 2012 at 3:55 pm
Viewing 15 posts - 2,176 through 2,190 (of 5,394 total)