Search Results

1
vote

In MS SQL Server, is there a way to “atomically” increment a column being used as a counter?

Read Committed Snapshot only deals with locks on selecting data from tables. In t1 and t2 however, you're UPDATEing the data, which is a different scenario. When you UPDATE the coun …
3
votes

How do I ensure Linq to Sql doesn’t override or violate non-nullable DB default values?

Linq-To-Sql generated classes do not pick up the Default Value Constriants. Maybe in the future, but the issue is constraints aren't always simple values, they can also be scalar functions …
1
vote

Which is fastest? Data retrieval…

the problem I have here is that I need it all, i just need it displayed seperatly... The answer to your question is 1 query for 3000 rows is better than 6 queri …
2
votes

query: cross product instead of join

FYI: If you rewrite your names to be consistent, things get a lot easier to read. Table 1: Book BookID ShelfID BookName 1 1 book1 2 2 book2 3 …
5
votes

ASP.NET - Storing SQL Queries in Global Resource File?

Resource files are usually used for localization. But a string is just a string is just a string, and do you really want to be sending any old string in a resource file to your database? I …
39
votes

What is the reason not to use select * ?

The essence of the quote of not prematurely optimizing is to go for simple and straightforward code and then use a profiler to point out the hot spots, which you can then optimize …
6
votes

Should I use one LINQ DataContext or many?

I'm assuming you're asking about design versus runtime pattern. I general I'd say no: While it may be possible to partition your database into multiple data contexts, then that wou …
9
votes

Can someone copyright a SQL query?

Nobody seems to have picked up the fact that Copyright deals with copying. If the OP is neither copying nor distributing, Copyright really doesn't appear to apply in this instance. i.e. th …