0
votes
1answer
9 views
SQL SSRS Object has been disconnected or does not exist at the server
I have a couple stored procedures that run for about 2-3 minutes a piece (lots of data). When I run the stored procedures inside SQL Server Management Studio, the queries run fine and return the …
0
votes
6answers
65 views
Combining 2 TSQL statements into 1
Hi,
I need to combine the following two SQL statements into one. Any help is greatly appreciated.
Thanks.
SELECT C.*, M.members_Email
FROM tbl_Campaigns C
JOIN tbl_Members M
ON C.campaign_MemberId …
0
votes
1answer
21 views
How to DROP a version of a Stored Procedure in SQL Server
We have some legacy stored procedures that use the now deprecated feature of SQL Server that allowed you to create multiple versions of a procedure within a procedure.
For instance we have..
…
1
vote
3answers
31 views
Linq to SQL with Stored Procedures
I want to add custom (compound and read-only) attributes to my stored procedure results class. When I did that, I got the error
LINQ - Cannot assign value to member XXX. It does not define a setter.
…
1
vote
2answers
24 views
Is it wiser to use a function in between First and Next Insertions based on Select?
PROCEDURE add_values
AS BEGIN
INSERT INTO TableA
SELECT id, name
FROM TableC ("This selection will return multiple records")
While it inserts in TableA i would like insert …
0
votes
6answers
62 views
How to Insert Records based on the Previous Insert?
Here's my procedure:
PROCEDURE add_values
AS
BEGIN
INSERT INTO TABLE_A ...
SELECT t.id, t.name FROM TABLE_C ("This selection will return multiple records")
END
While it inserts in TableA, I …
0
votes
2answers
33 views
stored procedure error handling
i have this procedure for inserting rows in tables(sql server 2005)
CREATE PROCEDURE ans_insert
(
@q_desc varchar(2000),
@sub_id int,
@marks int,
@ans1 varchar(1000),
@ans …
1
vote
5answers
89 views
Performance Standalone Procedure vs Packaged Procedure in Oracle
What is the difference of performance between standalone procedure and packaged procedure? Which will be good performance wise and why? Is there any difference in execution of both?
1
vote
2answers
9 views
Problem with xml select in tsql - can’t seem to orgenize multi nodes in the right order
Hello every one....this is my code, i am trying to make a simple 3 nodes select in XML and it is not working, i am getting the parent, the second nodes (all of them) and then the third nodes (all of …
0
votes
2answers
38 views
optional parameters in SQL Server stored proc?
Hi everyone,
I'm writing some stored procs in SQL Server 2008, and wondered if the concept of optional input parameters is possible here?
I suppose I could always pass in NULL for parameters I …
1
vote
2answers
26 views
stored procedure exception handling in asp.net
Do i need to use try catch in my stored procedure to know where exactly in my procedure error has occured or can i achieve the same if i useSqlConnection.BeginTransaction in my ASP.NET form or simple …
0
votes
1answer
13 views
Transaction count exception in vb.net (SQL Exception)
I am getting below exception when i am going to enter record in a table through StoredProceduer of sqlserver
i have a field which i need u update immediately after insert of new record in table.
for …
0
votes
1answer
15 views
Oracle Stored Procedure with out parameter using Nhibernate
How can I access the value of an out parameter of an oracle stored procedure in the .net code - Oracle stored procedure being called via Nhibernate?
Sample working code would help.
0
votes
1answer
26 views
RIA services, EF and stored procs
I have this problem for 2 months now
How can I use stored procedures whith RIA.
I was using LinqToSql and everithing works fine.
I've made an class in designer and mapped it to a SP.
Now in EF I …
0
votes
2answers
18 views
MySQL calling a stored proc from another stored proc.
I am working on a stored proc (parent) that calls another stored proc (child). The child proc returns a record set with 1 row every time.
What I need to do is pull the data from the child proc and …
