Viewing 15 posts - 1,351 through 1,365 (of 14,953 total)
Duncan P (6/19/2012)
June 19, 2012 at 11:36 am
julian.fletcher (6/19/2012)
"Or defeated the Nazis."Wow - that's some achievement! Did you need any help doing that?
Who's "you" in this question?
Everyone who fought the Nazis, including internal rebels within Germany, took...
June 19, 2012 at 11:26 am
patrickmcginnis59 (6/18/2012)
Matt Miller (#4) (6/18/2012)
patrickmcginnis59 (6/18/2012)
The question isn't whether disparity exists, it's whether the ability to move along the income spectrum exists.
Everybody on the lower income spectrum would...
June 18, 2012 at 12:43 pm
I don't have any certs. Hasn't had any impact at all, positive or negative, on job hunting, doing my job, or anything else I'm aware of.
June 18, 2012 at 10:34 am
Jeff Moden (6/16/2012)
June 18, 2012 at 8:47 am
Vertigo44 (6/14/2012)
June 15, 2012 at 2:16 pm
I once had a transaction with 0% remaining on the rollback for 3 days. Ended up having to restore the database from a backup in order to resolve the...
June 14, 2012 at 11:34 am
RedGate has a book on that subject: http://www.red-gate.com/community/books/sql-server-execution-plans
June 14, 2012 at 9:42 am
TravisDBA (6/14/2012)
June 14, 2012 at 9:36 am
isuckatsql (6/12/2012)
I also used the loop joins and nolock because they improved performance.
By combining CTE, loops joins and...
June 14, 2012 at 7:23 am
An index on a commonly-accessed foreign key column is a pretty common way to speed up Join queries. Is that what you're asking about?
June 13, 2012 at 10:11 am
It depends on what is in the column. Index size can't go over 900 though, so nvarchar(2000) is often impossible to index. BigInt is no problem to index.
I'm...
June 13, 2012 at 4:31 am
If the formulae for the computed columns are deterministic (in SQL Server's opinion), then you can persist the values, and even index them if you want to.
Here's a sample of...
June 13, 2012 at 4:29 am
You have to use double-single-quotes to put single-quotes in a string that way.
Not the shift+quote key, the quote key twice.
June 12, 2012 at 1:57 pm
Had another thought on this. Modified version:
DECLARE @String VARCHAR(1000) = 'Bev\Soda\The Dew',
@Delim CHAR(1) = '\',
@Elements INT = -1, -- 0 =...
June 12, 2012 at 1:52 pm
Viewing 15 posts - 1,351 through 1,365 (of 14,953 total)