Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
-4 votes
0 answers
46 views

I'm having two loans table. one is for internal other one is for external. Both having similar columns. I don't want to disturb one for other so i have created 2. Problem is both has to be sync. ...
Hari  Prakash's user avatar
0 votes
1 answer
80 views

So as per previous suggestions, I'm using checkboxes to replace the .getUi method so my project will work properly on mobile devices. I've come across a strange scenario and I wanted to confirm this ...
Stuart L's user avatar
  • 177
2 votes
1 answer
72 views

In my PayPalService.cs file, I have a public method in the class that calls an Azure HTTP triggered method in PayPalFunctions.cs file that keeps failing due to an error: "Method not Allowed"....
John H's user avatar
  • 21
1 vote
1 answer
70 views

Depending upon a specific input in a set of cells on my Google Sheet, I want to be able to freeze a particular row and stop it being updated. I have the following script: function testFreeze() { ...
Stuart L's user avatar
  • 177
1 vote
1 answer
29 views

I want to implement a logic app workflow which is using a trigger: Logic App: Standard Connector: Azure File Storage Trigger: When a file is added or updated Configuration: giniusdata/Plot/PDF/PDFOUT-...
LStrike's user avatar
  • 1,662
1 vote
1 answer
80 views

I am writing a trigger to run whenever a new row is inserted into table_a. The trigger adds a new row into table_b, see insert statement. CREATE TRIGGER `trigger` AFTER INSERT ON `table_a` FOR EACH ...
Mark's user avatar
  • 846
0 votes
1 answer
98 views

I have a script that processes email's data and saves it in google sheet. I have set a time trigger to run automatically every 15 minutes. It runs fine for few hours and then it stops working. I do ...
EagleEye's user avatar
  • 522
1 vote
1 answer
112 views

Why is my deferred constraint checking an intermediate state and not the final state of the record? We use PostgreSQL 16.9 for our database and we use Python3 and Psycopg2 to manage our data pipeline. ...
Marissa's user avatar
  • 13
2 votes
2 answers
90 views

I'm using triggers in Postgres to do audit logging in a system with parent/child tables. Think an invoice with line items. The problem I'm trying to solve is that if an invoice is new, the invoice and ...
EMF's user avatar
  • 187
1 vote
1 answer
162 views

I have a problem regarding ON INSERT BEFORE triggers firing on rows that are inserted via insert on conflict update upserts. I have a postgres (v.17) database with a base table or super table that 5 ...
erchenstein's user avatar
0 votes
1 answer
94 views

I am trying to use a postgres (v17) audit trigger found here: Postgres Audit Trigger: CREATE OR REPLACE FUNCTION audit.if_modified_func() RETURNS TRIGGER AS $body$ DECLARE audit_row audit....
happyfirst's user avatar
  • 1,167
2 votes
2 answers
93 views

I have the following 2 postgresql tables: CREATE TABLE my_table_a ( id SERIAL PRIMARY KEY, my_field_a BOOLEAN NOT NULL ); CREATE TABLE my_table_b ( id SERIAL PRIMARY KEY, fk_id INTEGER ...
Saqib Ali's user avatar
  • 12.8k
1 vote
1 answer
91 views

I’m looking for guidance on creating a DDL trigger to track account lock scenarios, including failed login attempts. I’ve already implemented a LOGON trigger, but as expected, it only captures ...
Sadhana's user avatar
  • 21
0 votes
2 answers
115 views

I have the following script in a sheet to move rows of data from tab to tab based on the result of a drop down in column C. I'm having a couple of problems that I have tried many different solutions ...
Jason's user avatar
  • 1
0 votes
2 answers
104 views

My objective is to create a trigger which fires after an UPDATE, and which set a ModifiedTimeStamp field to the current date for all and only effectively updated / inserted rows. I had a previous ...
Baptiste's user avatar
0 votes
2 answers
75 views

I have a spreadsheet with 11 sheets. I am using an onOpen script that checks the first 9 pages, hides all of the blank rows, and sets the cursor to cell B4 (a search box). For the last two sheets it ...
Doc's user avatar
  • 63
1 vote
1 answer
57 views

I have this xaml code: <HeaderedItemsControl ItemsSource="{Binding ProjectInfo.ProgressEntries}" Focusable="False"> <HeaderedItemsControl.Style&...
Barta's user avatar
  • 147
1 vote
0 answers
23 views

OceanBase Version OceanBase Community version 4.2.1 (MySQL mode) We have a customer order system on OceanBase 4.2 where multiple triggers interact: -- Trigger 1: Update inventory AFTER ORDER INSERT ...
user avatar
-2 votes
1 answer
85 views

When the value in P47 changes, I'd like a range of cells to copy from column L to column A of that same sheet. (I don't think I'm succesfully entering the "IF" condition but I'm not sure ...
chris's user avatar
  • 1
0 votes
2 answers
53 views

I have an app table. On the insert of rows, a trigger is fired, and it logs audit to a audit table via a pragma autonomous transaction procedure. create trigger app_trg after insert on app_txn for ...
synccm2012's user avatar
0 votes
1 answer
65 views

I have a main azure pipeline (pipelineFinal) that should be triggered when a pipelineA is finished. pipelineA: trigger: none jobs: - job: BuildA displayName: "Build Pipeline A" pool: ...
homan salimi's user avatar
0 votes
2 answers
96 views

I have the following code: function onOpen() { const ss = SpreadsheetApp.getActive(); ss.getSheets().forEach((sheet, index) => { if (index < 9) { const lastRow = sheet.getLastRow();...
Doc's user avatar
  • 63
0 votes
0 answers
56 views

I use Spark to read JSON files that appear in a folder everyday with path pattern Yyyy/mm/dd to convert them into Iceberg format. Both folders JSON and Iceberg are in a s3 bucket on different paths. ...
Alex's user avatar
  • 1,019
-3 votes
1 answer
82 views

I'm using SQLAlchemy and MSSQL 2019 with triggers (insert/update) can't remove . engine_new = create_engine('mssql+pymssql://***:***@***/***', implicit_returning=False) Session_new = sessionmaker(bind=...
AnastasWu's user avatar
0 votes
0 answers
64 views

I have two tables: my_table1 and my_table2. a_column in my_table2 should always match the corresponding value in my_table1. However, the tricky part is that rows in my_table2 may be inserted before or ...
Shh's user avatar
  • 1,026

1
2 3 4 5
437