Viewing 15 posts - 1,336 through 1,350 (of 3,489 total)
General rule of thumb when you're not sure of a design - create the tables you think are correct. Then write queries to answer the questions you have about the...
February 12, 2018 at 2:50 pm
What does the raw data look like? The results of a Matrix are useless if you're trying to create a chart - you need the unpivoted data.
February 12, 2018 at 12:01 pm
That looks more like the underlying table is set up wrong. Either that or your example is misleading.
If your table is set up wrong, a query like this might...
February 12, 2018 at 7:52 am
Jeff,
I would model it like this:
Person--(1,M)--FoodAllergy--(M,1)--FoodItem--(1,M)--Ingredient_In--(M,1)--Recipe
Person has FoodAllergy to FoodItem which can be an Ingredient in one or more Recipes.
The structure of a junction table,...
February 11, 2018 at 11:20 am
I have a pie chart thats taking data from one of the dataset. My dataset...
February 9, 2018 at 10:52 pm
February 9, 2018 at 9:17 am
Probably the easiest way is to stack the tablixes on top of one another and set the visibility property based on the parameter value.
February 8, 2018 at 5:55 pm
Jack,
Luis' answer fixed it. This is the query I ended up using that worked for me:SELECT candidate_id, first_name, last_name
FROM Candidate AS c
WHERE (NOT...
February 8, 2018 at 5:52 pm
Super cool, Luis! Many graces!
This worked:SELECT candidate_id, first_name, last_name
FROM Candidate AS c
WHERE (NOT EXISTS
(SELECT 1 AS Expr1
FROM Candidate...
February 8, 2018 at 4:40 pm
Oh, super handy! Thanks for asking... I was playing with the SSRS end of this... Getting the count of selected values is easy in SSRS. It's the passing that back...
February 8, 2018 at 12:24 pm
Jack,
I asked a question about how to do this in another forum. Check this out:
https://www.sqlservercentral.com/Forums/1922517/EXISTS-ALL#bm1922645
February 8, 2018 at 11:25 am
Jason,
Wow. I'll take a while to get my head around all this. Say I'm using SSRS as a front end to this - Essentially "Show me all candidates that...
February 8, 2018 at 10:57 am
Exercised my Google-fu... Relational division, anybody?
https://stackoverflow.com/questions/15977126/select-rows-that-match-all-items-in-a-list
February 7, 2018 at 6:46 pm
I'm working on it... In T-SQL, it would be like this:
(Yes, I'm aware that this table design of Candidate is silly!!!)
.CREATE TABLE Candidate(
CandidateID INT...
February 7, 2018 at 5:55 pm
One thing to do is go find the local SQL Server User Group and go to the meetings. Open positions are often announced at the beginning of each meeting. If...
February 7, 2018 at 11:47 am
Viewing 15 posts - 1,336 through 1,350 (of 3,489 total)