0
votes
MSSQL Weighted Full Text Search
Ranks are useless across indexes, you can't merge them and expect the result to mean anything. The rank numbers of each index are apple/orange/grape/watermelon/pair comparisions that have no re …
3
votes
What is the best way to maintain a LastUpdatedDate column in SQL?
Triggers are a blessing and a curse.
Blessing: You can use them to enable all kinds of custom constraint checking and data management without backend systems knowledge or changes.
…
2
votes
Zero SQL deadlock by design - any coding patterns?
There is no magic general purpose solution to this problem that work in practice. You can push concurrency to the application but this can be very complex especially if you need to coordinate with …
1
vote
What is your FIRST SQL command to run to troubleshoot SQL Server performance?
A custom query which combines what you would expect in sp_who with DBCC INPUTBUFFER(spid) to get the last query text on each spid ordered by the blocked/blocking graph.
Process data is aval …
7
votes
Is using MS SQL Identity good practice?
Personally I couldn't live without identity columns and use them everywhere however there are some reasons to think about not using them.
Origionally the main reason not to use identity col …
0
votes
SQL Round function not working, any ideas?
You might be having marshalling issues for the column in your environment. Might try an explicit cast CAST(ROUND(...) AS NUMERIC(18,4)) or even just try making 0 0.0. Make sure also you are bindin …
1
vote
Rewrite T-SQL from using IN to using JOIN/WHERE
SELECT m.MemberId FROM @Members m JOIN @Memberships ms ON (m.MemberId = ms.MemberId)
WHERE ms.[Year] BETWEEN 2008 AND 2009
GROUP BY m.MemberId
HAVING MAX(ms.[Year]) = 2008
…
1
vote
MySQL or SQL Server better for an Enterprise application?
MySQL and SQL Server Express are free for production use. In my view the best advice is to try them both and decide for yourself. A lot of folks can live quite happily with a lightweight RDBMS wh …
2
votes
Difference between 2 indexes with columns defined in reverse order
A multi-column index is conceptually no different than taking all the columns fields and concatinating them together -- indexing the result as a single field.
Since indexes are b-trees they …
