WCF / ASMX :: Error While Executing Stored Procedure On Wcf?
Apr 8, 2010
I use a wcf service to fetch data to a silverlight application, but when I try to execute a stored procedure from the wcf, I get this error..
"Data at the root level is invalid. Line 1, position 1.", this happends here..
Dim MyList = From p In db.StatisticByInvoicingAdressAndDateAndCustID(FromDate, ToDate, CustID)
But when I run the stored procedure on the sql server it works fine and return records, I just don't get it... What is wrong and causing this error?
View 1 Replies
Similar Messages:
Oct 1, 2010
I have created stored procedure in sql server 2005 and connected that database to asp.net application when i submit a data from application form corresponding stored procedure stored procedure(sp1) giving following error Could not find stored procedure 'sp1'. I have written following code on buttonclick event provide me a solution and point out the error in code if exists
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
DataSet ds = new DataSet();
SqlConnection con;
//Here we declare the parameter which we have to use in our application
SqlCommand cmd = new SqlCommand();
SqlParameter sp12 = new SqlParameter();
SqlParameter sp2 = new SqlParameter();
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{...............................................................
View 1 Replies
Mar 11, 2011
Below is my sample stored procedure. When I am executing stored procedure by passing DATE it is showing below error.
Invalid object name 'TEMPP'
[code]....
View 2 Replies
Apr 13, 2010
I have a silverlight web page on which I have a button which updates the values in the database. On the click of the button I want to execute the update query to update the table. I am not getting any clue on how to go on with. Please suggest something
View 3 Replies
Aug 9, 2010
Let's say I have a query like this:
[Code]....
But I want to call a procedure (DeleteUser) for every rows returned from that query.
And of course the procedure has a parameter. But it should be the UserID which is returned from query.
So how to do it?
View 3 Replies
Jul 29, 2010
I am executing stored procedure using session.CreateSqlQueries but it is giving me exception as {"SQL queries do not currently support returning aliases"}.
I tried doing following also but it is not working for me
[code]....
View 8 Replies
Feb 10, 2011
recently we migrated our website from one server to another. For the most part the site is up except we have a calendar on the site that allows event insertion, when we attempt to add a new event it throws an error of "Sql Exception was unhandled by user code...An explicit value for the identity column in table 'dbo.Events' can only be specified when a column list is used and INDENTITY_INSERT is ON". Now i know about identity columns and know that that is not the problem, because that particular table (Events) has a dependent Stored Procedure associated with it, that is not longer being executed! Unfortunately i inherited this site and am trying to make sense of it all. The error is happening at line "cmd.ExecuteNonQuery()".
[Code]....
View 2 Replies
May 13, 2010
[Code]....
SelectCommand="Execute ClassesSelect" runat="server">
<SelectParameters>
<asp:ControlParameter Type="Boolean" Name="@all" ControlID="chkAll" PropertyName="Checked" />
</SelectParameters>
</asp:SqlDataSource>
View 1 Replies
Aug 17, 2010
I am attempting to execute a stored proc in asp.net in the code behind. The parameter I am trying to pass is strErrorMessage that contains a value of "The transport failed to connect to the server.; ". The error message when the query gets executed is: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Parameter 1 ("@errMessage"): Data type 0xE7 has an invalid data length or metadata length. Update with code
try
{
...
...
...
}
catch (Exception ex)
{
ClientScript.RegisterStartupScript(GetType(), "alert", "alert('Email was not sent - " + ex.Message + "');", true);
string strMessage = ex.Message;
string strStackTrace = ex.StackTrace;
strMessage = strMessage.Replace("
", "; ");
strMessage = strMessage.Replace(" ", "");
strStackTrace = strStackTrace.Replace("
", "; ");
strStackTrace = strStackTrace.Replace(" ", "");
AppErrorLog(strMessage, strStackTrace);
return false;
}
protected void AppErrorLog(string strErrorMessage, string strErrorStackTrace)
{
SqlConnection conErrLog = new SqlConnection(strConn);
string sql = "usp_AppErrorLog_AddRecord";
SqlCommand cmdErrLog = new SqlCommand(sql, conErrLog);
conErrLog.Open();
try
{
cmdErrLog.CommandType = CommandType.StoredProcedure;
cmdErrLog.Parameters.Add(new SqlParameter("@errMessage", SqlDbType.NVarChar, 8000));
cmdErrLog.Parameters["@errMessage"].Value = strErrorMessage;
cmdErrLog.Parameters.Add(new SqlParameter("@errStackTrace", SqlDbType.NVarChar, 8000));
cmdErrLog.Parameters["@errStackTrace"].Value = strErrorStackTrace;
cmdErrLog.Parameters.Add(new SqlParameter("@userID", SqlDbType.VarChar, 12));
cmdErrLog.Parameters["@userID"].Value = User.Identity.Name;
SqlDataAdapter ada = new SqlDataAdapter(cmdErrLog);
cmdErrLog.ExecuteNonQuery();
}
catch(Exception e)
{
ClientScript.RegisterStartupScript(GetType(), "alert", "alert('AppErrorLog - " + e.Message + "');", true);
}
finally
{
conErrLog.Close();
}
}
The column datatype in the table is nvarchar(MAX).
View 4 Replies
Jul 8, 2010
I had a stored procedure as below. I'm trying to return an integer of differences btw 2 integers. In SQL Server 2008, the stored procedure works just fine, it shows me the value I wanted in @intdiff.
But when I try to retrieve it with my webservice, it only return value 0. My webservice coding as below. Could any1 come accross this before?
Stored Procedure
[Code]....
Web Service
[Code]....
View 2 Replies
Apr 2, 2010
This is surareddy. i nead some small clarification in the "Stored Procedure"
how to convert the oracle Stored Procedure to sqlserver2005/2008 Stored Procedure.
right now i am enhancing the project that project already developed the oracle Stored Procedure. now our company is using sqlserver 2005/2008.
how to convert the Oracle Stored Procedure to sqlserver 2005 Stored Procedure
View 4 Replies
Dec 9, 2010
Initially, I have tried to use stored procedure. But I changed my mind and preferred to call sql query in codebase with command text. However, it stills tries to find initially-called stored procedure (which is neither called or exists).I think that it is related caching. But I tried it with different browsers it did not work.What might be the reason?
View 4 Replies
Jan 28, 2011
I could probably figure this out if I tried to, but I have been working so long on code, I'm a little fried
I have a stored procedure, and I want to execute another stored procedure during a time period of lets say 1/1/2011 to 12/31/2011
How Would I accomplish this?
View 4 Replies
Aug 5, 2010
Can anyone see why i get this error in my stored procedure?
ERROR:
[Code]....
STORED PROCEDURE:
[Code]....
View 5 Replies
Apr 1, 2014
I am trying to write a stored procedure to be used in a asp.net application, but I cant seem to get the SQL right:
Code:
select cast('<Page><Id>' As varchar(266)) + cast(pa_pageid AS int) + '</Id><Path>' + pa_path + '</Path><Replace>' + pa_replace + '</Replace><Scrape>' + pa_scrape + '</Scrape><Select>' + pa_selectorid + '</Select>
<Sel-pos>' + pa_selpos + '</Sel-pos><Sel-tag>' + pa_seltag + '</Sel-tag><Regex>' + pa_regex + '</Regex></Page>' from WST_Page
That's the query I am running, and I get this error:
Code : Conversion failed when converting the varchar value '<Page><Id>' to data type int.
View 5 Replies
May 11, 2010
I have a button which the admin will click on every new acad year to update the student's study level.
I have written a SP to do this process, however, it was working fine. But I faced problem when I did testing.
This is my student update study level stored procedure:
UPDATE Student
SET acadLevel = (CASE WHEN acadLevel < '3' THEN convert(char,acadLevel + 1) ELSE convert(char,'G') end )
WHERE acadLevel between '1' and '4';
Error: Conversion failed when converting the varchar value 'G' to data type int.
View 5 Replies
Dec 4, 2010
fetching data from 2 tables in one Stored Proceure..what's wrong with the SP below ?
Its giving error as "Msg 208, Level 16, State 6, Procedure sp_GetID, Line 9
Invalid object name 'Admin.sp_GetID'."
ALTER PROCEDURE GetID
(
@ID int [code]....
I am altering a previously made procedure...All I changed was ..I added the second SELECt statment...just that...otherwise SP was executing
View 2 Replies
Jan 18, 2010
Does anybody if it is possible that a stored procedure returns rows which is the result of the execution of another sp? Something like..
[Code]....
View 11 Replies
May 13, 2010
i want to return output parameter from 1 storeprocedure. into another stored procedure.
View 7 Replies
Sep 2, 2010
@ContractStateCode, @ContactZipCode @BillingStateCode, @BillingZipCode show "not a parameter for procedure SelectDonorXiD".
The Results show the selected data but the parameters are all null.
My C# ocde -
DataView dvSql = (DataView)sdsEditDonor.Select(DataSourceSelectArguments.Empty);
gives - "String[1]: the Size property has an invalid size of 0."
I understand that something is wrong with my stored procedure but for the life of me I cannot see what.
Table ------
USE [char68003f]
GO
/****** Object: Table [dbo].[GFA_Donors] Script Date: 09/01/2010 19:44:37 ******/
[code]....
View 5 Replies
Jan 10, 2011
Not sure what's going on with this procedure, im kind of new at dynamic DB programming. As of right now if i click a button that triggers the execution of this stored procedure the page says the connection has been timed out..despite other stored procedures working flawlessly.
[code]....
View 9 Replies
May 24, 2010
Im trying use a storedprocedure where depending on the status of the room if ='Vacant' And checkIn =date and the result will be put in a gridview, but i kept returning an error that says, "Conversion failed when convertng datetime from character string". Heres the code.
Caller:
[Code]....
Stored Procedure:
[Code]....
GridviewFiller:
[Code]....
View 7 Replies
Dec 1, 2010
I have a stored procedure, which I'm calling from ASP.Net application. I'm facing a problem in stored procedure when comparing values.Please check code below to get further details.
Stored Procedure:
ALTER PROCEDURE [dbo].[MyStoredProcedure]
(@ItemID nvarchar(50), @Weight1 float, @Weight2 float)
-- check remaining/available weight in items table
DECLARE @RemainingWeight float
SET @RemainingWeight = (SELECT RemainingWeight FROM items WHERE ItemID = @ItemID)
[code]...
View 4 Replies
Jun 15, 2010
i m using ##Temp Table in stored procedure..it gives this error There is already an object named '##people' in the database.in two codition1.in case of multisession2. if transaction drop in between even i drop Table in Last in stored procedure..what can i use in place of temp table to hold data for a time being
View 1 Replies
Jul 27, 2010
I'm programming a webpage in ASP.NET which displays a list of students not listed as participants in something, and upon clicking a student name shows you a brief summary of their details, so the user can ensure they're selecting the right person. Each student is identified by a unique ID.
My code currently correctly obtains their ID, adds it as a parameter to my stored procedure and executes the procedure;
[Code]....
However, when I try to access the results, with say dv.Table.Rows[0], I get the following error:
[Code]....
Upon debugging, there don't seem to be any results returned... when running just the stored procedure in SQL Server with the same data, it does return a single row, as expected.
View 2 Replies