Viewing 15 posts - 1 through 15 (of 24 total)
not quite what I'm suggesting... I think that path would end up in the same place you're at now. I'm saying create a stored proc in the Source DB, in...
December 4, 2019 at 8:53 pm
if you're determined to use SSIS Data Flow, one more iteration to try is creating a Stored Proc that only does the SELECT and put that in the OleDB source
December 4, 2019 at 8:41 pm
Is that your drill to or drill from report in the screenshot? that button will only appear on the report you drill to when you've gotten there from the drill...
December 4, 2019 at 3:11 pm
if you're trying to get that parallelism from the source you'll need 8 copies of the oledb src using modulo that are something like-
OLEDB Src 1: SELECT * FROM table WHERE Id...
December 4, 2019 at 3:09 pm
If the tables are on the same SQL Server instance, you're probably better off creating SPs to do the inserts and using SSAS ExecuteSQlL tasks to call them. If you...
December 3, 2019 at 11:21 pm
Use the back button that appears near the paging buttons on both Data Tools and Report Manager
December 3, 2019 at 11:03 pm
does that Key value exist in your Dim table/named query?
November 18, 2019 at 5:28 pm
this should do it. maybe make it into a Funtion
DECLARE
@TestNumberdecimal(4,1) = 28.7
,@PreferredDecimaldecimal(4,1)= 0.7
;
SELECT
CASE WHEN @TestNumber - FLOOR(@TestNumber) >= @PreferredDecimal THEN CEILING(@TestNumber) ELSE FLOOR(@TestNumber) END
;
SET...
November 7, 2019 at 11:59 pm
when you right-click -> Properties on the Project in SSDT Solution Explorer, you should see the options under Deployment. TargetDatasetFolder will just have Datasets but you can change it to...
September 23, 2019 at 3:42 pm
By default, they all go the same place but you can change the target folder for datasets and sources from the properties on each project in SSDT.
September 20, 2019 at 9:49 pm
There's also this tally table approach if the col3 source can be longer 100 and up to 5000.
DROP TABLE IF EXISTS #tmpExamples ;
November 28, 2018 at 10:08 am
Yes. Then you would just set the SQLSourceType to Variable and pick your variable as the SourceVariable in the Task Editor. The value will stay unless it's overwritten by an...
February 7, 2017 at 7:58 am
February 26, 2016 at 10:11 am
Viewing 15 posts - 1 through 15 (of 24 total)