1
vote
3answers
21 views
Classic ADO and Table-Valued Parameters in Stored Procedure
Is there some way to pass a table-valued parameter to a stored procedure in SQL Server via classic ADO?
1
vote
3answers
46 views
Troubles pulling id from first insert done by stored procedure to do use on second stored procedure
I'm having troubles pulling the id from the first insert to use on the second insert. Here's my SQL (I'm using stored procedures):
DECLARE @JoinDate date
DECLARE @ID int
SET @JoinDate = getdate()
…
1
vote
1answer
19 views
SQL Server 2008: Creating dynamic Synonyms?
Hi folks,
in my SQL Server 2008 database I have a number of different tables with the same structure. I query them in different stored procedures. My first try was to pass the table name to the …
5
votes
1answer
33 views
Capture Stored Procedure print output in .NET
Is it possible to capture print output from a TSQL stored procedure in .NET?
I have a lot of legacy Procs that use the print as means of errorMessaging. An example, is it possible to access the …
1
vote
3answers
77 views
Return value of stored procedure is correct but column values are all NULL
I'm working with the C# membership provider and transferring it to LINQ along the way.
I'm having trouble pulling the results from a stored procedure in MS SQL.
The procedure does some work to set …
2
votes
2answers
39 views
Accessing RAISEERROR message from cfstoredproc
Hi there,
I have a SQL stored procedure which under some situations will return a result of -1 if it fails, but also returns a message via the RAISERROR command e.g.:
BEGIN
RAISERROR ('Error %i …
1
vote
3answers
50 views
writing a generic procedure in oracle
i want to write procedure which accents name of 2 tables as arguments and then compare the number or rows of the 2.
Also i want to each field of the 2 columns.The row which has a missmatch shold be
…
0
votes
2answers
26 views
Can I have index created on temp tables (#temp) which are created dynamically in a stored procedure?
I am creating temp tables (#temp_table) in my stored procedure. It is a huge table with large data. Then I am creating a index in the storeed procedure as it is required for faster query to the temp …
3
votes
6answers
63 views
Best practice for a SQL Archiving Stored Procedure
I have a very large database (~100Gb) primarily consisting of two tables I want to reduce in size (both of which have approx. 50 million records). I have an archive DB set up on the same server with …
0
votes
2answers
39 views
A database question for storing and computing with historical data.
I have an application that polls different bins at different times and computes the number of widgets in each bin based on the weight. Polling is done every few minutes and the result is timestamped …
0
votes
2answers
27 views
execution time of a stored procedure
What is the age old method of testing execution time of stored procedures on informix 11.5. I am thinking of doing something like this from a unix prompt:
$ time (echo 'execute procedure foo(1)' | …
1
vote
6answers
73 views
Call a Stored Procedure from another Stored Procedure.
I want to call a SP from another SP. I know I can easily call it. But Problem is, if an error occurs in SP2 then I want to ROLLBACK SP1.
SP1
BEGIN Tran
[Some Code]
Call to SP2
…
0
votes
2answers
38 views
Mysql syntax help
I have problems writing a SP in MySQL. From what I can read on the net the following should work, but it does not. I use Mysql v. 5.1.35
CREATE DEFINER=`My_Username`@`%` PROCEDURE `ChangePassword`(IN …
0
votes
5answers
58 views
TSQL Returning one Row when expecting multiple
I have two tables, a patient table an and appointment table. I'm attempting to retrieve the information from both tables depending on what doctor is logged in at the time. My stored procedure is as …
0
votes
5answers
33 views
Dynamic Datasource in SQL Server Stored Procudure
I have a SQL Server that houses Several Databases. I have a Main Database that holds several tables with entities and ID numbers. Then, each one of those entities has a correlating database (not a …
