3
votes
7answers
577 views
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio
Update: Problem solved, and staying solved. If you want to see the site in action, visit Tweet08
I've got sever …
13
votes
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
Given your specification that you are selecting all columns, there is little difference at this time. Realize, however, that database schemas do …
0
votes
Optimized Table structure for Tags table.
You should be mapping the TagText to TagId in code (and mapping to an in-memory cache anyway) and passing the pre-mapped TagId into your query.
Also t …
0
votes
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio
Checked and this server, a development server, was not running SQL Server 2005 SP3. Tried to install that (with necessary reboot), but it didn't install. Oddly now both code and SSMS return in subs …
1
vote
SQL to determine minimum sequential days of access?
Joe Celko has a complete chapter on this in SQL for Smarties (calling it Runs and Sequences). I don't have that book at home, so when I get to work... I'll actually answer this. (assuming history t …
0
votes
Stored Procedure returning an int
The first SELECT in your SPROC is yielding an INT into the temporary variable
SELECT @CONTRACT = CONTRACT FROM [tbl_property] WHERE [PROPREF] = @PROPREF
which is …
0
votes
How to set a default value for one column in SQL based on another column
So, for example, in a TAG table (where tags are applied to posts) if you want to count one tag as another...but default to counting new tags as themselves, you would have a trigger like this:
…
