Viewing 15 posts - 8,281 through 8,295 (of 49,571 total)
There's nothing about local variables which prevent index usage.
That 30% is the worst possible case for a guess by the optimiser, not the norm. If it can manage a better...
August 4, 2014 at 6:46 am
MuhammadShafiq (8/4/2014)
I am not using data mining here and i do not want to.
Then why are you asking about all the data mining algorithms? That's what all the algorithms you...
August 4, 2014 at 6:15 am
Do you understand what data mining is used for? If not, please do a bit of reading on it.
The question is still too vague to be answerable.
August 4, 2014 at 6:03 am
Ed Wagner (8/4/2014)
GilaMonster (8/4/2014)
And vague question of the week award goes to: http://www.sqlservercentral.com/Forums/Topic1599205-391-1.aspxI want to make my search query faster and accurate.
DO i need to use any algorithem in SQL?
So...
August 4, 2014 at 5:53 am
And vague question of the week award goes to: http://www.sqlservercentral.com/Forums/Topic1599205-391-1.aspx
I want to make my search query faster and accurate.
DO i need to use any algorithem in SQL?
August 4, 2014 at 5:42 am
That's a pretty vague question. Could you be any more specific?
August 4, 2014 at 5:41 am
EXEC sp_help_job <parameters>
August 4, 2014 at 3:44 am
You will need something in the next step of your local job to poll/wait in a loop, checking the status of the remote job to see if it's finished.
sp_start_job does...
August 4, 2014 at 3:31 am
WhiteLotus (8/3/2014)
GilaMonster (8/3/2014)
murnilim9 (7/30/2014)
Moreover , I noticed the PAGE SPLIT/Sec is still high ..around 90 . How do i know which table that cause that page split ?
That counter is...
August 3, 2014 at 10:06 am
raj.prabhu001 (8/3/2014)
It will also have more fields later with millions of...
August 3, 2014 at 10:06 am
murnilim9 (7/30/2014)
Moreover , I noticed the PAGE SPLIT/Sec is still high ..around 90 . How do i know which table that cause that page split ?
That counter is misleading. It...
August 3, 2014 at 5:56 am
Eirikur Eiriksson (8/2/2014)
Jeff Moden (8/2/2014)
August 2, 2014 at 2:58 pm
Also need to keep in mind that CDC is Enterprise Only.
p.s. Nolock has side effects, it's not a go-faster switch that should be added to every single statement. Let's not...
August 2, 2014 at 2:25 pm
WITH Employees AS (
SELECT
[LastName] + ',' + [FirstName] AS FullName
,HireDate
,Title
,DepartmentName
,BaseRate
,VacationHours
,SickLeaveHours
,ROUND(DATEDIFF(DAY,HireDate,'2014-08-01')/365.25,2) AS EMP_TENURE
,(SOME LOGIC OFF OF VACATION DAYS) AS PTO_REMAINING
FROM [AdventureWorksDW].dbo.DimEmployee
)
SELECT
FullName
,HireDate
,Title
,DepartmentName
,BaseRate
,VacationHours
,SickLeaveHours
,EMP_TENURE
,PTO_REMAINING
, (SOME LOGIC INVOLVING 'EMP_TENURE' AND 'PTO_REMAINING') AS BONUS
, (SOME...
August 2, 2014 at 12:50 pm
Daniel Matthee (8/2/2014)
August 2, 2014 at 12:36 pm
Viewing 15 posts - 8,281 through 8,295 (of 49,571 total)