0
votes
2answers
38 views
TSQL: Any benefits for explicitly specifying NVARCHAR in a string?
When you add pass a new job_type to sys.sp_cdc_add_job @job_type,
(which is of type nvarchar(20))
You can pass the argument as either
N'cleanup'
cleanup
Are there any reaso …
0
votes
4answers
25 views
Help understanding SQL Server 2005 execution plan
One of my stored procedure has long execution time (average around 4 to 7 minutes).
Now I trying to tweak it an make it run faster.
I am looking at execution plan and two things …
0
votes
4answers
46 views
Create a temporary table like a current table in SQL Server 2005/2008
How do you create a temporary table exactly like a current table in a stored procedure?
1
vote
7answers
72 views
IF/ELSE Stored Procedure
Hi,
Can anyone please point out what im doing wrong with this Stored Procedure please. I cant get it to compile and my software isnt giving any useful clues as to what is wrong wi …
0
votes
6answers
76 views
Deploy a SQL stored procedure in C#
I have a stored proc .sql file on my system. I want to be able to move this file into database as a sp from C# code.
i could open the file, read it in as a string, and execute it …
0
votes
3answers
24 views
Mysql - modify result dataset
I have a program (flex) that queries a database and gets back a dataset (value, timestamp). In the program I then put each value in the set through an algorithm to get a new value …
0
votes
2answers
28 views
Selecting records during recursive stored procedure
I've got a content management system that contains a hierarchical structure of categories, with sub-categories subject to different ordering options at each level. Currently, that' …
0
votes
5answers
50 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 …
0
votes
3answers
49 views
How to control access to a Stored Procedure in SQL Server?
I want to be able to have a Stored Procedure that can only be used from a particular page, without having to create a permissions / role for a user, when it is just a single stored …
1
vote
2answers
35 views
Are Stored Procedures Atomic? [closed]
Possible Duplicate:
T-SQL (2005/2008) Stored Procedure Execution ‘atomic’?
Does MS SqlServer guarantee execution of an entire stored procedure (until the END s …
0
votes
3answers
66 views
Find unused stored procedures in code?
Is there an easier way of cleaning up a database that has a ton of stored procedures that I'm sure there are some that aren't used anymore other than one by one search.
I'd like t …
0
votes
2answers
39 views
SQL Data Source - store procedure and return parameter
I have a store procedure in SQL Server which returns a value:
CREATE PROCEDURE [dbo].[insertProc]
@value1 INT,
@value2 INT
AS
BEGIN
SET NOCOUNT ON;
INSERT INTO ta …
4
votes
4answers
72 views
How can I determine if a SQL Server stored procedure parameter has a default?
Is there a way to determine programmatically if a SQL Server stored procedure parameter has a default? (Bonus points if you can determine what the default is.) SqlCommandBuilder. …
0
votes
1answer
45 views
SQL DateTimes From C# Linq to Stored Procedure
I have a complex sql query that I have in a stored procedure and am calling from C#.
The procedure requires a date-time which I pass in as DateTime object from c#, the problem see …
0
votes
5answers
39 views
MSSQL 2008 Stored Proc suddenly returns -1
Hi folks,
I use the following stored procedure from my MS SQL Server 2008 database to return a value to my C#-Program
ALTER PROCEDURE [dbo].[getArticleBelongsToCatsCount]
@id in …
