Viewing 15 posts - 796 through 810 (of 1,825 total)
Im not to surprised by that.
You need to follow the advice give in the link i gave earlier , it still doing table scans which are making any possible gain...
June 21, 2010 at 4:04 am
eddy-644184 (6/21/2010)Tnx you verry much for you superlightning fast reply with the correct link
Glad to help , though as far as correct goes, there are other methods that may be...
June 21, 2010 at 3:48 am
June 21, 2010 at 2:52 am
If you *Have* to search for a title that contains the text contained in @keyword within in , then full text searching may be a viable alternative.
June 21, 2010 at 2:43 am
Hi,
Please see this link http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
June 21, 2010 at 1:53 am
From what i can gather....
the install of msxml6 failed.
Looking at its log (SQLSetup0003_AERO70413_MSXML6_1)
I see...
"This package is not supported on this operating system"
The Error 2's look like they are pretty irrelevant...
June 18, 2010 at 8:23 am
Good stuff,
just be sure sure that you understand the assumptions made in the code.
an out will always follow an in
the source data will always start with an in.
June 18, 2010 at 8:08 am
Grant Fritchey (6/18/2010)
And in addition to all that, I'd like to recommend a good book... look down.
Thats scarily close to an advert 😉
June 18, 2010 at 7:31 am
untested but should be what you are after...
with cteDeviceMovements
as
(
SELECT dm.deviceId,
m.movementId,
m.date,
Row_number() over (partition by dm.deviceId order by m.movementId)%2 as Rown
FROM dbo.DeviceMovement dm
INNER JOIN dbo.Movement m
ON dm.movementId = m.movementId
WHERE m.sourceLocationId =...
June 18, 2010 at 7:25 am
There are DMV's that may show you the queries that have been executed and still in cache.
The obvious issue is that not all the queries may be in the cache...
June 18, 2010 at 5:42 am
A server side trace is (very ?) light
http://sqlblog.com/blogs/linchi_shea/archive/2007/08/01/trace-profiler-test.aspx
June 18, 2010 at 4:49 am
Viewing 15 posts - 796 through 810 (of 1,825 total)