2
votes
Creating a custom ODBC driver
ODBC drivers are very complex - the decision to write one should not be taken lightly. Reviewing existing open source drivers are a good approach for examples but most have shortcommings you may n …
1
vote
How to Order a SQL Query with grouped rows
The easiest solution (not necessarily the best in some cases) is to use column numbers in your ordering expressions:
SELECT t2.MinOfPriority, tn.Field2, Nz([tn.Field3],999) AS Priority, …
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.
…
5
votes
Performance of SQL “EXISTS” usage variants
Definately #1. It "looks" scary but realize the optimizer will do the right thing and is expressive of intent. Also slight typo bonus should one accidently think EXISTS but type IN. #2 is acceptab …
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
Which are the SQL improvements you are waiting for?
My wish list (for SQLServer)
Ability to store/use multiple execution plans for a stored procedure concurrently and have the system automatically understand the best stored plan to use …
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 …
0
votes
When is it appropriate to use NOLOCK?
For a transactionally consistant view without read locks recommend enabling snapshot isolation in SQL Server.
This is slightly different than NOLOCK in that when you read information the re …
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
Transact-SQL shorthand join syntax?
I wouldn't use *= or =(+) syntax since they are not compatible with other RDBMS or even in the case of MSSQL Server compatible with later versions unless you enable low compatibility levels. It is …
0
votes
Update a count (field) safely in SQL
SET Count = Count + 1 is IMHO the easiest solution..
More generally the concept of being able to get data, process it and while its being processed demand there be no underlying changes be …
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
Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
It depends on context. If its very limited as you suggest simply logging some basic file transfer data processing the log once and throwing it away I would tend to be attracted to the flat file op …
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 …
