2
votes
1answer
24 views
“Error converting data type double to float” on inserting to DECIMAL column in SQL Server
I've got a SQL Server table with a DECIMAL(10,2) column. This should fit numbers up to 99999999.99. But when I insert any number >= 1000 into it via the following C# code, I get the exception "Error ...
7
votes
2answers
54 views
Change expired password without “Password Expired dialog box”
I'm logging on my application using Sql Server Database logon account. However, when a user's password is expired, i can only catch the error message using "error:18488" and display a message to user.
...
1
vote
4answers
44 views
How to get SQL Server process ID with C#
On my Windows Server 2008 I have local instance of SQL Server 2008 (or later 2012.) The server also has IIS configured to run ASP.NET web applications that connect to that SQL server to do basic ...
0
votes
1answer
38 views
SQL byte[] Parameters [duplicate]
I want to INSERT a byte array into a table (using C#). I've seen this: SqlParameterCollection.Add but I can't figure out how to use it - it doesn't seem to have a value parameter like AddWithValue ...
0
votes
2answers
73 views
Update datetime using .NET and SQL
I have Entity Framework ObjectContext. I need to update column of type datetime.
Here is my code:
ObjectContext.ExecuteStoreCommand(string.Format("update MyTable set DateTimeField='{0}' where Id = ...
-3
votes
1answer
25 views
Will Stored Procedure useful to increase performance in our application? [closed]
Many times we are using stored procedures in our web application. when me and my friend discussing about it, i got this question that will SP is useful to increase your performance? If yes then how? ...
-3
votes
1answer
39 views
How to stop an SQL query when browser is closed [closed]
I really can't find decent documentation for a problem that (I think) is quite general.
If I have a website written in .Net or Java which allows for users to execute very high demanding SQL queries ...
0
votes
2answers
66 views
DataBase Insert In Code Behind
Trying to insert into db both text and images. The only required fields are Category, Name, and Description. If just those fields have entries, the insert into the db is not successful. If the ...
0
votes
2answers
79 views
How to display progress bar while executing big SQLCommand VB.Net
I have this big SQL command that usually returns 20 000 - 100 000 rows of data.
But as soon as i call the executeMyQuery function, the program hangs for a few seconds depending on how large the return ...
0
votes
1answer
45 views
Procedure or function 'insert_grp' expects parameter '@mdate', which was not supplied
when am using save_click am getting above error,this is my code
protected void btn_save_Click(object sender, EventArgs e)
{
try
{
if ...
0
votes
1answer
22 views
+50
SQL Server 2012 Remote connection giving Timeout and ASYNC_NETWORK_IO errors
I am experiencing problems with a service that connects to a remote instance of SQL Server 2012.
The .NET 2.0 service runs on the clients machine and it connects using TCP/IP to a remote web server ...
0
votes
0answers
17 views
Deploying a .mdf database file to SQL Server automatically
I want to write an installer that automatically deploys a SQL Server database (.mdf & .ldf file).
The target PCs are presumed to have SQL Server 2008 OR SQL Server 2008 Express already installed ...
0
votes
1answer
33 views
SQL Server online/offline scenario
I have build an application that have to read some MS Access data from several (+100) shop locations, and save some data on a remote MS SQL server that is at the end point of a VPN. Because the ...
-1
votes
1answer
28 views
Image Upload from SQL Server to iPhone app [closed]
We have some images in SQL server 2008 database for some consumer products which need to be uploaded to iPhone app whenever the user wants to sync the Local Database on iPhone and remote database.
...
0
votes
1answer
20 views
SQL Server create assembly which references another assemblies
I have .NET class library which uses Quartz.dll
When i register assembly in sql its says that Quartz.dll requeres system.web, system.drawing, System.DirectoryServices.Protocols...
It is not ...
1
vote
1answer
32 views
Persisting Object Graph to SQL Server in a single transaction
I am having an issue coming up with a solution that I think must be a common problem to be solved by anyone writing to a database. I keep thinking that there is an obvious solution that I'm ...
2
votes
0answers
45 views
SQL Express client memory usage differs to SQL Enterprise client memory usage
I am experiencing a big difference in .Net application memory usage using the same app against two copies of the same database. The only difference is that in scenario 1 I am using a local copy of ...
1
vote
0answers
60 views
Create a database table from a Type. In code. Simply
I've been looking to replace SqlCommand's with Entity framework or Linq-To-SQL. However, they seem to rely heavily on using the designer (which I rather minimize), and in the case of Linq-To-SQL it ...
1
vote
2answers
33 views
DbConnection.Open() works but dbConnection.OpenAsync() doesn't
This is a tough one. Using the exact same query string, the exact same following code:
using (var db = new SqlConnection(queryString))
{
await db.OpenAsync();
var results = await ...
0
votes
0answers
60 views
SqlBulkCopy inserts rows twice in database
If anyone could help me over this. I am taking input from user using GridView and then creates a DataTable to update sql database using SQLBulkCopy. If I insert 2 rows, DataTable is showing row ...
0
votes
1answer
48 views
Synchronous controller with Task.Factory.StartNew versus Asynchronous controller in MVC 4 versus Service Broker Activation
I have a project running in MVC 4 on a .Net 4.0 VS2010 environment. I need to have a long running sql task handled without making the user wait on the front end for that long.
The MVC 4 web ...
1
vote
1answer
44 views
How to map result from stored procedure to object
I'm using EF for fetching data from stored procedure in MS SQL. Stored procedure is returning table. (columns have same names as properties in my object)
List<MyObject> result =
...
0
votes
0answers
36 views
How to get started with SignalR [closed]
I will be working on a project next month using SignalR. I'm completely new to that technology and was wondering how to get started on it. The videos I've watched are out dated (using older released). ...
0
votes
0answers
49 views
long running sql procedure hangs website
I have an MVC 4 web application that calls the business layer which calls a data layer method ExecuteSP asynchronously. The data layer method ExecuteSP calls a long running stored procedure like this:
...
1
vote
3answers
52 views
Extracting messages from SQL Server Service Broker
How do you extract messages from SQL Server Service Broker please? I'm using nservicebus.
I have messages in my SQL Server Service Broker queue but I'm not sure how to process them.
many thanks,
0
votes
0answers
24 views
what are the pros and cons of using iexceldatareader? [closed]
I am posting this question for all so that get list of of pros and cons of using IexcelDataReader. I use it to convert excel file to DataTable. Later I process this DataTable through various ...
0
votes
3answers
51 views
Remember how far you've gotten when crunching a big MSSQL table?
We have a application that executes a job to process a range of rows from a mssql view.
This view contains a lot of rows, and the data is inserted with a additional column (dataid) set to identity, ...
-2
votes
0answers
48 views
Run a stored procedure in a loop in VB.NET
Run a stored procedure in a loop in VB.NET
I have the following method, where I want to execute the stored procedure several times, but does not execute the command Thanks for your help.
Edit: ...
12
votes
3answers
289 views
Entity Framework 5 wrong data type in query
We are using EF 5.0 as our ORM of choice in our business solution, structured in a n-layer fashion with everything decoupled and a nice composition root with ninject.
Lately, we've been building a ...
0
votes
2answers
72 views
Return objects with populated list properties from stored procedure
I'm new to SQL Server stored procedures, so apologies if I'm being an idiot. I would like to use a stored procedure to return a list of objects, each of which has a property containing a list of ...
-1
votes
3answers
59 views
Aggregate data from datatable [closed]
I have a datatable with two columns(DueDate and UntiPrice) and I want to aggregate values from UnitPrice column as per date specified in Duedate column on monthly and daily and yearly basis.
Thanks ...
1
vote
1answer
88 views
How to use DataAdapter with SqlTransaction in C#?
I need to create 2 buttons, one for starting a transaction (startButton) and one for committing a transaction (commitButton).
I got stuck trying to implement it for the SELECT command.
When I press ...
0
votes
3answers
32 views
How to stream XML from SQL Server 2005 to HTTP Response stream for download
I have a stored procedure in SQL Server 2005 that generates a 170 megabyte XML file (using SELECT FOR XML)
How, in ASP.NET, would I stream this XML for download as a file in a web browser?
1
vote
1answer
68 views
System Data SqlClient SqlException
I have to execute an updating query :
using (SqlCommand sqlCmd = new SqlCommand("UPDATE Test SET Testedpiece = Testedpiece + 1 and Rate = (Testedpiece * 100) / Totalpiece WHERE IDSuperlot = ...
0
votes
0answers
97 views
The DELETE statement conflicted with the SAME TABLE REFERENCE constraint with Entity Framework
I have a table with a self reference where the ParentId is an FK to the ID (PK).
Using EF (code-first), I've set up my relationship as follows:
this.HasOptional(t => t.ParentValue)
...
0
votes
1answer
50 views
Insertion query C# sql server
I have an insertion query in this function :
public string Insert_Piece(List<Piece> liste)
{
this.Connect();
using (connexion)
{
...
0
votes
1answer
134 views
C# Displaying Image from Database
I am having some issues displaying an image from a SQL Server database in a .NET application using C#. I've got the save part of the image working and it is storing the image as a series of byes in ...
1
vote
1answer
38 views
Extracting SQL Server Value from CRM 2011 - How do I do this?
Ok so in CRM 2011 I have a field called Contract Expiry Date and I want to populate this value from an external SQL Server database...Basically I just need to grab this value, nothing fancy but where ...
0
votes
1answer
90 views
Load big xml file in sql server
I have to load a very large xml file in sql server 2008 r2.
The file looks like:
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<listaCupons ...
0
votes
1answer
43 views
sqlcmd error Unclosed quotation mark
I want to restore sql server db from sql server 2012 to sql server 2008 R2 using SQLCMD.
sqlcmd -S localhost -E -I -d abc -i d:\db\abc.sql >> ran fine till 33399 rows. The abc.sql is 3.4 GB in size.
...
-3
votes
0answers
65 views
Passing the value into text datatype in SQL Server 2008 [closed]
I have the following code:
public int get(string val1,string val2)
{
//string s="insert into sample values('"+val1+"','"+val2+"')";
string s = "insert into sample values(@p1,@p2)";
...
2
votes
3answers
90 views
Many Inserts in stored procedure in SQL Server
I am part of one development team, where i have an stored procedure (SQL Server 2008) which contains around 40 insert queries. These queries inserts around at least 100's of records are inserted at ...
1
vote
1answer
62 views
How to sort a large list of (possibly partial) addresses by distance from lat/lon
I have a database with 10,000+ addresses that I want to sort by distance from a single lat/lon.
The addresses are sometimes full street addresses, and other times just zipcode, and sometimes ...
0
votes
2answers
37 views
Implemeting Notification System
Basically what I'm trying to do is a system that each time there is a new user added to a SQL Server database, it sends a notification to the android and iOS app I'm developing. I was planning to use ...
0
votes
2answers
59 views
How do I know actual SQL Server client side connection pool utilization?
My C# code uses SqlConnection to connect to SQL Azure. Sometimes I will face the following:
System.InvalidOperationException
Timeout expired. The timeout period elapsed prior to obtaining a ...
0
votes
1answer
84 views
Issue with importing .csv using MS Jet OLEDB
I'm importing a CSV file to SQL for an ASP .NET application. I am able to import the .csv, however one column contains null values if there is anything other than numbers in it.
This row imports ...
1
vote
0answers
53 views
Database design to store and evaluate rules expression
I have a scenario where I need to assign some Items to a Guest.
GuestTable has columns like
1. Guest ID
2. GuestType
3. Age
4. Height
5. Gender
ItemTable has columns like
1. ItemID
2. Item Name
...
1
vote
1answer
103 views
How to use SqlCacheDependency?
I need to implement SqlCacheDependency for a table which will depend on this query:
SELECT Nickname FROM dbo.[User].
I have created a method for this purpose:
private IEnumerable<string> ...
0
votes
2answers
67 views
SQL Query pauses
My query seems to be stalling every so many passes through the query.
status_text.Text = "Check existing records...";
status_text.Refresh();
using (StreamReader reader = new ...
0
votes
2answers
35 views
SqlServer wedged connection due to network drop
We have two directly related problems that can be reduced to a very simple piece of code.
Suppose machine 1 hosts the application, and machine 2 hosts the database, connected by ethernet via a hub.
We ...






