Viewing 15 posts - 226 through 240 (of 391 total)
I rebooted the server and ran one test - 29 secs, then immediately ran a second test - 25 secs.
Still quite a bit slower than the desktop!
February 16, 2010 at 1:01 pm
Both tests were done directly on the desktop and on the server, not across the network.
The times were provided by SSMS.
Tables, indexes etc.. were exactly the same.
February 16, 2010 at 12:22 pm
Chris Morris-439714 (1/15/2010)
SELECT Email1,Email2,Email3, Email4,Email5,Email6,Email7,Email8,Email9,Email10 FROM outputresume3
WHERE ((contains (originalresume, '"j2ee" and "java"'))
AND (currentdateout BETWEEN '2000-01-01' AND '2010-01-06'))
change it...
January 15, 2010 at 9:16 am
Chris Morris-439714 (1/15/2010)
ifila (1/14/2010)
After 25 years of dealing with IT people, I guess sometimes one can get cantankerous.Thanks to all the constructive contributors!
Guilty of cantankerism as charged -...
January 15, 2010 at 8:43 am
After 25 years of dealing with IT people, I guess sometimes one can get cantankerous.
Thanks to all the constructive contributors!
January 14, 2010 at 12:20 pm
david.tyler (1/14/2010)
January 14, 2010 at 12:05 pm
A few months ago, a forum member suggested reducing the size of the email fields from 1000 to something more reasonable.
So i created a TestDB that is an exact copy...
January 14, 2010 at 9:43 am
Thanks!
January 14, 2010 at 9:25 am
Lynn Pettis (1/13/2010)
Again, I have to ask, can the user specify the data range used in the query?
Apologies i missed you question - yes they can
Selection Criteria can be:
Email...
January 13, 2010 at 1:51 pm
GilaMonster (1/13/2010)
ifila (1/13/2010)
BTW based on some initial performance testing with Gail's solution:
If i set TOP 60000 using her query it takes 8 seconds to get...
January 13, 2010 at 1:22 pm
Chris Morris-439714 (1/13/2010)
ifila (1/13/2010)
Lynn Pettis (1/13/2010)
January 13, 2010 at 10:52 am
Lynn Pettis (1/13/2010)
If so,...
January 13, 2010 at 10:40 am
GilaMonster (1/13/2010)
SELECT COUNT(Email) AS NumberOfEmails -- get the count
FROM (
SELECT DISTINCT TOP 15 Email -- get 15 unique emails
FROM (
SELECT Email1,Email2,Email3, Email4,Email5,Email6,Email7,Email8,Email9,Email10 FROM...
January 13, 2010 at 9:34 am
Lynn Pettis (1/13/2010)
January 13, 2010 at 9:29 am
Lynn Pettis (1/13/2010)
ifila (1/13/2010)
(
Email1 nvarchar(1000),
Email2 nvarchar(1000),
Email3 nvarchar(1000),
Email4 nvarchar(1000),
Email5 nvarchar(1000),
Email6 nvarchar(1000),
Email7 nvarchar(1000),
Email8 nvarchar(1000),
Email9 nvarchar(1000),
Email10 nvarchar(1000)
);
INSERT INTO #OutputEmails SELECT Email1,Email2,Email3,Email4,Email5,Email6,Email7,Email8,Email9,Email10 FROM OutputResume3
where (contains (originalresume, '"livelink" and "java"'))
select count(DISTINCT...
January 13, 2010 at 9:20 am
Viewing 15 posts - 226 through 240 (of 391 total)