Search Results

3
votes

SQL Express 2005/2008 Concurrent Connections

The express editions of SQL Server don't cap the number of concurrent connections - they exert limitations in other ways - such as the maximum size of the database (4GB), CPU sockets (1) and amount …
-1
votes

Doesn’t Linq to SQL miss the point? Aren’t ORM-mappers (SubSonic, etc.) sub-optimal solutions?

Most people have missed an essential point: in most cases, you are significantly more productive when querying in LINQ than in SQL. I've …
0
votes

linq match word with boundaries

For efficiency, you want to do as much of the filtering as possible on the server, and then the rest of the filtering on the client. You can't use Regex on the server (SQL Server doesn't support it …
0
votes

What’s the difference between just using multiple froms and joins?

Join syntax allows for outer joins, so you can go: SELECT bugs.id, bug_color.name FROM bugs, bug_color LEFT OUTER JOIN bug_color ON bugs.id = bug_color.id WHERE bugs.id = 1 …
1
vote

whats the difference between a stored procedure and a table valued function?

Table-valued functions can return only a single result set; SPs can return multiple result sets. You can subsequently query over the results of table-valued functions - but not with SPs. …
7
votes

Does SqlDataReader store everything as a String?

SqlDataReader returns data as strongly-typed objects - just call the right method, e.g.: data.GetDateTime(ordinal) …