Incremental Mysql Backup

Sounds like you want a trigger after an update on the table. Triggers perform actions every time a certain event happens: You can find more information on how to set …

Ranorex rapport is empty, but test succeeds.

Hi Maxim, this is an issue in Ranorex we recently discovered in Ranorex version 10.5.1 and reported to Ranorex. I currently have no information if this also occurs with other …

Ranorex rapport is empty, but test succeeds.

Hi Maxim, This is a known issue and reported to Ranorex team by Michiel Vanthuyne: “Ranorex will produce empty report files if an argument is passed in the command that …

Mobile Gateway – Get Table Column Parameter

In the documentation we now find the answer to the question: https://docs.dataminer.services/user-guide/Advanced_Modules/Mobile_Gateway/Command_reference.html We need to send it as: GETX:ElementName:ParameterName|TableIndex NOTE The table index (i.e. the primary key) should only be …

Cassandra 4.1 supported by DataMiner

Hi Miguel, There should be no problem running Cassandra 4.1 with DataMiner. I don’t have any visibility of what Cassandra versions are deployed in the field, but we did not …

Unable to authenticate

No luck yet on clearing the cache.   I will keep working on it.   I am getting a response back from the server. {“d”:{“__type”:”Skyline.DataMiner.Web.Common.v1.DMAConnectAndInfo”,”Connection”:””,”Message”:”Unable to authenticate as rulven”,”MessageType”:”Error”,”DMAVersion”:”10.2.2235.430″,”AlarmColors”:null,”Time”:null,”TimeUTC”:0,”LastChangeUTC”:1676064981469,”Security”:null,”Licenses”:null,”User”:null,”UserGroups”:null,”SLNetConnectionID”:null,”Cookie”:”uZFzcN7Kw6QTSFkfJROZahrjAVAP+pHFZh6KEha8+Oy7Mwxmww9EYoBt+xYctxqVqxTwIyuNYuxtGeFa2Cx2Ww==”,”ClusterInfo”:null,”HasDelegatedAuthentication”:false}}

Unable to authenticate

Not sure about the details of your setup, but can you try ./administrator as user-name?

Unable to authenticate

Hi Randy, If you can open the dashboards login page that means you’re able to reach the system, so it’s not network related. This is an exception that is thrown …

SNMP trap OIDs with multiple service properties

I haven’t tested this. But it seems to work if you do the following: 1. Create a custom alarm property; 2. Capture the alarm with a correlation rule that triggers …

Retrieve Multiple Instances from a Section

Hi German, The PAHelper does not support retrieving values when there are multiple instances of a section. You will have to retrieve the DOMInstance yourself: add a FieldDescriptor to store …

Retrieving the Dom Instance within Process Automation

Following code will give you the instance with a specific Guid object. var domHelper = new DomHelper(engine.SendSLNetMessages, “my_module”); var domInstanceFilter = DomInstanceExposers.Id.Equal(myGuid); var instance = domHelper.DomInstances.Read(domInstanceFilter).First(); Once you have the …