0
votes
1answer
13 views
What is the right way to call an oracle stored function from ado.net and get the result?
I've got a vb.net codebase using ado to connect to an oracle database. We have lots of stored procedures that we call, some with multiple out parameters. However, I now need to cal …
1
vote
3answers
71 views
2147217833 String or binary data would be truncated
Hi Have an error occuring when I try to update a record via stored procedure.
The error I get is 2147217833 String or binary data would be truncated.
I've done a length on each of …
1
vote
2answers
47 views
how to write an if condition case in stored procedure
i have an table where i am passing 5 paramter
table name=" image"
parameter
@imageID,
@imageName,
@imageDirectory,
@imageResource,
from the front end [from page that is …
0
votes
3answers
32 views
c#/sql-server, trying to get data to two ddl’s from two tables…in one sqlDataReder
Hi all,
Well, i am tring to do something nice (nice for me, simple for you guys), i was told i can do it, but i have no idea where to start.
I have two DDL's in a page, i need on …
0
votes
12answers
127 views
Is the usage of stored procedures a bad practice?
Hi,
We have an application that is written in C# that is connected to a ms sql server.
We use to make a stored procedure for every database call, but then we've noticed that using …
0
votes
2answers
11 views
MySQL temporary vs memory table in stored procedures
What's is better to use in a stored procedure: a temporary table or a memory table?
The table is used to stored summary data for reports.
Are there any trade offs that developer …
0
votes
2answers
41 views
Using T-SQL AVG or taking Average after results returned using LINQ
I have a stored procedure that uses a view to pull 6 averages. The SQL database is SQL Server 2000. When I run it in the Query analyzer, it takes roughly 9 seconds. What can I do t …
0
votes
0answers
23 views
Return variable from stored procedure MySQL
How can I return a declared string like ( lastInsertId ) from my MySQL stored procedure and out? It's really annoying I can't return error messegts, complate messages and more out …
1
vote
3answers
55 views
question about pl/sql stored program text
hi all.
I use TOAD to do my PL/SQL development. In TOAD when i type a procedure name and press f4, I can see this procedure's source code. I think TOAD get the source code from v$s …
1
vote
2answers
51 views
(Probably) Simple SQL Server cursor question
I need to call two stored procedures in sequence via ODBC in PHP:
#run stored procedure 1
$query = "Shipped_Not_Shipped_Rep ".$_GET['rep_id'];
$result = odbc_exec($dbh, $query);
o …
0
votes
0answers
12 views
error when creating PROCEDURE on mysql
Am trying to create a mysql stock procedure, but i have the following error
Script line: 2 Failed to CREATE PROCEDURE proc_test_bideep
The syntax proc is:
DELIMITER $$
DROP PR …
3
votes
2answers
95 views
TSQL SELECT then UPDATE in one transaction, then return SELECT
I am really having trouble with a query in my ColdFusion application (backended to MS SQL 2008). I keep getting DB deadlock errors on this transaction:
<code>
<cftransac …
2
votes
4answers
79 views
Can I do it only with SQL Queries or do I need a stored procedure?
Hi guys.
I came across with a problem in which I need some advice/help.
Background:
I'm programming a map in an accounting software which requires special formatting and a tree-l …
0
votes
3answers
55 views
Linq To Sql optional Column
My problem in short:
I need a functionality to have optional columns in a linq to sql definition. So that linq to sql normally ignores this column within selects and updates etc.
…
2
votes
1answer
38 views
Passing an enum value as a stored procedure (data function) parameter in LINQ to SQL
As mentioned in this question, "LINQ to SQL allows table mappings to automatically convert back and forth to Enums by specifying the type for the column - this works for strings or …
