0
votes
2answers
21 views
MYSQL stored procedure accessing java object stored as a BLOB.
I am storing a Java object as an byte in a blob of a table. The java object is customized object. How can I construct the java object and use it in the stored procedure?
2
votes
2answers
39 views
Single Instance Stored Procedure call
Is there any way that I can make sure that a stored procedure completely finishes before another instance of it is started?
I have to do 3 things in the procedure and if two instances are running …
0
votes
2answers
19 views
SQL server SP : @Param ‘s with sometime NULL values
I am very new to SQL Server Stored Procedures,
I am trying to create a SP that will give return a list of records in a table by filter via StartDate and EndDate , but there will be 'View All' Option …
1
vote
5answers
166 views
Compare Strings in C#
Ok,I am trying to compare two strings every 15 seconds and then update an info box.
Here is the code I have so far to get a text document from the web and store it into a string:
public String …
0
votes
2answers
175 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 dbName VARCHAR(25), OUT …
0
votes
1answer
24 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 very limited …
0
votes
0answers
15 views
Stored procedure execution problem
Iam implementing entity spaces in C# application and was able to execute queries such as the below one successfully.
coll.query.where(coll.prodlineid.equal("id")
if( coll.query.load())
However I …
0
votes
1answer
96 views
MySQL - explode/split input to stored procedure
I have problem, I need to explode my input to my stored procedure, but don't know how I can do it.
My stored procedure has a VARCHAR(256) input which I need to split and generate insert statements.
…
1
vote
2answers
159 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
SELECT * FROM Address;
…
1
vote
2answers
72 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 to update some data …
0
votes
5answers
352 views
Simple ADO.NET C# Stored Procedure Generator
I am using Visual Studio 2005, Sql Server 2005, C#, ADO.NET. We have a very large database and routinely adding new stored procedures. I am tired of writing the C# wrapper code for these stored …
0
votes
0answers
41 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.
What I don't …
0
votes
4answers
54 views
Where cab I find a host with stored procedures
Hi
I have created a project that uses mysql stored procedures and views.
I have a lot of difficulties to find a hosting service that would support them.
Do you know where I can go?
thank you.
0
votes
2answers
47 views
sql server 2000: Short cut for getting stored proc text
Hi, what is the short cut to get entire text of the stored proc in query analyzer. I know that I could highlight table name and hit <alt><f1> and get the entire table structure.
thanks
0
votes
1answer
113 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 to this problem short …
