Viewing 15 posts - 1 through 15 (of 29 total)
It turns out that the SQL 2014 version I installed is an Express, and Full-Text Indexing is excluded from Express.
What can I do if I want to search varchar(2000)...
February 25, 2020 at 4:14 pm
Thank you so much for your quick reply. It is working as amazing miracle.
February 24, 2020 at 11:15 pm
Here is the screenshot of my email inbox. I was wondering why Lynn would have replied three times. Sorry Lynn.
February 17, 2020 at 10:10 pm
hmmm, I didn't realize I started three threads, indeed I encountered some hiccup when I posted it - the browser just hangs there - I had to re-submitted it,...
February 17, 2020 at 10:08 pm
Thank you Erland, I see only one post from Lynn, but I did receive three notification emails about her posts.
February 17, 2020 at 9:52 pm
Thank you Lynn,
Per your link it says:
match_expression [ NOT ] LIKE pattern [ ESCAPE escape_character ]
In my case I used: where city like '%' + @pattern + '%'
set...
February 17, 2020 at 9:17 pm
Actually I just noticed that post is about PL/SQL and Oracle, not SQL Server. What SQL Server and Oracle call Analytic Functions could be different, as same named functions...
January 8, 2020 at 3:01 pm
Thom beat me to it!
microsoft.com vs amis.nl ... I know which source I'm going with.
Haha, thank you Phil and please don't get panic on me, happy new year
January 8, 2020 at 2:55 pm
That post is from 2004, it's almost 16 years old and based on SQL Server 2000... None of the Analytic functions even existed in 2004; most of them...
January 8, 2020 at 2:53 pm
Thanks John,
DENSE_RANK() is an analytical function
No it isn't, it's a Window function.
John already provided a link to analytic functions. Had you followed it, you would have seen that...
January 8, 2020 at 2:36 pm
Thank you Jonathan for the answer, it returns expected result: top 2 for each group, that's what I want.
January 8, 2020 at 2:07 pm
Thanks John,
DENSE_RANK() is an analytical function
Below is what I tried:
Select *
From Freelancer t
Where t.ID in (
Select top 2 ID
From Freelancer tt
Where tt.fl_name = t.fl_name
Order by tt.bonus desc
)
Order...
January 8, 2020 at 1:40 pm
Thanks.
Restriction:
No any analytical function should be used in the query and no temp table.
January 8, 2020 at 12:16 pm
Thank you DesNorton for catching that.
January 8, 2020 at 5:07 am
added back. sorry again.
January 8, 2020 at 5:05 am
Viewing 15 posts - 1 through 15 (of 29 total)