Viewing 15 posts - 601 through 615 (of 717 total)
Mike C (7/1/2010)
UPDATE t
SET ...
FROM table t
INNER JOIN table2 t2
ON ...
This syntax lends itself to parallelism and can result in unpredictable...
July 1, 2010 at 10:28 am
Mike C (7/1/2010)
UPDATE t
SET ...
FROM table t
INNER JOIN table2 t2
ON ...
This syntax lends itself to parallelism and can result in unpredictable...
July 1, 2010 at 10:09 am
Steve Jones - Editor (7/1/2010)
You can't run TDE on laptops practically. It's in Enterprise Edition only (a mistake, IMHO)
I thought TDE was in the Developer edition as well, which is...
July 1, 2010 at 9:50 am
Nice question, thanks! (I had to think a little since I don't use TRIGGERs much.)
July 1, 2010 at 12:13 am
A few things I noticed about Mike C's code:
* Since he is using CTEs it will only run on SQL Server 2005 and up.
* His week number is the week...
June 30, 2010 at 11:53 pm
MutlyP,
What version of SQL Server are you using? (If you are using 2008 the second procedure can be written a little different.)
In your second example looking at the first portion...
June 30, 2010 at 5:26 pm
mutlyp (6/30/2010)
HiThank you again for all the responses. Been very helpful.
Here is the code you asked for:
I'll take the first one as it is simple. 🙂
In this case it looks...
June 30, 2010 at 4:57 pm
badatthis: Yes, that issue has been brought up more than once. And I think it goes further than that, even with a PK/clustered index you aren't guaranteed a sort order...
June 30, 2010 at 2:40 pm
Sadowy,
I think it is very common for the questions/answers to be corrected/edited between when they are email and when you may get to the web site. Being on the west...
June 30, 2010 at 10:57 am
mutlyp (6/29/2010)But I do see your logic for this case but like I said there are a lot more data that I must modify, compare and then take actions all...
June 30, 2010 at 10:35 am
mutlyp (6/29/2010)
Can you show me a better way of doing what I showed above without using Cursor?
I'm sure the idea is that the series of articles will start with the...
June 29, 2010 at 12:22 pm
This is a good article thanks!
I was going to mention that using GROUP BY instead of DISTINCT/ROW_NUMBER might be a good way to solve this, but I see someone has...
June 29, 2010 at 10:32 am
Nice question, thanks!
I think little bits like this will help people learn and understand new features like TDE so they are better prepared when they actually need to use it.
June 29, 2010 at 10:23 am
Great article, thanks!
Now if we just had the Enterprise version on all the servers...
June 28, 2010 at 5:29 pm
Viewing 15 posts - 601 through 615 (of 717 total)