Viewing 15 posts - 31 through 45 (of 119 total)
I'm currently trying something like this:
DECLARE @t TABLE (Id INT)
INSERT INTO @t
SELECT 108 UNION ALL
SELECT 102 UNION ALL
SELECT 103 UNION ALL
SELECT 101;
DECLARE @t2 TABLE (CategoryId INT, Id INT)
INSERT INTO @t2
SELECT...
October 17, 2014 at 11:30 am
Thanks for your help. On table @t2, Id however is not primary key so if I had a the following data set, the solution would not work:
DECLARE @t2 TABLE (CategoryId...
October 17, 2014 at 10:56 am
Thanks for your response.
The result sets returned for those data sets are different (number of columns returned / data types) so not sure if it's possible to do this in...
August 18, 2014 at 11:17 am
Thanks for the advice. I got two working solutions but I'm sure it could be improved so I though I would post and see what experts say. What I currently...
July 17, 2014 at 11:17 am
Hi Lynn,
Thanks for your response. You would need to add the following synonyms to your thesaurus file (tsenu.xml) to see some sample data (located at ...\MSSQL\FTData\)
<expansion>
...
July 16, 2014 at 4:58 pm
Thank you.
I would also like to search for synonym words, however they should not be counted separately. Note, these synonyms could also be placed in a new table, they don't...
July 14, 2014 at 6:54 pm
Jeff Moden (6/17/2014)
clayman (6/17/2014)
June 17, 2014 at 9:51 pm
Thank you!
I have two follow up questions.
Is there a way to change the query so that it only counts the word(s) once per row?
Also, I would like to count...
June 17, 2014 at 5:25 pm
Thank you for your quick response. Table @t may store up to 25,000 rows (I used table variable just for demonstration purposes) and yes it is a varchar(max).
Yes, I would...
June 17, 2014 at 4:35 pm
Thank you for the heads up, I'll fix that! Any suggestions regarding the gap for the 25.00 - 49.00 range?
June 9, 2014 at 1:01 am
Hi,
Thank you for taking the time to respond!
Consider the following:
DECLARE @num AS TABLE (
ID INT IDENTITY(1, 1),
Price Money);
DECLARE @range AS TABLE (
ID INT IDENTITY(1,...
June 8, 2014 at 11:21 pm
Jeff Moden (4/12/2014)
clayman (4/12/2014)
So I was asked to answer a bunch of nasty Xpath syntax questions, needless to say I didn't get the job (not that I mind).
What type...
April 17, 2014 at 7:01 pm
So I was asked to answer a bunch of nasty Xpath syntax questions, needless to say I didn't get the job (not that I mind).
April 12, 2014 at 9:15 am
Luis Cazares (1/31/2014)
Why would they hire you?
Personal experiences on problems and how were they solved.
What...
January 31, 2014 at 5:47 pm
Also, Express with advanced services has SSRS (no SSIS though).
December 5, 2013 at 8:57 am
Viewing 15 posts - 31 through 45 (of 119 total)