Tagged Questions
1
vote
3answers
41 views
Incorrect syntax near the keyword 'PROCEDURE' [closed]
Execute following statement in the SQL Server
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[SP_CandidateRegistration]') AND type in (N'P', N'PC'))
BEGIN
CREATE ...
0
votes
2answers
48 views
Trying to lock database but not working
I have a table that looks like this
Create Table Items(
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[UniqueCol] [nvarchar](20) NOT NULL,
[Col] int NOT NULL
)
ALTER TABLE Items ADD ...
0
votes
1answer
25 views
Stored Procedure in SQl server 2008 to get sum of column of table and call it in controller in asp.net mvc3
I am new to SQL- Server 2008
I want to write a stored procedure to get sum of a column in table and display it in a single column.
and I want to call this procedure in my controller of Asp.net Mvc3 ...
0
votes
0answers
44 views
insert comma separated list of ids in a stored procedure [duplicate]
I'm trying to create a stored procedure in SQL Server 2008 that takes a comma separated list of ints and adds them to a table.
For this example, the table has 1 column. So the stored procedure would ...
0
votes
1answer
33 views
Severe error on MERGE OUTPUT statement
I'm getting a severe error - code 20, from a Merge statement and I am not sure why. The MERGE runs fine if I remove the OUTPUT $action clause, and updates/inserts the target table as expected. As soon ...
1
vote
1answer
19 views
Custom Paging for the recommendation
I have around 10000 records in my Sql Server Database, now i want to show 10 records per page, can anyone tell me which of the below 2 ways i should go for:
so for this shall i go for GridView (built ...
-2
votes
1answer
84 views
Output variable from dynamic SQL
I have an issue wen I try to output a value from a dynamic T-SQL Query inside of a stored procedure.
I try to execute the following and simply output a 1 if something was found:
SET NOCOUNT ON
...
1
vote
1answer
34 views
User has permissions problems with SPROC even after granted permissions to all DB items
The MetricsUser account receives the following error when executing a stored procedure:
"Msg 1088, Level 16, State 7, Procedure Data_SPROC, Line 59
Cannot find the object ...
1
vote
2answers
30 views
How can I call stored procedure returning both a table and a return statement in a controller in mvc entity framework 4?
I have a stored procedure which returns a table as well as a return errorstate which is an int. How can I call this stored procedure from a controller in MVC.
(I'm using Entity Framework 4)
Stored ...
1
vote
1answer
32 views
How to use IF Else in store procedure?
I am trying to execute Select query with ID parameter, now if ID is empty then I want All Rows, otherwise only row which contains this ID,
So far, I have created this Store Procedure,
IF(@CustId = ...
-1
votes
0answers
33 views
Execute .js file within a mssql stored procedure
I have a web application that gets the shortest distance from a given point to a given array of points.
This works based on a javascript file that gets loaded when user requests the info.
Now, I ...
0
votes
1answer
33 views
Where can I SET DEADLOCK_PRIORITY in my stored procedure?
I am unsure as to where I can use the
SET DEADLOCK_PRIORITY...
command in my stored procedure. Does it need to be before I begin a transaction? Or can it be anywhere in the transaction?
Thanks ...
1
vote
1answer
33 views
Using stored procedures to simplify XML generation
I am trying to write an SP to return invoice details in XML for transferring to a third party.
I have a working SP but it's a bit messy (simplified below):
SELECT (
SELECT GETDATE() AS ...
0
votes
2answers
37 views
TSQL Use record currently being inserted to select data in another table
Very new to TSQL...
I have the following table called "tblinit":
Account_Num UserID Task_Percent
----------- ------------ ------------
1 john.smith 0.75
I would like ...
1
vote
0answers
65 views
Bulk insert using Merge and output clause in sql server 2008
I have a table1 which having one column which is primary key and I have anthoer table2 which have 2 columns and 5 rows. I need to do bulk insert into table 1 depends on rows in table 2 and reterieve ...
0
votes
1answer
75 views
Creating a Search Function, using stored procedure
Supposedly I have the ProjectCode textbox:
<td align="left" width="200px">
<asp:TextBox ID="TbProjectCode" runat="server" Width="194px"></asp:TextBox>
</td>
and one ...
-2
votes
0answers
39 views
How to Calculate table Count? [closed]
I try to make table count as percentage, but when I try to sum it, its come without result. Not error but, the percentage result is 0 , I don't know why, because the query message is success. Is it ...
1
vote
0answers
58 views
conditional update/insert in sql
I have a stored procedure for updating/inserting data being read from XML. Now as you see in the xml data under itemResults, there are multiple (2 in this case) items. I want that only the item for ...
2
votes
4answers
81 views
How to optimize SQL query to achieve the minimum execution time
I have a simple table 'TABLE_1'
Org Customer Code Ordered Deleted Confirmed
RU Cust_1 A 1000 800 200
RU Cust_2 B 300 0 300
US ...
1
vote
5answers
55 views
Need to find no of nth occurenece of the day from date in sql
I have date and day. Now I want to find whether it is 1st or 2nd or 3rd or 4th week for that day.
Suppose if I pass date today. Then it should return "1st Tuesday" of the month.
If I pass ...
0
votes
1answer
52 views
Declare a SQL Cursor into With-As Clause
I want to create a stored procedure in SQL Server Management Studio which have a with clause.
And I want use a SQL cursor in with clause.
My stored procedure is:
ALTER PROCEDURE ...
0
votes
1answer
50 views
Stored procedure to get Employee Task data comma seperated in Sql server 2008 as backend and Asp.net mvc3 as frontend
I need to write an stored procedure for SQl server 2008 to get all Tasks of a employee comma separated and want to display that in a single column in next table. In front of EmployeeID, all task ...
3
votes
2answers
68 views
How to do an Alter in SQL Cursor
I have 100's of databases for which I need to do an Alter to a procedure, they all have the same procedure. How can I add a cursor that will allow me to do this alter?.
DECLARE @databasename ...
1
vote
2answers
90 views
Insert data into SQL Server from stored procedure
My knowledge in SQL not so far, please help me with my issue:
I have a script that generates some data. I need to insert this data into a table with following structure:
Variable_Sample (idsample, ...
0
votes
1answer
34 views
TSQL allocate variables from child result set to avoid repeating query
Is there a way to efficiently improve on the code below without repeating the query like this?
Note: There is a known number of elements for assigning arguments to in this case.
SELECT @var0 = ...
0
votes
1answer
85 views
SQL Server Stored Procedure to generate a Code based on firstname and lastname
I'm new to SQL Server stored procedures. I was wondering how to go about writing this stored procedure. The scenario is:
The procedure takes firstname and lastname as parameters, on basis of that it ...
3
votes
0answers
47 views
SELECT COL_NAME(969262708, ORDINAL_POSITION) returns a NULL value in one of the rows [migrated]
So I've got a Stored Procedure that's copying data from one table to another. It calls this other SP to get the column names. I didn't write this darn thing, but here's that part:
ALTER PROCEDURE ...
1
vote
2answers
100 views
Linq-to-Sql Sproc — ToList() is Too Slow
I'm using Linq2Sql to return the results of a stored procedure. The sproc provides 100,000 records in under 2 seconds. Applying ToList() takes over 2 minutes.
The project is an ASP.NET WebForm. In ...
-1
votes
2answers
64 views
Query to Change/Update existing integer value to character value in a table in SQL Server
I'm getting data as integer (0,1,2) from the database table using a stored procedure. Now I want to write some query/modify my query to convert this to characters (A,B,C) and show it.
Basically I ...
0
votes
1answer
72 views
Cannot alter table with LINQ TO SQL and stored procedure
I have to alter the table Statistic when I add a new metric in the table Metric I add a column in table Statistic.
I used a stored procedure that allows me to alter the table Statistic so the code :
...
0
votes
5answers
151 views
TSQL implementing double check locking
I have an arbitrary stored procedure usp_DoubleCheckLockInsert that does an INSERT for multiple clients and I want to give the stored procedure exclusive access to writing to a table SomeTable when it ...
0
votes
3answers
117 views
Represent multiple rows of data in one column as multiple columns in one row SQL server
I have a table with the following structure and data:
batsman | runs | year
1 | 800 | 2012
1 | 950 | 2011
1 | 1050 | 2010
2 | 550 | 2012
2 | 650 | 2011
2 | ...
1
vote
3answers
96 views
Procedure calling other procedure in t-sql
I have this T-SQL procedure in SQL Server 2008 :
create procedure rolledback as
begin
set nocount on ;
declare @min int
declare @max int
declare @I INT
IF OBJECT_ID ...
0
votes
3answers
76 views
How to write a simple sql procedure?
I am working on sql server database. I have 2 tables with 1 to many association in my db. First is Parent table and second is Child table. Parent table has a column ChildCount which will update ...
0
votes
4answers
46 views
Search based on selected column in Sql Server 2008
I have table Student having ID, FirstName, LastName columns.
Student Table - ID, FirstName, LastName
I will pass ColumnName and searchText to procedure.
e.g. ColumnName=FirstName, ...
1
vote
0answers
43 views
Stored Procedure returning different results when ran on different servers
I have a query that is ran in a staging and production environment. I want the result, in this particular case, to return nothing. In staging it works as expected. In production, however, I get one ...
3
votes
2answers
72 views
Creating a Stored Procedure
I am trying to create a stored procedure that will allow me to update the ActualArrivalDate and ActualDepartureDate in a TripStop table where StopTypeCode = Drop in the TripStopOrder table.
Create ...
1
vote
1answer
45 views
logging ONLY effected rows in sql update procedure
I have a procedure that updates x amount of rows in a table. I have created a log table that will have records of all the updated rows. So each time i run my procedure and it effect eg. 5 rows, these ...
0
votes
1answer
44 views
Find out what stored procedures are signed using certificate in SQL Server 2008
I am producing a database update script I want to find out stored procedures have been signed using various certificates.
I can get the list of stored procedures using sys.procedures and I can get ...
0
votes
3answers
77 views
looping through rows using SQL procedure
I have two tables which looks like this:
Table1(ID, name, street, houseNo, DeliveryID) and Table2(ID, name street houseNo, DeliveryID)
I want to create a procedure that checks the contents of ...
0
votes
2answers
60 views
How can I get the result of a stored procedure in C#?
Here is my code in C#:
float r_discountValue = 0;
SqlConnection con = Constant.GetConnection();
SqlCommand cmd = new SqlCommand("Coupon_GetDiscountFromValidCouponCode", con);
cmd.CommandType = ...
1
vote
1answer
29 views
Ensure endDate equal to or later than startDate
I have a table in which I need to ensure that startDate is not later than endDate.
Either date can be updated so the rules have to apply regardless if startDate or endDate (or both) are ...
0
votes
2answers
49 views
Cast in SQL Server query
I am having a problem with executing one SQL query, Below is my stored procedure
Query
ALTER PROCEDURE ProcName
(
@iID VARCHAR(50),
@AccountID INT
)
AS
SET NOCOUNT ON
DECLARE @Sql ...
0
votes
3answers
88 views
How can I implement Stored Procedure that accept dynamic search criteria?
Suppose I have the below table ( TestTable ) :
ID , SystemID , UserID ( all columns are of type int )
I want to write a stored procedure that should accept a string parameter; its value like ...
0
votes
3answers
101 views
Inserting multiple new record same as existing records from same table with one column value changed
I have table in which I am storing records for lease contracts on a properties.Record is stored like this:
ID|PropertName|ContractStartDate|ContractEndDate|Status
1| pqr | 5/17/2012 | ...
0
votes
2answers
669 views
SQL Stored Procedure OUTPUT Return Multiple Rows
I need to return a list of all reports in a report table that have not been processed yet. I am using stored procedures for this process.
Here is my stored procedure creation:
CREATE PROCEDURE ...
0
votes
0answers
50 views
is it possible to commit/rollback another procedures transaction in current procedure
i have two questions
1.i have two stored procedures. is it possible to commit/rollback another procedure's transaction in my current procedure.
2.i have two webservices two services connected with ...
0
votes
2answers
142 views
Slow stored procedure, searches through all tables in a database, what is a better algorithm?
My stored procedure takes 6 parameters and given those parameters it looks through all the tables in a database and tells you which tables have the specified data.
For example:
...
0
votes
0answers
79 views
how to write the sql script to compare two table and generate the update script
suppose we have two table, tab_prod and tab_temp same structure but different data
requirement is generate the script for update(include insert and delete) tab_prod based on tab_temp
for exmaple in ...
0
votes
0answers
67 views
How to copy a existing stored procedure ( .sql file ) into a MS SQL Server 2008R2 database with SQL Server Management Studio
I had on another PC a database which did contain a stored procedure, I could see it in the object explorer of MS SQL Server Management Studio like in the picture below:
My web-application connected ...








