Web Forms :: Merge Two Stored Procedures In SQL Server

Oct 5, 2012

I use below store procedure that don't allow insert duplicate data in database in code column 

ALTER procedure [dbo].[insertestate1]
@position nvarchar(max)
,@Transfer nvarchar(20)
,@Type nvarchar(20)
,@Behcode nvarchar(10)

[Code] ....

And this is my other SP that  I define Condition ,and  according to that condition  it update or insert data in database

USE [behtop]
GO
/****** Object: StoredProcedure [dbo].[insertestate] Script Date: 10/04/2012 11:36:21 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[insertestate]

[Code] ....

In first SP @code parameter is column in table that I don't want accept duplicate value and condition of that is:

IF NOT EXISTS(SELECT behcode FROM Estate_p WHERE code = @code)

And  in second SP I have @code parameter that I don't want it insert duplicate data on it too. But here condition is 

IF @id > 0 AND EXISTS(SELECT behcode FROM Estate_p WHERE id=@id)

Now I want merge two SP .. How I can do it?

View 1 Replies


Similar Messages:

SQL Server :: Script All Stored Procedures In One Hit?

Nov 18, 2010

I've been working on an upgrade for an app that's currently online.

I copied the database to my development server, have been making upgrades to the db (new tables, additional stored procedures, functions, etc). The new upgraded db is now complete and ready to go back online. I developed a script for all the new tables as I created them.

Basically this new db will go with the new upgraded app at a new domain.

So my plan is this...

Copy my existing db (the original) over to the new server.Run the script I developed on my development server to upgrade the new db to the latest version. Take the original db offline once the new one is running. However when I developed the new sps and fcns I didn't script them like I did for the tables (ooops! not thinking), and I have about 100 new sps. Is there anyway to script all the sps in one hit, so that I can run one script to upgrade the new db?

Or do I have to script them individually?

View 2 Replies

MVC :: SQL Server 2005 - Stored Procedures - NO LINQ?

Jan 27, 2010

I'm totally new to MVC (started this morning), and am totally at a loss where to start. I need to rebuild an existing website. I already have a SQL Server 2005 database with tables and stored procedures. In the old version of the website, I built a function to call stored procedures and return the results as a datareader in VB.Net.

I want to use ASP.NET MVC with C#.

The first question I have is: Where would I put the code for the function that calls stored procedures ?

My second question is: Where do I go from there? I just need to get a sense of the basic way to handle presenting a dynamic website. I just want to start out with a Site.Master and display my menus which need to be generated dynamically from my database. I've been googling all day and I haven't really found any posts which answer all of my questions.

View 4 Replies

SQL Server :: Retrieving Data From Stored Procedures?

Feb 2, 2011

I need to retrieve data from a stored procedure, but not from a reader. I need to insert and read to see if there is an error code returned so I can Display It

[Code]....

This inserts data into a stored procedure, since I have a promotion going on, I want to check to see if anyone has tried to create several accounts to try to be Customer #100 or so on, I have achieved this in the procedure, and set RETURN @ErrorCode = 1

Have I Set up the SqlParameter Correctly, or do I now have to declare a direction for each parameter?

I have had problems reading from Stored Procedures and Tutorials Seam Straightforward, but thay are about readers only not Input Output

View 3 Replies

SQL Server :: How To Debug Queries And Stored Procedures

Mar 24, 2011

How to debug queries and stored procedures in sql server 2008 like we doing in vs

View 1 Replies

SQL Server :: Working With Two Tables Using Stored Procedures?

Dec 20, 2010

I am trying to insert some data into a table and update another table using the same stored procedure but it doesn't work.

ALTER PROCEDURE dbo.new_suppliers_orders_add_products
@SupplierOrderID int,
@ProductID int,
@OrderQuantity int,
@NewOrderQuantity int
AS
INSERT INTO SupplierOrderLine(SupplierOrderID, ProductID, OrderQuantity) VALUES (@SupplierOrderID,@ProductID, @OrderQuantity)
UPDATE Products SET QuantityOnOrder = @NewOrderQuantity WHERE ProductID=@ProductID
RETURN

Is it any way it can be done or I need to use two separate stored procedures?

View 7 Replies

SQL Server :: How To Return Values From Stored Procedures

Aug 13, 2010

how to return list of values(single column values) from stored procedures in sqlserver 2005?

View 4 Replies

SQL Server :: Stored Procedures Output Parameters?

Mar 16, 2011

I have never used stored proc ouput parameters i want to know what is the use of using output parameters?If possible provide me some code.

View 10 Replies

SQL Server :: Pass The In Out Parameters In Stored Procedures?

Dec 12, 2010

how to pass the in out parameters in stored procedures

and how to execute it??

View 10 Replies

Calling Sql Server 2008 Stored Procedures Via Dblinks ?

May 6, 2010

Can this be done?

View 4 Replies

SQL Server :: Stored Procedures In Server 2008?

Dec 11, 2010

Informative link for the complete tutorial about how to write stored procedure in sql server 2008and how to call it at runtime on button event generation on website page..

View 7 Replies

DataSource Controls :: Prevent Server/Database To Have SQL Stored Procedures Encrypted?

May 13, 2010

I have access to two servers, one with my development database on, and another with the live database on.

All SQL Stored Procedures, Functions, Views are encrypted on the live database (using WITH ENCRYPTION in my query)

However I'm concerned I might accidentally encrypt a bunch of SProcs on my development database meaning I can no longer view/edit that code.

I have full control over the server and database, and was wondering if there is a way I can prevent these from being encrypted, therefore throwing up an error when this is attempted?

View 4 Replies

SQL Server :: Transfer Some Tables And Stored Procedures From 2005 To Express 2008?

Sep 4, 2010

I am trying to transfer some tables and stored procedures from SQL Server 2005 to Express 2008. I have tried using Management studio, but it isn't working....

View 5 Replies

SQL Server :: Want The User To Be Able To Select, Update, Delete, Add Data As Well As Execute Stored Procedures?

Aug 16, 2010

I have built a web app and want the user to be able to select, update, delete, add data as well as execute stored procedures, I thought that I would get this from the db_datareader and db_datawriter roles but I get an error when trying to select data etcFor instance I get an error when trying to run the stored procedure ups_AddCustomer when the user has the assigned roles db_datareader & db_datawriter but it works fine when the db_dbowner but i would rather not have the page user having full access to the database.

View 1 Replies

Multiple Single-result Sql Server Stored Procedures Or Single Multple-result Stored Procedure?

Aug 9, 2010

Background: I use stored procedures exclusively for an ASP.NET application. I am using a DataReader to load a dataset object.

View 4 Replies

DataSource Controls :: Stored Procedures Are Not Showing Up Correctly In The Stored Procedure Drop Down

Apr 27, 2010

I am using Visual Studio 2008 and SQL Server 2008 and have added a SQL datasource to my form.

When I configure the datasource, I choose my connection string which looks like this in my webconfig:

<connectionStrings>

<add
name="PSFSPRD_ConnectionString"
connectionString="Data

The database I am using has a schema called EQB and as such, my stored procedures are named as EQB.usp_SelectFunds, EQB.usp_SelectAccount, etc.

On the select tab of the Configure Data Source screen, I choose to use a stored procedure. The dropdown shows my stored procedures, however, the schema name does not show up in front of the stored procedures in the drop down. I see only usp_SelectFunds, usp_SelectAccount, etc.

I select one of the stored procedures and when I click TEST, I get the message that the stored procedure is not found. If I instead choose to use a SQL statement instead on the configuration screen and enter EXEC EQB.usp_SelectFunds and click TEST, it works fine.

Why are my stored procedures not showing up correctly in the stored procedure drop down and how can I fix this?

View 3 Replies

Web Forms :: Stored Procedures - In At The Deep End?

Aug 19, 2010

I'm a novice @ asp.net and in fact any dynamic website building as I'm normally the dba behind the scenes, however, circumstances arise and now I'm looking at the front end, so forgive me if my question seems so obvious or badly worded, it's only day 2 of the .net environment for me.

I have a stored procedure with several parameters (11) that I have written & tested on the server.

I am trying to call it on a web form (using visual web developer 2008 express)

I have created the text boxes & drop downs on the form.

Added a gridview table connected to my stored procedure (which then works on testing) (parameters set to control & picked from the dropdown of form boxes to match).

there is also a submit button. (no coding added) just dragged on page.

Like i said when I test the connection for the gridview of the stored procedure it works, however on the web face it doesn't. I put in the parameters click the submit button and the screen refreshes, i get done @ the bottom but no results. I tried just using the sql and got the same result. I've looked at books but can't see what I'm missing, although, i suspect the onclick event of my submit button.

View 16 Replies

Web Forms :: Input And Output Parameters For Stored Procedures In VB.NET?

Oct 22, 2010

I have several VB.NET functions which pass and receive values from executed stored procedures using parameters. However, the latest method I am using seems to be a little too specific on the datatype and data length of the parameters for my liking (i.e.

LogActivityCommand.Parameters.Add("@strErrSource", SqlDbType.NVarChar, 300).Value = strErrSource). For example:

[code]....

If I end up changing the datatype and data length properties of the variables in my SQL stored procedures in the future, I am going to have to re-visit my VB code too and alter the parameter settings here as well.

View 4 Replies

Forms Data Controls :: Call The Stored Procedures Dynamically?

Oct 18, 2010

ringht now i am working with one web page, in that page i have 3 sections of data [or 3 set of data] in 1 set 4 to 5 fields actions to be taken when we click on save button 1st it should save the 1st fields data in one of my sp and it should get the table level id it should loop that table level id into another set of records & insert into to the another sp

View 4 Replies

Forms Data Controls :: Binding To Multiple Stored Procedures?

Jan 16, 2011

I have a situation where in a legacy app (VB6) I have a grid which is populated by any one of a large number of (100+) stored procedures. Each of the procedures returns one or more rows with an identical list of columns (including column names, column data types, column order). I am basically looking at the (best) options to keep things reasonably light weight. Each procedure has its own set of parameters, each of which would result in different query plans etc. I have tried using each query to exec select into a (temp) table which is encapsulated into a "master" query which then returns a single results set, but it breaks SQL, the query optimiser returns an infinite number of rows - this is a MS documented issue. Looking for possible ways forward: generics, model view etc

View 3 Replies

Web Forms :: Call Different Database Stored Procedures Based On QueryString

Aug 9, 2012

I have 2 page

1-index.aspx

2-House.aspx

And these are my table in database

1-House_menu Table

Id Name H_name

1 Sofa Furniture
2 Table Furniture
3 Iron Electric
4 Vacuum cleaner Electric

2-House_p Table that save users product information

Id Name H_name Subset Description

1 Couch Furniture House furniture Test1
2 Armchair Furniture House furniture Test2
3 Blender Electric Kitchen Test3
4 Oven Electric Kitchen Test4

I have 1 unorderlist menu in index.aspx   

and 1 unorderlist in House.aspx page

I bind unorderlist from database

1-index.aspx

   Bind repeater from House_menu Table

<li class="current">
<a href="House.aspx?H_name=all">Furniture</a> <ul>
<asp:Repeater ID="rptMenu" runat="server">
<ItemTemplate>
<li><a href="Houseaspx?H_name=<%#Eval("H_name") %>"><%#Eval("name") %></a> </li>
</ItemTemplate> </asp:Repeater> </ul> </li>

And in House.aspx page i bind repeater from HOuse_p table subset column

<ul> <asp:Repeater ID="rptMenuE" runat="server">
<ItemTemplate>
<li><a href="House.aspx?subset=<%#Eval("subset") %>">
<%#Eval("Subset") %></a> </li>
</ItemTemplate>
</asp:Repeater> </ul>

When users click on menu item in index.aspx menu it go to house.aspx and bind datalist according to H_name column from House_p table

This is code

private void GetCustomersPageWise(int pageIndex) {
{
if (Request.QueryString["H_name"] != "all") {
using (SqlCommand cmd = new SqlCommand("GetCustomersPageWise1", _cn)) {
string BehCode = Request.QueryString["H_name"];

[Code] ....

Now I want when users click on menu item in House.aspx page it bind datalist from House_p table according to Subset column .. How I can do it ?

View 1 Replies

Forms Data Controls :: DataSet With Stored Procedures (3 Selects Statements)

Dec 23, 2010

This is my stored procedures with 3 selects statements
[Code]....

Now I have to fill two dropdown from the forst 2 select statements and need to fill some label through the 3 statement for this I did this
[Code]....

Its working fine my
[Code]....

Now I want to bind others controls. But I am not getting that how dataset differentiate which data need to bind to which control. How I can do this.

View 5 Replies

Forms Data Controls :: Gridview Editing With SQL Datasource And Stored Procedures?

May 26, 2010

I was reviewing my old post about this issue with a accessdatasource and that was simple since the Select, Update and Delete were all written within the datasource.

But this page im having issues with is using SQLDataSource and pointing to Store procedures. My issue is that i have created the sqldatasource with Insert(storeprocedure), Select(actual select statement), Update(storeprocedure) and was trying to take advantage of gridviews capabilities for editing when connected to a datasource that has all those elements setup.

Here is my datasource and gridview code: The gridview row goes into edit mode, but the changes never take affect on the database.

[Code]....

View 1 Replies

Forms Data Controls :: Delete Gridview Row Using Stored Procedures And Pass Parameters

Jan 8, 2011

i have a gridview and the delete option.

when i press delete button i want to run my stored procedure which requires an input variable. how can i do this?

View 1 Replies

MVC :: Calling Stored Procedures From Within MVC?

Dec 1, 2010

We have an existing application with a mature database where most of the business logic is in Stored Procedures that are maintained by a separate department. Application developers are not given access to the database except via stored procedures.

I am looking for an example of calling stored procedures from within MVC.

Actually, we have done almost no development until now in ASP.Net at all. Is the difficulty in interacting with stored procedures a MVC problem or is it a more generic ASP.Net problem?

View 10 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved