Viewing 15 posts - 466 through 480 (of 3,500 total)
Seems like you could create a step in your SSIS package that groups all the files that start or end with the same prefix/suffix together. Then just use a For...
November 29, 2021 at 7:03 am
I think this does what you want:
select person_id,
string_agg(name_change,' || ')
from dbo.test
group by person_id;
November 29, 2021 at 4:20 am
Are you using Access to write your queries? Shouldn't that HAVING clause be a WHERE clause?
Why are you storing dates as text?
November 26, 2021 at 5:51 pm
You're looking for LAG().
SELECT from_set
,prevVal = LAG(from_set,1) OVER (ORDER BY from_set)
FROM Test;
November 24, 2021 at 6:10 am
Found and article that does most of what I want. Now to build it and practice... oh, and break it, just so I know what it looks like when it...
November 22, 2021 at 6:51 am
Uh oh... so I should learn some basic C# or Powershell (or both).
I guess it's time to look for a good validation tutorial maybe. Thanks!
November 21, 2021 at 8:21 pm
You would have to modify the bottom part of the query...
SELECT Field1, Field2, Field3
FROM
(SELECT Cast('DQUOTE'+Member4Parent.NAME+'DQUOTE' AS VARCHAR(20)) AS Field1 ,
...
November 21, 2021 at 5:57 pm
Where's b.[DMDPostDate] is your SELECT statement, because it's in your GROUP BY clause?
November 21, 2021 at 5:12 am
Do you have an existing OLTP database to build from?
What does each record in your fact table represent? What kind of reporting/summarizing do you want to do?
The fun part is...
November 18, 2021 at 6:43 pm
Are all the KEN_N## tanks or something? Sounds like a design flaw. What does the underlying table look like?
November 17, 2021 at 11:07 pm
Generate CREATE TABLE and INSERT scripts using the data table in your zip file, and then copy and paste the scripts into the window. most folks on here won't go...
November 16, 2021 at 10:08 pm
If a parent record doesn't have 30 previous periods/records, then you want to exclude it?
Any chance you could translate your question into a Sales kind of question, so I can...
November 16, 2021 at 8:05 pm
Got some data for us to play with? That's not data.
November 16, 2021 at 7:08 pm
Can you do PowerQuery inside ADF?
Remove Top N Rows, Remove Bottom N Rows. Done.
November 16, 2021 at 6:49 pm
a standard rolling window would be something like
SUM([Qty]) OVER (PARTITION BY <columnName> ORDER BY <date> ROWS BETWEEN PREVIOUS 30 ROWS AND CURRENT ROW)
and then you would divide by that.
November 16, 2021 at 4:24 am
Viewing 15 posts - 466 through 480 (of 3,500 total)