0
votes
3answers
43 views
trigger in oracle stored procedure
Hi
I have a requirement like this: I have to select a certain number of records from an Oracle table using a stored procedure. I will capture the entire resultset in ref cursors, but at the same time …
1
vote
1answer
70 views
Embarassingly easy SQL question(s)
I am trying to write what should ostensibly, be relative easy SQL queries - yet, I cant seeem to get them to work.
Is it possible to write a query that looks something like this:
select t.name
…
0
votes
1answer
17 views
Stored Procedure in SQL 2008
I have create a stored procedure with VB.NET
This procedure goes to a remote Server (for the moment on my near server Win 2003)
until now everything are ok
The procedure is created and i call her …
4
votes
3answers
232 views
is it possible to call a sql script from a stored procedure in another sql script?
I'd like to use . to call sql script from inside a stored proc like so...
delimiter ///
create procedure append_procedure()
BEGIN
\. test.sql;
END; ///
delimiter ;
I'm getting a "failed to open …
2
votes
5answers
90 views
Why is this SQL not working as a stored procedure, but works fine as a regular query?
The TrackingData table is inside a database named Tracking. The stored procedure is being run inside the same database. I get data back with the query, but not with the SP.
SELECT *
FROM
…
0
votes
2answers
29 views
How do you generate INSERT stored procedures for all tables in a SQL2008 database?
I have a bunch of tables and I need to create basic INSERT stored procedures for all of them.
Does anyone have anything that does this or a good start to do this?
0
votes
1answer
92 views
Commitment control error on iSeries procedure call
I have an intermittent problem when calling an iSeries stored procedure (consisting of various CL & RPG programs). The error is:-
Commitment definition *N not valid for open of QAOSSI12
…
3
votes
2answers
36 views
Best practices for stored procedure API?
We are adding some stored procedures to our product that can be called by 3rd-party clients. Are there best practices for parameter validation, return values, RAISERROR, etc?
3rd-party clients will …
0
votes
2answers
29 views
Database Job Scheduling
I have a procedure written in PLJava that sends out updates over JMS in my postgres database.
What I would like to do is have that function called on an interval (every 30 seconds) internally in the …
1
vote
2answers
119 views
Capturing Stored Procedure Parameters via Table Trigger
I have a table that has a Trigger associated with it for Update, Insert and Delete. The Trigger works fine and executes. Here is the code for my trigger:
CREATE trigger [dbo].[trg_audit_TableName]
…
3
votes
1answer
38 views
What is the syntax to define an Oracle procedure within an another stored procedure?
After many Google and SO searches, I cannot find a definitive answer to this simple question:
How can I define a procedure inside of another procedure to use?
I know that there are nested blocks and …
0
votes
4answers
25 views
stored procedure expects parameter which was not supplied
Hello,
I'm calling a stored procedure from C# .net and one of the string parameters is null. When that is the case, I pass DBNull.Value. However, I get the above error. Any ideas?
0
votes
2answers
38 views
SQL Insert multiple rows using stored procedure and xml parameter?
I've used a table valued parameter before, but I'm not sure how to use xml.
I do not know the best way to format my xml but I think I would try this:
<Car>
<Name>BMW</Name> …
2
votes
1answer
17 views
mySQL Stored Procedure for splitting strings by delimiter
Hi all,
I'm into writing a stored procedure which explodes a passed string by a
passed delimiter and returns the n-th element of the result. n is passed
too.
So this is what I came up with:
CREATE …
0
votes
4answers
46 views
SQL Query to calculate weight or distribute weight based on value/null
I have a table with columns - id, x1, x2, x3,x4
if i have values
1,y,y,y,y
2,y,null,n,null
3,y,null,null,null
then say, i want to calculate (1)/(number of y's)
and display rows as
…
