Viewing 15 posts - 6,676 through 6,690 (of 26,490 total)
My question is why should it? It is captured by the default trace.
April 24, 2014 at 10:24 am
gbritton1 (4/24/2014)
http://www.brentozar.com/archive/2012/07/identifying-correcting-sql-server-implicit-conversion/
I stopped relying on implicit conversion years ago. In fact, in all languages I write I try to adhere to the "Explicit...
April 24, 2014 at 10:18 am
And what is the problem?
April 23, 2014 at 6:36 pm
Here is some code:
create table dbo.Source (
EntryID int,
Categories varchar(200)
);
insert into dbo.Source
values
(541,'A,B,C'),
(345,'B,C'),
(234,'A,C'),
(657,'D,E'),
(435,'D');
go
create table dbo.Target (
EntryID int,
...
April 23, 2014 at 5:18 pm
below86 (4/23/2014)
Matt Miller (#4) (4/23/2014)
below86 (4/23/2014)
It is wierd that if you do .998 it shows as .997.
declare @d datetime;
set @d =...
April 23, 2014 at 4:26 pm
below86 (4/23/2014)
Lynn Pettis (4/23/2014)
below86 (4/23/2014)
WHERE (ath_postype = 'NTC' OR ath_postype='NTD')
AND ath_postdate BETWEEN '2013-01-01 00:00:00.000' ...
April 23, 2014 at 11:34 am
below86 (4/23/2014)
Wouldn't it be better to use the BETWEEN with these dates?
WHERE (ath_postype = 'NTC' OR ath_postype='NTD')
AND ath_postdate BETWEEN '2013-01-01 00:00:00.000' AND '2013-01-05 23:59:59.000'
And...
April 23, 2014 at 10:45 am
luismarinaray (4/23/2014)
For future reference,http://msdn.microsoft.com/en-us/library/ms190682.aspx#TsqlProcedure
Just making it easier for others:
http://msdn.microsoft.com/en-us/library/ms190682.aspx#TsqlProcedure
April 23, 2014 at 10:20 am
I have downloaded and looked at both of the latest sqlplans, both use the same index due to the use of the WITH(INDEX(AI_OperatorCBGEstimate_HAP)) index hint on the query.
April 23, 2014 at 10:08 am
ChrisM@Work (4/22/2014)
GilaMonster (4/22/2014)
ChrisM@Work (4/22/2014)
Systems here won't let me...
April 22, 2014 at 9:59 am
yuvipoy (4/21/2014)
Sorry i did not replace my table plan, now i replaced my plan with the table which i have give.
More issues. You renamed the table to TABLE2 and...
April 22, 2014 at 6:37 am
yuvipoy (4/21/2014)
Sorry i did not replace my table plan, now i replaced my plan with the table which i have give.
But you didn't answer any of the questions. Changing the...
April 22, 2014 at 1:54 am
Brandie Tarvin (4/21/2014)
Why, oh why, oh why do people insist on pulling scripts off the internet then asking us to modify them to do what they want the scripts to...
April 21, 2014 at 11:07 am
One other question, are we talking calendar years here?
April 21, 2014 at 7:28 am
PSB (4/21/2014)
According to the query time returned is 1970-03-12 19:15:49.000 .SELECT DATEADD(hh,-5,dateadd(s, convert(bigint, 6135349140000) / 1000000, convert(datetime, '1-1-1970 00:00:00')))
The correct time that should be returned is 2014 -03-20 03:27:00.00
That is...
April 21, 2014 at 7:05 am
Viewing 15 posts - 6,676 through 6,690 (of 26,490 total)