Viewing 12 posts - 1 through 12 (of 12 total)
gbritton1 (5/13/2014)
I'm still not sure how to extract that actual path (i.e. conventional Windows path name)
During my investigation on this question, I came across documentation on the FileTableRootPath function. "It...
May 13, 2014 at 8:07 am
Ed Wagner (5/7/2014)
TomThomson (5/7/2014)
Stuart Davies (5/7/2014)
BWFC (5/7/2014)
Litterletter
latter
Ladder
Jacob
May 7, 2014 at 7:53 am
whereisSQL? (5/6/2014)
Ed Wagner (5/6/2014)
SQLRNNR (5/6/2014)
Revenant (5/6/2014)
Ed Wagner (5/6/2014)
crookj (5/6/2014)
SQLRNNR (5/6/2014)
Stuart Davies (4/29/2014)
Zeusdog
Day Afternoon
Beach
Boys
Beatles
Bug
Squish
(y) Boots
("The Strange Tale of the Crack Fox")
May 6, 2014 at 2:12 pm
Sean Lange (5/6/2014)
bkmsmith (5/6/2014)
create table abc_test
(
id int
,runs int
,date1 datetime
)
;
insert into abc_test
(
id
,runs
,date1
) values
('24','1','2013-12-05 10:00:01.000'),
('24','2','2013-12-05 10:00:02.000'),
('25','1','2013-12-05 10:00:03.000'),
('25','2','2013-12-05 10:00:04.000'),
('25','3','2013-12-05 10:00:06.000'),
('26','1','2013-12-05 10:00:07.000'),
('26','2','2013-12-05 10:00:08.000'),
('27','1','2013-12-05 10:00:09.000')
;
SELECTT2.id
, [runs] = T2.MaxRuns
, T1.date1
FROMdbo.abc_test T1
INNER...
May 6, 2014 at 1:34 pm
Here is another option.
create table abc_test
(
id int
,runs int
,date1 datetime
)
;
insert into abc_test
(
id
,runs
,date1
) values
('24','1','2013-12-05 10:00:01.000'),
('24','2','2013-12-05 10:00:02.000'),
('25','1','2013-12-05 10:00:03.000'),
('25','2','2013-12-05 10:00:04.000'),
('25','3','2013-12-05 10:00:06.000'),
('26','1','2013-12-05 10:00:07.000'),
('26','2','2013-12-05 10:00:08.000'),
('27','1','2013-12-05 10:00:09.000')
;
SELECTT2.id
, [runs] = T2.MaxRuns
, T1.date1
FROMdbo.abc_test T1
INNER JOIN
(
SELECTid
, [MaxRuns] =...
May 6, 2014 at 12:59 pm
Hugo Kornelis (5/1/2014)
The TechNet documentation quoted above describes the ideal behaviour of optimizer + execution engine. It even explicitly says so: "the query optimizer assigns these roles so that the...
May 1, 2014 at 1:05 pm
gbritton1 (5/1/2014)
It reads, in part:
The hash join has two inputs: the build input and probe input. The query optimizer assigns these roles so that...
May 1, 2014 at 7:49 am
PHYData DBA (4/29/2014)
It is an option in the database properties page.
+1
This is the link that I referenced when researching this QOTD, and found it very informative.
Thanks for another great...
April 29, 2014 at 8:15 am
patrickmcginnis59 (8/2/2012)
bitbucket-25253 (8/2/2012)
Incorrect answers: 63% (129)
Total attempts: 205
And the implications this could have to...
August 2, 2012 at 7:59 am
sestell1 (6/25/2012)
mtassin (6/25/2012)
sestell1 (6/25/2012)
Does anyone know what SQL...
June 25, 2012 at 9:28 am
I could completely relate to the comment in the article that 'job titles held no meaning for him'. Given that I have been working as a 'technical consultant' for the...
May 20, 2010 at 8:28 am
I would most likely not be interested in live/video content. I predominantly consume the articles, scripts, and editorials, and have found these resources to be worthwhile. Browsing through the forums...
May 14, 2010 at 8:29 am
Viewing 12 posts - 1 through 12 (of 12 total)