Viewing 15 posts - 331 through 345 (of 499 total)
OK -- I sent you a private message in the forum
January 29, 2015 at 12:01 pm
After reading the article and the docs, I installed MR on one of my test systems. However, the jobs fail! I get tons of errors like this:
42000] (Error...
January 29, 2015 at 10:16 am
Solved it!
My Bad. I chose the wrong variable for StdOut in the EP task
January 29, 2015 at 8:25 am
One of my favorite uses for APPLY is to make my queries DRY-er by pre-computing subexpressions. e.g.
with data as (select * from (values
(1,2,3),
(4,5,6)
) v(a,b,c)
)
select a, b, f.future, d.diff, p.past
from data
cross...
January 28, 2015 at 6:58 am
ScottPletcher (1/26/2015)
g.britton (1/26/2015)
Jeff Moden (1/24/2015)
RonKyle (1/24/2015)
What are the issues with DATETIME2 and DATEDIFF?
Simple. Given a single row that contains StartDate and EndDate columns as DATETIME2 columns, write the code...
January 27, 2015 at 6:40 am
Jeff Moden (1/24/2015)
RonKyle (1/24/2015)
What are the issues with DATETIME2 and DATEDIFF?
Simple. Given a single row that contains StartDate and EndDate columns as DATETIME2 columns, write the code to calculate...
January 26, 2015 at 1:20 pm
BTW you can get the effect this incorrect query seems to imply:
select * from mytable
intersect
select * from mytable
January 23, 2015 at 9:05 am
Hugo Kornelis (1/23/2015)
g.britton (1/23/2015)
You're guessing and hoping you are right, but you are wrong. The execution plan proves it.
In SQL, you need to make a distinction between the definition of...
January 23, 2015 at 7:37 am
Hugo Kornelis (1/22/2015)
g.britton (1/22/2015)
Hugo Kornelis (1/22/2015)
g.britton (1/22/2015)
you may be right but the effect is exactly same so the fact that behind the scenes the process is different is probably irrelevant
The...
January 23, 2015 at 4:57 am
Hugo Kornelis (1/22/2015)
g.britton (1/22/2015)
you may be right but the effect is exactly same so the fact that behind the scenes the process is different is probably irrelevant
The shorter explanation is...
January 22, 2015 at 12:22 pm
you may be right but the effect is exactly same so the fact that behind the scenes the process is different is probably irrelevant
January 22, 2015 at 5:34 am
Just though I'd dispel the notion that only count(*) counts nulls:
select count('null') as count_null from (select null n union all select null) countnull
returns:
count_null
2
January 21, 2015 at 2:20 pm
Manic Star (1/13/2015)
January 14, 2015 at 8:40 am
For the literalist , the missing definition of the variable @output means the code doesn't run at all. But that's jus nit picking
December 26, 2014 at 9:13 am
Good article on some of the complexities here:
http://sqlblog.com/blogs/paul_white/archive/2011/12/23/forcing-a-parallel-query-execution-plan.aspx
December 24, 2014 at 7:00 am
Viewing 15 posts - 331 through 345 (of 499 total)