1,338 questions
0
votes
0
answers
69
views
Using EXECUTE with FORMATMESSAGE [duplicate]
I’ve learned that FORMATMESSAGE() is the closest thing to parameterising a string in SQL Server. So this works for me:
DECLARE @db NVARCHAR(12) = 'test';
SELECT formatmessage(N'USE master; DROP ...
1
vote
0
answers
48
views
executing javascript function with chromedriver and c#
I have a button that I need to click to open up file explorer and select a file. The entire page is JavaScript functions and there is no button id or name that comes up in the html
I tried:
myField = ...
0
votes
1
answer
52
views
ABCpdf: How to run javascript after PDF-File is opened?
I have a component which generates PDF-File using ABCpdf. In that PDF-File I need a "DateTime Picker" field.
There are JavaScript functions which can be used for this purpose: AFDate_Format, ...
0
votes
1
answer
135
views
How to call snowflake procedure with arguments from adf
i have a master table as EMP_NAME with few values in it and column name as EMPNAME. I want to pass these values as argument to a snowflake procedure which will create tables with employee name in ...
0
votes
0
answers
160
views
Delphi executing an external program with two-way interaction
I need to execute a commandline program (.exe) in full interactive mode.
That is, I need to call the executable with a command which turns it into an interactive program. From the Windows command ...
1
vote
1
answer
76
views
PostgreSQL Dynamic Query Execution with Table-Valued Variables
I am working with code inside of a PostgreSQL pgsql function. I have a merge statement that has multiple elements that are only known at runtime and are supplied to the function as parameters, which ...
-4
votes
1
answer
78
views
bash function to execute arbitrary commands on multiple servers [closed]
I have a need to execute a command on a list of servers. For example, I want to search application restarts in the logs of an application on all load-balanced application servers:
cd /var/logs/rest-...
-1
votes
2
answers
56
views
PostgreSQL, case sensitive EXECUTE
The EXECUTE statement does not recognize upper case letters on the database name.
Running the below query on a database named "ABcdeFG"
DO
$c$
BEGIN
EXECUTE 'ALTER DATABASE ' || ...
0
votes
1
answer
31
views
CurrentDb.Execute strSQL - Can't get table values to set to new user input
Access BD, VBA / SQL Newby -- Please forgive my ignorance
I have a form that should update a users password entered in to PWord1, and re-entered into PWOrd2. If they did everything correctly then the ...
0
votes
0
answers
59
views
Gnosis Safe executeTransaction "missing revert data"
I'm triying to add a second confirmation and execute a safe transaction using gnosis safe sdk. The safe address is a 2/n.
`export async function signTransactionAndExecute(chainId, rpcUrlProvider, ...
0
votes
0
answers
93
views
missing run icon and execute icon in my vs code when i am using .sql file
I have a problem with my vs code when I am using a .SQL file
it does not show the run icon in the vscode screen and I have to select some lines and run but other people have a lot of run icons in vs ...
0
votes
2
answers
84
views
Trying to execute a simple stored procedure - Help! Can't find an answer that works here
I'm completely new to SQL and am trying to execute a stored procedure that I'm not even sure I wrote correctly. It's supposed to give the total number of patients for a given dr, and this is the ...
0
votes
0
answers
360
views
Error when running app that uses tensorflow and pyinstaller
very good everyone, thank you for going into my problem, so I'm going to get to the point, it turns out that when I compile with pyinstaller everything works well, tensorflow is imported correctly, I ...
0
votes
1
answer
135
views
Execute a Oracle query providing a parameter
My query takes a parameter and needs to be executed for all values coming from a table. How do I call my query? Please help.
Query to execute:
select &&pnbr, pname from PERSON where pno=&&...
0
votes
1
answer
59
views
Path in instructions "CONCATE... PREPARE... EXECUTE... "
I'm having a problem with MySQL. To put it in context, I'm in charge of migrating my company's codes from Oracle to MySQL and I'm having quite a few problems with macro variables: the only solution I'...