Does anyone know where I can find a library of common but difficult (out of the ordinary) SQL script examples. I am talking about those examples you cannot find in the documentation but do need very often to accomplish tasks such as finding duplicates etc.

It would be a big time saver to have something like that handy.

EDIT: Thanks everyone, I think this is turning into a great quick reference. The more descriptive the more effective it would be, so please if you see your way open - please edit and add some descriptions of what one could find. Many thanks to those that have already done so!

link|improve this question
feedback

closed as not constructive by Kev Jan 12 at 13:38

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

12 Answers

up vote 39 down vote accepted

You may find this wiki on LessThanDot useful, for the most part, it is by Denis Gobo, Microsoft SQL MVP.

EDIT: The wiki includes 100+ SQL Server Programming Hacks, the list is, I think, too long to include here, however, there is a comprehensive index.

Also available from the same site: SQL Server Admin Hacks.

link|improve this answer
1  
Thank you for sharing this. – Saif Khan Oct 13 '08 at 17:21
1  
I wish it had all those scripts for the other major SQL platforms – Joe Philllips Mar 28 '09 at 0:28
feedback

Here are a few that I find very useful:

link|improve this answer
feedback

Some Administration stuff

Glenn Berry: Five Very Useful Index Selection Queries for SQL Server 2005

  • Find "Missing" Indexes for the entire instance of SQL Server
  • Find "Missing" Indexes for a single table
  • Examine the current index structure for a single table
  • Look at index usage for a single table
  • Look for possible bad indexes inside the entire current database
  • Drill into your workload (Bonus)

SQL Server Central: Seven Monitoring Scripts

  • Failed jobs report
  • Free space by drive
  • Disabled jobs
  • Running jobs
  • Server role members
  • Last backup date
  • SQL Log

And last, but not least this resource: SQL Server Programming Hacks - 100+ List

link|improve this answer
feedback

Sql Cookbook has a variety of interesting example, though some will undoubtedly be unsupported by your RDBMS of choice. O'Reilly also has a T-SQL Cookbook, but I've never personally read it.

link|improve this answer
feedback

Forgive me for the self-advertising, but I have posted a few on my blog (http://progblog.wordpress.com) because I'm rubbish at SQL and it's a good place to store things I know I'll need in the future :-) If anyone has anything more substantial then please post, I'm as keen as anyone to get hold of something like this!

I would guess that a copy of the "SQL Cookbook" would help too.

link|improve this answer
All contributions are welcome. – private Nov 3 '08 at 13:41
feedback

I've had some use of these SQL "hacks" for Oracle a couple of times.

Concatenate as grouping function

In query data generation for joining purposes

link|improve this answer
feedback

Here is another link for SQL Server: best practices - dozens of script examples

http://www.sqlusa.com/bestpractices2005/

link|improve this answer
feedback

Riffing off the Celko answer: SQL For Smarties. This has great in depth chapters that will augment the SQL Puzzles book. Also there is another Celko book I just learned of named Joe Celko's Trees and Hierarchies in SQL for Smarties.

link|improve this answer
feedback

See this link for the Fastest "Get Duplicates" script.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.