Tagged Questions
140
votes
46answers
9k views
What are the pros and cons to keeping SQL in Stored Procs versus Code
What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working on (C# ASP.NET ...
93
votes
22answers
4k views
Joins are for lazy people?
I recently had a discussion with another developer who claimed to me that JOINs (SQL) are useless. This is technically true but he added that using joins is less efficient than making several requests ...
45
votes
10answers
35k views
What represents a double in sql server?
I have a couple of properties in C# which are double and I want to store these in a table in SQL Server, but noticed there is no double type, so what is best to use, decimal or float?
This will store ...
27
votes
2answers
26k views
LINQ to SQL - Left Outer Join with multiple join conditions
I have the following SQL which I am trying to translate to LINQ:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17
WHERE p.companyid = 100
I have ...
27
votes
10answers
13k views
What's the fastest way to bulk insert a lot of data in SQL Server (C# client)
I am hitting some performance bottlenecks with my C# client inserting bulk data into a SQL Server 2005 database and I'm looking for ways in which to speed up the process.
I am already using the ...
26
votes
8answers
15k views
Parsing SQL code in C#
I want to parse SQL code using C#.
Specifically, is there any freely available parser which can parse SQL code and generate a tree or any other structure out of it? It should also generate the proper ...
24
votes
3answers
2k views
What is the difference between “LINQ to Entities”, “LINQ to SQL” and “LINQ to Dataset”
I've been working for quite a while now with LINQ. However, it remains a bit of a mystery what the real differences are between the mentioned flavours of LINQ.
The successful answer will contain a ...
22
votes
4answers
2k views
Reasons for and against moving from SQL server to MongoDB
I know this is a big question and it's not a yes or no answer but we develop web apps and are looking into using MongoDB for our persistence solution. Combining MongoDB with NoRM for object storage.
...
22
votes
8answers
7k views
SQL Identity (autonumber) is Incremented Even with a Transaction Rollback
I have a .net transaction with a SQL insert to a MS SQL 2005 DB. The table has an identity primary key.
When an error occurs within the transaction, Rollback() is called. The row inserts are rolled ...
20
votes
17answers
2k views
When is it better to write “ad hoc sql” vs stored procedures [closed]
Possible Duplicate:
Inline SQL vs Stored Procedures
I have 100% ad hoc sql through out my application. A buddy of mine recommended that I convert to stored procedures for the extra ...
20
votes
6answers
4k views
When should I open and close a connection to SQL Server
I have a simple static class with a few methods in it. Each of those methods open a SqlConnection, query the database and close the connection. This way, I am sure that I always close the connection ...
18
votes
12answers
3k views
Is there anything faster than SqlDataReader in .NET?
I need to load one column of strings from table on SqlServer into Array in memory using C#.
Is there a faster way than open SqlDataReader and loop through it.
Table is large and time is critical.
...
18
votes
6answers
1k views
Am I missing something about LINQ?
I seem to be missing something about LINQ. To me, it looks like it's taking some of the elements of SQL that I like the least and moving them into the C# language and using them for other things.
I ...
17
votes
5answers
786 views
What deficiencies, limitations or flaws do you feel exist with SQL and what would you change or add to it?
Have you encountered deficiencies, limitations or flaws while using SQL?
EDIT: I cannot believe that several things which are so trivial to accomplish under 3GL's like BASIC or other non-SQL data ...
16
votes
2answers
228 views
SQL based storage vs SVN
My team is developing a new application (C#, .Net 4) that involves a repository for shared users content. We need to decide where to store it. The requirements are as follows:
Share files among ...
16
votes
3answers
17k views
Passing multiple parameters to controller in ASP.NET MVC; also, generating on-the-fly queries in LINQ-to-SQL
I'm working on a basic Issue Management System in order to learn ASP.NET MVC. I've gotten it up and running to a fairly decent level but I've run into a problem.
I have a controller named Issue with ...
16
votes
4answers
8k views
Use linq to generate direct update without select
G'day everyone.
I'm still learning LINQ so forgive me if this is naive. When you're dealing with SQL directly, you can generate update commands with conditionals, without running a select statement.
...
16
votes
6answers
12k views
Why is a SQL float different from a C# float
Howdy, I have a DataRow pulled out of a DataTable from a DataSet. I am accessing a column that is defined in SQL as a float datatype. I am trying to assign that value to a local variable (c# float ...
15
votes
4answers
267 views
Does using parameterized SqlCommand make my program immune to SQL injection?
I'm aware that SQL injection is rather dangerous. Now in my C# code I compose parameterized queries with SqlCommand class:
SqlCommand command = ...;
command.CommandText = "SELECT * FROM Jobs WHERE ...
15
votes
5answers
6k views
SQLDataReader dispose?
I'm working with legacy code here and there are many instances of SQLDataReader that are never closed or disposed. The connection is closed but, I am not sure if it is necessary to manage the reader ...
15
votes
6answers
15k views
Check if a SQL table exists
What's the best way to check if a table exists in a Sql database in a database independant way?
I came up with:
bool exists;
const string sqlStatement = @"SELECT COUNT(*) FROM my_table";
...
15
votes
1answer
25k views
Join and Include in Entity Framework
I have the following query in linq to entities. The problem is that i doesn't seems to load the "Tags" relation even thou i have a include thingy for it. It works fine if i do not join on tags but i ...
15
votes
10answers
2k views
How do you deal with transport-level errors in SqlConnection?
Every now and then in a high volume .NET application, you might see this exception when you try to execute a query:
System.Data.SqlClient.SqlException:
A transport-level error has occurred when ...
15
votes
1answer
3k views
Calling Table-Valued SQL Functions From .NET
Scalar-valued functions can be called from .NET as follows:
SqlCommand cmd = new SqlCommand("testFunction", sqlConn); //testFunction is scalar
cmd.CommandType = CommandType.StoredProcedure;
...
14
votes
2answers
583 views
What are some “mental steps” a developer must take to begin moving from SQL to NO-SQL (CouchDB, FathomDB, MongoDB, etc)?
I have my mind firmly wrapped around relational databases and how to code efficiently against them. Most of my experience is with MySQL and SQL. I like many of the things I'm hearing about ...
14
votes
2answers
2k views
14
votes
4answers
25k views
Equivalent of SQL ISNULL in LINQ?
In SQL you can run a ISNULL(null,'') how would you do this in a linq query?
I have a join in this query:
var hht = from x in db.HandheldAssets
join a in db.HandheldDevInfos on x.AssetID ...
13
votes
5answers
329 views
The riddle of the working broken query
I was going through some old code that was written in years past by another developer at my organization. Whilst trying to improve this code, I discovered that the query it uses had a very bad ...
13
votes
1answer
2k views
Get an IDataReader from a typed List
I have a List<MyObject> with a million elements. (It is actually a SubSonic Collection but it is not loaded from the database).
I'm currently using SqlBulkCopy as follows:
private string ...
13
votes
6answers
2k views
C#/SQL Database listener help needed
I have a requirement to monitor the Database rows continuously to check for the Changes(updates). If there are some changes or updates from the other sources the Event should be fired on my ...
13
votes
7answers
10k views
SQL injection on INSERT
I have created a small survey web page on our company Intranet. This web page is not accessible from the outside.
The form is simply a couple of radio buttons and a comments box.
I would like to ...
13
votes
3answers
3k views
Which is the “best” data access framework/approach for C# and .NET?
(EDIT: I made it a community wiki as it is more suited to a collaborative format.)
There are a plethora of ways to access SQL Server and other databases from .NET. All have their pros and cons and it ...
13
votes
8answers
7k views
Passing List<> to SQL Stored Procedure
I've often had to load multiple items to a particular record in the database. For example: a web page displays items to include for a single report, all of which are records in the database (Report is ...
13
votes
13answers
3k views
C#: What Else Do You Use Besides DataSet
I've found myself increasingly unsatisfied with the DataSet/DataTable/DataRow paradigm in .Net, mostly because it's often a couple of steps more complicated than what I really want to do. In cases ...
12
votes
3answers
330 views
How to force LINQ to SQL to evaluate the whole query in the database?
I have a query which is fully translatable to SQL. For unknown reasons LINQ decides the last Select() to execute in .NET (not in the database), which causes to run a lot of additional SQL queries (per ...
12
votes
7answers
833 views
What is passing parameters to SQL and why do I need it?
Beginner here:
In this answer to my question of how to insert data into SQL Server he mentioned passing parameters instead of string concatenation like I currently have.
Is this really necessary ...
12
votes
8answers
1k views
How do you break circular associations between entities?
my first time on the site so apologies if it's tagged incorrectly or been answered elsewhere...
I keep running into particular situation on my current project and I was wondering how you guys would ...
12
votes
7answers
22k views
Online validators, syntax checkers, testing tools
I often need to verify some simple code before posting, and it's great if I have installed IDE, but what if not? It would be nice to have online free tools for SQL, VB.NET, C# code validation, or ...
12
votes
3answers
1k views
How to deal with time storage in SQL
I have a web application that I'm writing (C#, MSSQL) and I need to store the timestamp when a record is stored in the system. Normally, I would just do this with SQL and the DATETIME function. ...
11
votes
4answers
3k views
How to get last inserted id?
I have this code:
string insertSql =
"INSERT INTO aspnet_GameProfiles(UserId,GameId) VALUES(@UserId, @GameId)";
using (SqlConnection myConnection = new SqlConnection(myConnectionString))
{
...
11
votes
2answers
169 views
Keeping Track of User Points (Like SO)
I want to be able to keep track of user points earned on my website. It isn't really like SO but the point system is similar in that I want each user to have a total and then I want to keep track of ...
11
votes
5answers
12k views
C# guid and SQL uniqueidentifier
I want to create a GUID and store it in the DB.
In C# a guid can be created using Guid.NewGuid(). This creates a 128 bit integer. SQL Server has a uniqueidentifier column which holds a huge ...
10
votes
3answers
344 views
Why the Left Outer join?
weird one. (Probably not weird, at all)
I have 3 objects, Employee, Rota and Department.
public class Employee
{
public int Id { get; set; }
public String Name { get; set; }
public ...
10
votes
2answers
129 views
Is assembly running in SQL Server or from a Windows app
How can I determine if an assembly is running from a SQL Server CLR stored procedure or if it is running from a Windows app?
10
votes
9answers
837 views
Is there a C# IN operator?
In SQL, you can use the following syntax:
SELECT *
FROM MY_TABLE
WHERE VALUE_1 IN (1, 2, 3)
Is there an equivalent in C#? The IDE seems to recognise "in" as a keyword, but I don't seem to be able ...
10
votes
11answers
8k views
SQL: Return “true” if list of records exists?
An alternative title might be:
Check for existence of multiple rows?
Using a combination of SQL and C# I want a method to return true if all products in a list exist in a table. If it can be done ...
10
votes
7answers
290 views
What goes into rolling your own wiki using c# and sql?
I'd like to understand how a wiki works, at least from a high level. When a user saves changes, does it always insert a new row in the database for that wiki article (10 revisions, 10 rows in the ...
10
votes
3answers
775 views
Can someone explain why these two linq queries return different results?
I have two linq (to EF4) queries, which return different results. The first query contains the correct results, but is not formatted/projected right.
the second query is what i want but it missing ...
10
votes
11answers
812 views
SQL Server for C# Programmers
I'm a pretty good C# programmer who needs to learn SQL Server. What's the best way for me to learn SQL Server/Database development?
Note: I'm a total newb when it comes to DB's and SQL.
10
votes
5answers
3k views
What is the best way to store a money value in the database?
I need to store a couple of money related fields in the database but I'm not sure which data type to use between money and decimal.