Viewing 15 posts - 1,276 through 1,290 (of 1,995 total)
ModifiedBy and ModifiedOn do require triggers, but unless there's a reason to just know who changed a row without having any idea what they changed, there's probably not that...
May 8, 2012 at 9:41 am
full text is stored outside the DB as full text catalogues - they have nothing to to with clustered or nonclustered indexes
see this article to get you started
http://www.simple-talk.com/sql/learn-sql-server/understanding-full-text-indexing-in-sql-server
full text indexing...
May 8, 2012 at 9:33 am
mldardy (5/8/2012)
SELECT CouncilName,...
May 8, 2012 at 9:28 am
I'm not sure if reading good suggestions from this forum would prevent many of newbies from being "promptly escorted off the premises" after interview with some of us :w00t:.
But,...
May 8, 2012 at 9:22 am
i would wager that this is faster
SELECT drm.requestid, DRM.RunningBoard,DRM.DutyBoard,DRM.DriverId,DRM.PublicServiceCode,DRM.ServiceCode,DRM.DepotCode,DRM.Direction,DRM.EOJMethod,DRM.JourneyNo,
CONVERT(datetime, MW.MessageTimeStamp,2) as MessageTimeStamp
FROM FactETMPositionRequests DRM
JOIN ETMMessage EM ON EM.ETMMessageID= DRM.ETMMessageID
JOIN MessageWrapper MW ON EM.WrapperID= MW.ID
WHERE
CONVERT(datetime, MW.MessageTimeStamp,2)...
May 8, 2012 at 7:06 am
it will change 100 MB data to 100MB+ 200 KB which is not important at all.
so how many times a day is this extra 200k being read from disk? once...
May 8, 2012 at 6:56 am
Jeff Moden (5/4/2012)
michael vessey (5/4/2012)
capn.hector (5/4/2012)
Eugene Elutin (5/4/2012)
Jeff Moden (5/3/2012)
michael vessey (5/2/2012)
does the following count as a loop?INSERT INTO dbo.yourTable default values
go 100
??:-P??
BWAAAA-HAAAA!!!!! Ask that question on the receiving...
May 8, 2012 at 2:52 am
Matthew Cushing (5/4/2012)
If I had another condition where a and b = us and c = null, can I just add another statement like this after the initial...
May 4, 2012 at 10:04 am
Matthew Cushing (5/4/2012)
May 4, 2012 at 9:55 am
you will need to supply more info on the stored procedure for anyone to be able to really help you - but my first question
is there the same amount...
May 4, 2012 at 9:48 am
you'll need to provide more information than that if you want people to be able to help you
first though - have you checked that SQL agent is running an that...
May 4, 2012 at 9:43 am
I'd also suggest that you have a carefull look in books online at the reference material for
set concat_null_yields_null on
set concat_null_yields_null off
these change the default behaviour of string concatenation involving...
May 4, 2012 at 9:38 am
SELECT l.Id
, MAX(CRM.dbo.fn_ConvertSFDateTime(e.CreatedDate)) AS lastevaluationdate__c
, e.ProductId__c AS lastevaluationproduct__c
FROM Customers.dbo.Evaluation__c AS e
INNER JOIN Customers.dbo.Lead AS l...
May 4, 2012 at 9:10 am
so the format of your query is
select x,y,max(z)
from mytable
where x<5
GROUP BY x,y
you must include all columns (except those you are aggregating) into the group by clause
May 4, 2012 at 9:06 am
oh - also if you have the budget for in house training then you might want to talk to a company based in Nottingham called "Quantix"
I worked for them for...
May 4, 2012 at 9:04 am
Viewing 15 posts - 1,276 through 1,290 (of 1,995 total)