1
vote
0answers
14 views
OCCI: Querying for metadata of a stored procedure within a package
I am trying to get metadata about parameters of a stored procedure that is defined in a package using C++ Oracle OCCI. Getting parameter metadata of a standalone proc is straightfo …
0
votes
1answer
14 views
SSRS2005 timeout error
Hi
I've been running around circles the last 2 days, trying to figure a problem in our customers live environment. I figured I might as well post it here, since google gave me ver …
-1
votes
1answer
38 views
Some example how use storage procedure (add, edi, del) in MVC .NET application +LINQ
I look for some exaple how use the stora procedurs in MVC with LINKQ.
0
votes
2answers
89 views
MySQL Stored Procedures : Use a variable as the database name in a cursor declaration
I need to use a variable to indicate what database to query in the declaration of a cursor. Here is a short snippet of the code :
CREATE PROCEDURE `update_cdrs_lnp_data`(IN dbNam …
0
votes
2answers
27 views
update each row in a procedure
I have the following data in a table TABLE1
DOCUMENT ------ FIELD1
12345
23456
34567
45678
98765
i have the following data in a view VIEW1
DOCUMENT ---- BUS
12345 ------------ …
0
votes
2answers
132 views
Calling a Stored Procedure using C# with XML Datatype
I am simply trying to call a store procedure (SQL Server 2008) using C# and passing XMLDocument to a store procedure parameter that takes a SqlDbType.Xml data type. I am getting e …
0
votes
5answers
59 views
SQL script taking long time to extract data
This is the script that is taking a very long time
USE [r_prod]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: D …
1
vote
2answers
54 views
MySQL Stored Procedures
Hi, I'm coming from a MS SQL Server background.
Working on a new project using MySQL with NaviCat 8 Admin tools.
Ok, here's the question.
Normally when working in MS land if I want …
0
votes
0answers
15 views
Changing cursor type with stored procedure in ASP
Using ASP, I want to call a stored procedure that returns a recordcount.
I understand that I have to change the cursor type to adOpenKeyset or adOpenStatic to return a recordcount …
1
vote
3answers
39 views
Qt4 starting and stopping (pausing)
Ok, so I'm having this problem tonight:
[...]
connect(startButton, SIGNAL(clicked()), this, SLOT(startCalculation()));
connect(stopButton, SIGNAL(clicked()), this, SLOT(stopCa …
-2
votes
0answers
23 views
Report Generation Tabbing error
I have a procedure using a util file and cursor where i have to generate a report for the table cl_masd_payments in the format given in the code
I have written the procedure but i …
28
votes
21answers
3k views
c# Coding standard / Best practices
I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as Im the first 'adopter' in the department) to create a basic (read useful? …
0
votes
0answers
23 views
How to get search results into view
Hi everyone,
I am trying to implement multi parameter search and i want to use stored procedure.
How to make that view in database is filled with results of stored procedure.
th …
1
vote
1answer
126 views
Can I update the result (sys_refcursor) of an Oracle stored procedure (in Java)?
Given the following function:
create or replace FUNCTION "GETADDRESSES"
RETURN sys_refcursor
IS
address_cursor sys_refcursor;
BEGIN
OPEN address_cursor FOR
SE …
0
votes
1answer
100 views
Oracle 10: Is it possible to access a public synonym to a table in a stored procedure or package?
Hello,
I've been trying without success to add a reference to a public synonym in a package or stored procedure in oracle for a while, and I'm wondering if there are solutions t …
