Viewing 15 posts - 436 through 450 (of 3,500 total)
You would have to use two separate queries to accomplish it if you replace the LEFT JOIN.
UPDATE r
SET r.HasChemical=CASE WHEN cm.partid IS NOT NULL THEN 'HasChemical' ELSE...
December 28, 2021 at 2:19 am
You would have to filter those out in the WHERE clause in the inner query.
SELECT FIRSTVALUE(…)
FROM (Select…WHERE elementID !=‘C’)
December 24, 2021 at 11:49 pm
Disassemble the CTE into single queries and run them one at a time?
insert the intermediate results into a temporary table once you fix them and then query tempdb?
December 24, 2021 at 1:12 am
I would just create the proper tables (not munging all the data into a single table) and then put in fake data to test it. So maybe 3-4 records in...
December 23, 2021 at 2:48 am
I have a DB full of RACES and RUNNERS, COURSES, STATS etc etc. One horse could appear in the table dozens of times
I think you may be missing a table....
December 22, 2021 at 11:57 pm
That's the weird thing about DAX / PowerBI... the reports are fully interactive. You can get data from a stored procedure or view that has no aggregates at all, and...
December 22, 2021 at 8:36 pm
Except I'm not talking about normal SQL Server/T-SQL, except to get data out of SQL Server and into the data model. I'm talking about DAX. =)
Here are the measures for...
December 22, 2021 at 5:15 am
I was pointing that out to the OP... Maybe read a little of The Data Warehouse Toolkit to learn how to build star schemas might be in order. I didn't...
December 22, 2021 at 4:22 am
I think writing summary queries in T-SQL is the wrong way to go if you're consuming the data in PowerBI. It's fine to create views using T-SQL to populate your...
December 21, 2021 at 8:46 pm
This is super handy!
I should use this to create a super simple PowerBI file and write all the measures there, so you can see how it works. The reason I...
December 21, 2021 at 5:49 pm
You're welcome.
I was asking because if you're doing this in PowerBI, and using DAX, then you should use a star schema instead of an OLTP one. The easiest way of...
December 21, 2021 at 4:08 am
DATE2 >= '01-01-2021' AND DATE2 <'01-01-2022' ORDER BY DATE2 DESC;
December 19, 2021 at 10:07 pm
Please read: Forum Etiquette: How to post data/code on a forum to get the best help
You can script table creation and inserts and copy them to the clipboard and...
December 19, 2021 at 3:49 am
I was asking because you can do things in DAX that are crazy hard in SQL. Like removing filters by using the ALL() function.
If you have to learn DAX, Rob...
December 18, 2021 at 5:27 pm
I am inserting SQL code into a data visualization tool
Which one? If you're using Excel or PowerBI, you can very likely use DAX for this. (Except DAX is not like...
December 18, 2021 at 2:28 am
Viewing 15 posts - 436 through 450 (of 3,500 total)