List of Contributions

Henrik B

Contact Details

My Content

1 to 20 of 33 total
Posted By Henrik B 04-22-2024 04:38
Found In Egroup: Data360 Analyze
\ view thread
Hi, for me it would be a lot easier to understand. If you send pictures of a sample data input, and expected output. Like below: ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 04-22-2024 03:55
Found In Egroup: Data360 Analyze
\ view thread
Hello, assume we have the input data as per below: Image 1 Assume i want the input data represented as an output as below: Image 2 Would this be possible to do for N amount of columns and N amount of data values, making it a generic solution without hardcoding each column name? It ...
Posted By Henrik B 04-08-2024 05:15
Found In Egroup: Data360 Analyze
\ view thread
Hi, as far as i know you need to be signed in as an admin user and do the following: ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 03-22-2024 06:39
Found In Egroup: Data360 Analyze
\ view thread
Hello, i want to use the dbexecute and not the db store node to do a batch insert of rows. So assume the following scenario: In this case i only have two rows, i want to make into one single insert statement as per below: This method is very costly, if i want to insert a big number of rows, especially ...
Posted By Henrik B 02-22-2024 01:24
Found In Egroup: Data360 Analyze
\ view thread
Hello everyone, a quick question. Do i always have to create new output columns while i use calculate fields, it would be nice to use it for conditionals? As an example, would it be possible to replicate the following from a transform node in Calculate fields, to have a conditional without creating ...
Posted By Henrik B 02-05-2024 04:29
Found In Egroup: Data360 Analyze
\ view thread
Hm i would change the name in modify fields, adding a space. Or you can maybe do it from a select query, select column1 as column 1 maybe ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 01-22-2024 01:45
Found In Egroup: Data360 Analyze
\ view thread
Can't you replace the nulls' with zeroes? so it becomes a valid object to perform int operations on? And if you want to perform string operations i would replace the null's with an empty string. ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 10-11-2023 02:15
Found In Egroup: Data360 Analyze
\ view thread
I found that one solution is, solving the logic with SQL and then extracting that to a D360 Workflow. ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 10-10-2023 06:52
Found In Egroup: Data360 Analyze
\ view thread
Sidetracking a bit but, The lookup node can have a big impact on the ETL and server performance, it can bottleneck. "The Lookup node is recommended for use with a small data set on the right input as the entire right data set is loaded into memory", so in those cases its better with a join/merge, ...
Posted By Henrik B 10-10-2023 05:38
Found In Egroup: Data360 Analyze
\ view thread
Hello, assume i have 3 dates and a count column per each date, is there a convenient way to calculate the delta for each 2 adjacent dates? starting from the oldest date: (In reality it will be around 30-60 dates) What i have: |Date| |count| 2023-01-02 1 2023-01-03 8 2023-01-04 9 ...
Posted By Henrik B 09-29-2023 04:34
Found In Egroup: Data360 Analyze
\ view thread
You could also solve it with regexp in transform node: import re x = re.search(r'(.*)\|',in1.ProtocolNumber) if x: out1.ProtocolNumber = x.group(1) ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 09-13-2023 02:29
Found In Egroup: Data360 Analyze
\ view thread
something like this? But adapting the script in the aggregate node to exclude nulls? ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 09-05-2023 02:13
Found In Egroup: Data360 Analyze
\ view thread
What would be the consequences of running millions of rows and a big amount of columns for lookup nodes in 360 often? In the documentation it states that "The Lookup node is recommended for use with a small data set on the right input as the entire right data set is loaded into memory" My point ...
Posted By Henrik B 08-22-2023 02:01
Found In Egroup: Data360 Analyze
\ view thread
In the first step, i'm using a directory list node as an input to the above. ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 07-04-2023 02:31
Found In Egroup: Data360 Analyze
\ view thread
So in other words, there is nothing negative with having n amount of disabled nodes in scheduled graphs besides, it doesn't look structured? ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 06-30-2023 04:25
Found In Egroup: Data360 Analyze
\ view thread
Hello, I'm wondering if disabled nodes has any affect on the performance on scheduled graphs? Assume i have a scheduled graph that runs every day, but it also contains 100 disabled nodes. Is it preferable to not have any disabled nodes in a scheduled graphs, and if so why? Best regards ...
Posted By Henrik B 05-30-2023 02:47
Found In Egroup: Data360 Analyze
\ view thread
I think i found a solution for it, i define count:long 0 in create data. 'count' 0 on out1 on my transform, that activates the mail node And a delay on the sleep timer. ------------------------------ Henrik B E.ON Sverige ------------------------------
Posted By Henrik B 05-29-2023 06:57
Found In Egroup: Data360 Analyze
\ view thread
Assume i have a SQL query in Oracle(dbnode). I have a table 'table_1' with a column named Status, it has 1 row that can have the values 'Done' or 'NotDone'. The values in the Status column are updated automatically in Oracle, depending on which time i look at it. What i would like is a query that ...
Posted By Henrik B 05-17-2023 05:33
Found In Egroup: Data360 Analyze
\ view thread
Hello, i have a static data node with Swedish chars. Then going into a transform to create true/false outputs. My code is : My in data (in1.color) contains "röd" but the output from this transform node produces a False instead of True for "röd". ------------------------------ Henrik B E.ON Sverige ...
Posted By Henrik B 05-17-2023 05:00
Found In Egroup: Data360 Analyze
\ view thread
Im trying to input a static select statement in a transform node and send it to dbexecute node. As an example, in my static data i have defined a string (Select * from table1 where id=1) where the col name is query i later send that to a dbexecute node and in the script i write sqlSelect('query'), i ...