Viewing 15 posts - 421 through 435 (of 3,475 total)
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
Since a MERGE is basically an INSERT/UPDATE, and you have 3 possible caes, you might want to just skip the MERGE and use separate INSERT/UPDATE statements.
IF (TestInvalid)
BEGIN
INSERT INTO FailTable()....
END
ELSE
IF EXISTS().... ...
December 17, 2021 at 5:18 am
If it's not working when it's crazy complex, why not simplify and built it a piece at a time?
The error message is pretty clear. Any time you create a totals/aggregate...
December 17, 2021 at 2:21 am
IF <test>
BEGIN
SELECT... FROM...WHERE... <params>
END
ELSE
SELECT...FROM WHERE <different params>
There's nothing stopping you from forking the two queries with an IF statement.
December 15, 2021 at 3:43 pm
What do you mean "second temp table"? You can define multiple CTEs inside your expression, and then just use them both/all in the final one.
WITH cte1 (col1, col2, col3)
AS (SELECT...),
cte2(colA,...
December 14, 2021 at 3:56 am
COALESCE(column,0) ?
December 14, 2021 at 12:38 am
Totally missed it... sounds like the classic Islands problem. (Clump all contiguous spans together).
SQL Server Window Functions Gaps and Islands Problem (mssqltips.com)
December 10, 2021 at 1:30 am
If you need to look at previous or next records in a set, use LAG() or LEAD() with an OVER clause. then you can use conditional logic to see if...
December 9, 2021 at 7:29 pm
Without the CREATE TABLE and INSERT scripts, all we can do is guess. Could you post them?
December 9, 2021 at 2:13 am
so you're looking for a date where there are no scheduling conflicts? (the span of the meeting doesn't overlap/conflict with any meetings of any of the invited participants)?
Sorry, it's just...
December 6, 2021 at 11:47 pm
The dead giveaway that you're new to SQL is that you said these were complex.
What did you try? Post the SQL. People will help you if you do that. If...
December 6, 2021 at 3:01 am
Viewing 15 posts - 421 through 435 (of 3,475 total)