Viewing 15 posts - 91 through 105 (of 390 total)
Thanks for the feedback guys!
BTW I have hired consultants, and Microsoft Enterprise support was not free either, but it seems to be a case of "the more cooks spoil the...
June 20, 2012 at 8:44 am
I dont know what they do, other than make the query faster!
I have had a few DBA's and Microsoft Enterprise support work with me on this query, and was told...
June 20, 2012 at 8:24 am
USE [JobPortalIANdell297061412]
GO
/****** Object: StoredProcedure [dbo].[GetAllResumesSearchedDynamicQuery2FTI_6-19-12part2] Script Date: 6/20/2012 10:01:39 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ============================================= ...
June 20, 2012 at 8:07 am
At the moment i am using the following:
inner loop join alldocuments dc With (nolock) on p.idnew = dc.id
set @QueryCondition = @QueryCondition + ' and contains(dc.doccontent,''' + @Name1...
June 20, 2012 at 8:06 am
Its a question, i am trying to use the select within the contains statement and cant get it to work!
June 20, 2012 at 7:54 am
I removed the ‘GUID’ field and used an ‘INT’ ID field instead for the primary key and clustered indexes, and got the query down to:
SQL Server Execution Times:
...
June 12, 2012 at 8:08 pm
I used a Temp Table, but it made the query a lot slower!
I also used the loop joins and nolock because they improved performance.
By combining CTE, loops joins and nolock,...
June 12, 2012 at 2:14 pm
Thanks guys!
June 5, 2012 at 6:50 am
GilaMonster (6/4/2012)
June 4, 2012 at 12:12 pm
This is my current execution plan.
To search 6 months of resumes for 'java', takes about 4 seconds and returns 22k records.
I would like to get that...
June 4, 2012 at 11:53 am
SQLKnowItAll (6/4/2012)
isuckatsql (6/4/2012)
Would it be best to do four partitions on one year, or eight partitions on six months,...
June 4, 2012 at 11:29 am
I have four years of data that i would like to partition.
Would it be best to do four partitions on one year, or eight partitions on six months, and allow...
June 4, 2012 at 11:07 am
GilaMonster (6/4/2012)
isuckatsql (6/4/2012)
I cant get even get the select count to work!
The one in the initial post? It won't work, it's Oracle syntax not SQL Server
Do a count and filter...
June 4, 2012 at 11:00 am
SQLKnowItAll (6/4/2012)
I have two columns, ID and DocContent.
How would i structure my Select statement to display records in the first partition(up to 1000000 records) with an ID < 100?
SELECT ID,...
June 4, 2012 at 10:58 am
Viewing 15 posts - 91 through 105 (of 390 total)