Viewing 15 posts - 1,186 through 1,200 (of 3,500 total)
You're looking for something called Market Basket Analysis.
This article might be helpful
November 20, 2018 at 10:03 am
We can't see your data. How are we supposed to advise you?
PowerBI is sort of cool, but the fact that you can't write back to sources BLOWS.
use SSIS instead?
November 20, 2018 at 9:12 am
DECLARE @start_date date
DECLARE @end_date date
SET @start_date = DATEADD(YEAR, -1, GETDATE())
SET @end_date = GETDATE()
Instead of the above value for @start_date, you could do something...
November 14, 2018 at 9:07 pm
Should be in the ExecutionLog
https://docs.microsoft.com/en-us/sql/reporting-services/report-server/reporting-services-log-files-and-sources?view=sql-server-2017
Here's a really helpful article I found...
https://www.sqlchick.com/entries/2011/2/6/querying-the-report-server-execution-log.html
Sue's right... I think your question is backwards... SSRS reports connect to databases...
November 14, 2018 at 5:07 pm
Difference between what? The SSI1, SSI2, and SSI3 columns?
If they're dates, use DATEDIFF(), otherwise just subtract.
November 14, 2018 at 12:48 pm
That's how input parameters are declared. That's just how T-SQL works.
November 11, 2018 at 7:29 pm
Why are you VARCHAR columns and then storing numbers in them? Why is a column like Withdraw_Percentage not a decimal or similar?
November 11, 2018 at 3:25 pm
I would like to create a stored procedure based on anexisting table, where the stored procedure will automatically create a newtable with additional columns of data in the right...
November 11, 2018 at 2:01 pm
How far did you get writing this? Pretty good bet that nobody is going to write this for you.
And what's the deal with all the NVARCHAR(MAX) columns? What are...
November 10, 2018 at 6:22 pm
Putting all the files together on one drive invites a single point of failure disaster, so that's just plain wrong. Say they're all on the same drive, and the drive...
November 9, 2018 at 12:54 am
Can you go back to the person that created the dataset and ask them to add it? (super annoying, but I have no idea how else to do it!)
November 8, 2018 at 12:07 pm
Are you authoring your report or just consuming it? Maybe you don't have rights to add columns?
November 8, 2018 at 11:57 am
In SSRS, you can right-click on your dataset, and then choose "Add Calculated Field" and then do something like =LEFT(Fields!Protocol.Value,3)
Then you can group by that...
November 8, 2018 at 10:34 am
CAST(AVG(((CASE WHEN vWorkOrders.StatusCode = 'CMPLT' THEN 1.0 ELSE 0.0 END)/1.0)*100) AS DECIMAL(10,2) as [Completed],
?
November 8, 2018 at 8:03 am
Is this an SSIS question?
Why not just use a DELETE/TRUNCATE statement on the source table after the insert, maybe inside a transaction?
November 7, 2018 at 10:08 pm
Viewing 15 posts - 1,186 through 1,200 (of 3,500 total)