Viewing 15 posts - 19,591 through 19,605 (of 59,072 total)
coolchaitu (9/11/2015)
INDEX = IX_tblGPSDataDetail_DeviceID_GPSDateTime ON dbo.tblGPSDataDetails
(
DeviceID {udt_DeviceID 4}
, GPSDateTime {varchar 50}
, DataReceviedDateTime {udt_date 8}
)
INCLUDE
(
...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 11, 2015 at 2:43 pm
Alvin Ramard (9/10/2015)
I know one recruiter that will ask a weird question during his first contact with...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 9:26 pm
It sounds to me like you already had your mind made up when you posted your question. If everything you're doing is FREE and you're happy with performance and...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 9:09 pm
mohelsheikh (9/10/2015)
the problem is i don't have enough permission to create task or linked server. this why i am using this complicated way to save the record...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 8:56 pm
pietlinden (9/10/2015)
It's a recruiter, which makes me wonder, because the number of recruiters in this town that understand and can evaluate the "goodness" of T-SQL code is less than 5....
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 10:36 am
akash_singh (9/10/2015)
i am using group by to get distinct data.
That would also be a part of the problem. It would seem that you might have an accidental many-to-many join going...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 9:01 am
Grant is spot on. Column names encapsulated in formulas and OR in the WHERE clause is likely the larger problem.
A part of the problem may be due to the...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 8:58 am
Please post your new code that uses the DelimitedSplit8K function and attach the actual execution plan, as Gail asked.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 8:24 am
I think the biggest problem that people have with the analysis of any size data is that they have some preconceived notion of what they want to see rather than...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 8:17 am
jghali (9/9/2015)
anything else I should look at?
Yes... despite your misgivings, you can't fix a car that you can't touch never mind see. Ask for a copy of the actual...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 7:57 am
pietlinden (9/9/2015)
"Can you send me samples of your code?"
Without a job description (even a title would suffice!), I'm not sure what they're...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 10, 2015 at 7:49 am
What's up? Did you quit or did you get the answer that you think you want from somewhere else?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 9, 2015 at 11:14 pm
Sweetbee870 (9/9/2015)
Select FirstName, LastName, Title
from Employees
See attached the Results. I need know how to only retrieve records for "Sales Representatives"
Hope this is...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 9, 2015 at 11:08 pm
Welcome.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 9, 2015 at 11:05 pm
ScottPletcher (9/9/2015)
Jeff Moden (9/9/2015)
It looks like someone may have followed the old idea of adding one index to each column that could ever be used in a WHERE clause and...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 9, 2015 at 5:31 pm
Viewing 15 posts - 19,591 through 19,605 (of 59,072 total)