Viewing 15 posts - 1,276 through 1,290 (of 1,999 total)
mldardy (5/8/2012)
SELECT CouncilName, LastYearQtyActualContainers as...
May 8, 2012 at 9:57 am
here are the ways full text indexes are updated - typically they get updated on a schedule - therefore your results will not be realtime
http://msdn.microsoft.com/en-us/library/aa214782(v=sql.80).aspx
May 8, 2012 at 9:55 am
michael vessey (5/8/2012)
see this article to get you started
http://www.simple-talk.com/sql/learn-sql-server/understanding-full-text-indexing-in-sql-server
full...
May 8, 2012 at 9:50 am
Sorry, I hate such questions. They are generic and very personal!
Someone need to remember to make backups, another one should remember to hit save before closing script file and...
May 8, 2012 at 9:48 am
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
Viewing 15 posts - 1,276 through 1,290 (of 1,999 total)