1
vote
My IN clause leads to a full scan of an index in T-SQL. What can I do?
An index range scan is pretty fast. There's usually a lot less data in the index than in the table and there's a much better chance that the index is already in memory.
I can't blame you f …
-1
votes
how to bind asp.net controls using a self join and items tables “hierarchically structure”?
Oracle had a CONNECT BY statement that was designed for hierarchical queries. At least as of Sql Server 2005 I don't believe there was a direct equivalent so you had to fake it with stored procedu …
1
vote
Statistical calculations in SQL Server
In more recent versions of SQL Server you can use .net objects natively. So any .net package will do. Other than that there's always external proc calls...
…
0
votes
Trim first two characters from year of GETDATE()
Isn't there a convert format that will only print the last 2 digits of the year?
…
0
votes
Using stored procedures results in update statement
Can you make the created_in_variant a computed field?
…
0
votes
Using System Tables to Count the Percent of Rows Null in Various Tables
AFAIK the only way to do it is to use dynamic sql (e.g., sp_executesql). There are index statistics but nulls aren't stored in indexes...
…
1
vote
Can you order your values differently to your columns on an insert statement?
insert into mytable(col1, col3, col2) values (:val1, :val3, :val2)
…
3
votes
Need a better way to manage database schema changes
You could store the "script number" in the database. Subsequent runs could automatically execute anything numbered higher than that (in increasing order)
…
