python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Function to dynamically change postgres password
I'm trying to create a function that dynamically changes the password for a client but I get an error "ERROR: syntax error at or near "=" ALTER USER postgres WITH PASSWORD = '$1';&quo...
Michael Efraimidis
Votes: 0
Answers: 2
Alter trigger from another trigger
I wish to have alter trigger under another trigger.
CREATE TRIGGER izmeni_naziv_kupac
AFTER UPDATE OF naziv ON Kupac
FOR EACH ROW
DECLARE
novi_naziv varchar2(255);
pibK INT;
BEGIN
EXECUTE ...
Radomir
Votes: 0
Answers: 1
Does BigQuery has alter session like oracle(exp:ALTER SESSION SET NLS_DATE_FORMAT)
How to convert oracle alter session to BigQuery?
example:
ALTER SESSION SET NLS_DATE_FORMAT='YYYY/MM/DD';
ALTER SESSION FORCE PARALLEL QUERY PARALLEL 4;

riley chen
Votes: 0
Answers: 0