Skip to main content
0 votes
0 answers
55 views

csv parser is interpreting the commas inside the json array as column separators

How do I define an array in a csv file so it is not parsed as extra columns? csv parser is interpreting the commas inside the json array as column separators here is how my array is structured trigger,...
Juma Hamdan's user avatar
1 vote
0 answers
10 views

Zabbix 6.4 interface traps down/up clearing trigger doesnt work

i am new to Zabbix and at the moment losing my mind how to setup trigger for receiving snmp traps interface up /down to work properly . both snmptraps ,interface down and up, I am receiving but ...
Marijana Ljolje's user avatar
0 votes
1 answer
45 views

Azure SQL trigger takes 36 times longer when surpassing 6200 rows

I have created a trigger that is supposed to update a table (clients_kv) with a foreign key on updates in the table regions_kv. To avoid updating for all values in regions_kv, I'm doing some extra ...
wasserslasken's user avatar
-1 votes
0 answers
39 views

Why is the onedit installable trigger triggered twice with the same parameter if i change the value back and fourth

Using App scripts I am trying to create a script that sends a rejection email when a person changes the tag column for the respective ticket to rejected. This however doesn't work when I flip flop the ...
Paul Weder's user avatar
0 votes
2 answers
25 views

Schedule checkbox to check/uncheck background automatically

Below script was working fine yesterday, and today I have got an error: Exception: This script has too many triggers. Triggers must be deleted from the script before more can be added. function ...
Seyha TENG's user avatar
1 vote
1 answer
82 views

On button hover, textblock needs to display some text in c#

I have a button. On mouse hovering on the button, a textblock used in my project should display some value. Button is defined in the library and that library I am using in my project. In my project I ...
mili's user avatar
  • 27
0 votes
0 answers
13 views

How to solve the problem of parameters count limit in Perforce trigger "pre-user-action"?

There is a Perforce trigger named "pre-user-action". It could do something before user's command. So I tried to set a checker by: pre_add_trigger command pre-user-add "python3 %//path/...
MeyLin's user avatar
  • 1
0 votes
1 answer
47 views

Based on a Google Form Submitter's name, create a folder, rename the files and relocate those files to that created folder

I am trying to create a Google Apps Script that allows me to do the following. My Google Form looks like this: What is your company name. Submitt your company logo. Submitt your company photo. ...
JiEun Kim's user avatar
0 votes
1 answer
89 views

Copying a Template Google Sheet with triggers on GAS

I have a Google Sheet that I have created and want to make multiple instances of. These copies are to be created by end users (other Google accounts) as follows. I use dropdowns that, with an on edit ...
Shalin's user avatar
  • 135
1 vote
1 answer
72 views

Can a google-apps-script be written to download a csv file from spreadsheet directly to a local hard drive with an onEdit trigger?

Can a google-apps-script be written to download a csv file from spreadsheet directly to a local hard drive with an onEdit trigger? I don't want it to go to Google drive at all, just when the trigger ...
Tim Lank's user avatar
0 votes
0 answers
36 views

Mutating trigger when I update a table where I'm not reading data

I'm trying to copy data from one table (t_equipment) to another table (t_work_order) using a AFTER UPDATE trigger in Oracle. However, I'm encountering a mutating trigger error, even though I'm not ...
Salvatore Montagna's user avatar
0 votes
0 answers
45 views

Persist data before ROLLBACK on a SQL Server LOGON Trigger [duplicate]

I have the following logon trigger in SQL Server: CREATE TRIGGER my_logon_trigger ON ALL SERVER WITH EXECUTE AS 'SA' FOR LOGON AS BEGIN DECLARE @user_can_logon int; ..... -- Begin ...
altink's user avatar
  • 239
1 vote
0 answers
36 views

How ot create a generic on UPDATE trigger in Oracle 12c [duplicate]

I am trying to create a generic on UPDATE trigger for a table named EMPLOYEES. Table has EMP_ID as PK and several columns (by the term generic I mean that I will not have to hard code and check every ...
A4Antonis's user avatar
-2 votes
1 answer
45 views

Validate dropdown input value [closed]

This is my scenario: I have a Google Sheet with 4 dropdowns (all depended one from each other) and I need to clean the next ones when one is edited, this I already have it. However it shouldn't work ...
user28081953's user avatar
1 vote
1 answer
27 views

MYSQL Trigger on insert setting a date condition to now if other inserted column value is true

I am trying to learn more about the triggers. While setting up a table orders CREATE TABLE orders ( id INT unsigned not null auto_increment, tag INT unsigned not null, entered datetime default ...
RomanSmoll's user avatar

15 30 50 per page
1
2 3 4 5
1340