Viewing 15 posts - 61 through 75 (of 315 total)
Check your Excel source if it's for the right version of Excel file
December 18, 2019 at 12:49 pm
Thank you! That's what I was missing together with changing
SELECT '-2' as Gruppe, '' as Ordering_Dealer_ID_Prev
to
SELECT '-2' as Gruppe, '0' as Ordering_Dealer_ID_Prev
looks very promising...
December 18, 2019 at 10:26 am
tsql is not really useful here I think, have a look at this PowerShell Script instead
$disks = gwmi win32_diskdrive
foreach($disk in $disks)
{
$disk.psbase.getrelated('win32_scsicontroller')
}
$disks |...
December 18, 2019 at 9:25 am
with do (DealerGroupOld, DealerOld)
as
(Select Case when a.Gruppe is null then 'Einzelhändler' else a.Gruppe end, f.Ordering_Dealer_ID_Prev
from dbo.D_SalesOrg left outer join (
SELECT HNR, Gruppe from STG_Dealer_Groups
) as a on...
December 18, 2019 at 8:48 am
sure I have, here you go:
USE [TestDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[STG_F_Sales]
(
[PK_Sales] [bigint] NOT NULL,
[FK_PrevSales] [bigint] NULL,
[Commission_ID] [nvarchar](255) COLLATE Latin1_General_CI_AS NOT NULL,
[ModelTypeFull_ID] [nvarchar](255) COLLATE Latin1_General_CI_AS NOT...
December 18, 2019 at 8:28 am
Right, sofar I've got the following script:
with do (DealerGroupOld, DealerOld)
as
(Select Case when a.Gruppe is null then 'Einzelhändler' else a.Gruppe end, f.Ordering_Dealer_ID_Prev
from dbo.D_SalesOrg left outer join (
SELECT HNR,...
December 17, 2019 at 5:19 pm
You're right, I've removed that from the script.
December 16, 2019 at 5:19 pm
I will get back with performance numbers tomorrow (once the daily load is done). I've changed 2 Script Tasks with your help to Script Components, one does show quite dramatic...
December 16, 2019 at 4:35 pm
found it myself,
this.ComponentMetaData.FireInformation(3, "Process Values", "Processing Done.", "", 0, ref fireAgain);
this is what I need instead of FireError in the first occurence
December 16, 2019 at 8:04 am
Hi Frederico,
thank you very much, you're awesome! 🙂
I still have one minor issue, I think I miss some sort of ProcessingEnds handler or something because he does process all the...
December 13, 2019 at 3:57 pm
turns out it seems easier to convert a Script Task to a Script Component than it actually is - if you have no clue about these things like me.
I'd love...
December 12, 2019 at 4:35 pm
sounds good, thanks for the input I'll try and see if I can get that running.
December 12, 2019 at 10:37 am
No, the GT_Versandweg table is not created externally but we're essentially limited to being provided the data you see in the first post - except for the unlock events. Data...
December 9, 2019 at 4:09 pm
Did Cluster Validation show any Errors or Warnings?
December 5, 2019 at 4:56 pm
hahahah - we must have been typing at the same time and hating the same thing about CSV … lol
literally 2 days ago I was asked why the "Manual Corrections...
December 5, 2019 at 1:01 pm
Viewing 15 posts - 61 through 75 (of 315 total)