Viewing 15 posts - 5,551 through 5,565 (of 5,684 total)
Hey Ali,
I'm not sure why you would want to. If you were writing articles and getting them published, sure, I could see that being something for a resume. ...
September 18, 2010 at 1:28 am
What Ali mentioned above will put both names on the same line (and any extra data), which is what you'll want 99% of the time in SQL. If you...
September 18, 2010 at 1:19 am
For starters, you have to understand that everything is a transaction, just you usually don't see it.
SELECT * from Foo... is a transaction, as is UPDATE Foo SET Bar =...
September 18, 2010 at 12:04 am
That's just beautiful:
SELECT
ss.SecurityID,
POWER( 10.000000, SUM( LOG10( multiplier))) AS TotMult
FROM
...
September 17, 2010 at 11:50 pm
drew.allen (9/17/2010)
Well it's not pretty, but you can get the LOG10() of the numbers, sum them and then raise 10 to that power.Drew
That's a deliciously beautiful workaround to the ideas...
September 17, 2010 at 8:25 pm
CirquedeSQLeil (9/17/2010)
Brandie Tarvin (9/17/2010)
Trey Staker (9/17/2010)
CirquedeSQLeil (9/17/2010)
Just curious if anybody here has ever walked out of an interview...What would be your justifications for doing so?
I've never walked out on an...
September 17, 2010 at 6:09 pm
I've also seen PAGEIOLATCH's block themselves, when they're waiting for drive data, and not seen any multi-threading when I was looking at sysprocesses.
September 17, 2010 at 4:53 pm
Ah. That would depend more on the method of expansion I think, but if you're working with any of the drives that SQL server relies on, you can just...
September 16, 2010 at 6:09 pm
Drix,
More then happy to help you, but need a little more information from you, since we're going to need to actually test that code. It's too dense to spot...
September 16, 2010 at 5:43 pm
Sql Server won't care about the drive size unless you tell it to (such as expanding a filesize manually), or it needs to autogrow an existing file. Then it...
September 16, 2010 at 5:32 pm
LutzM (9/16/2010)
September 16, 2010 at 4:38 pm
Yeah, Lutz, pretty much the same result, but I see what you're driving at. I had been originally tempted not to put in any code at all and ask...
September 16, 2010 at 3:54 pm
cfradenburg (9/16/2010)
Generic optimizations are difficult to give since how long something takes will vary depending on the schema.
Yeah, I know, it's painful, but I was figuring this had...
September 16, 2010 at 3:07 pm
GilaMonster (9/16/2010)
If so, move TempDB completely (ALTER DATABASE TempDB ...), then...
September 16, 2010 at 2:55 pm
$1/strip? I'd be more then happy to subscribe, say, $10/year for a weekly strip, but $1/strip? Yeaaah, no.
September 16, 2010 at 2:53 pm
Viewing 15 posts - 5,551 through 5,565 (of 5,684 total)