So the government has signed into law a new bill to give "mortgage relief" to people who got into trouble with their loan. That sounds nice doesn't it?
I get really frustrated with Moodle for using int fields to store dates. They store it in the Unix (Epoch) format. Here's how to make it more readable.
A review of the book James Madison And The Struggle For The Bill Of Rights by Richard Labunski read by Richard Poe. Published 2006.
Looking for a needle in a haystack and finding a farmer's daughter.
Search across the text of all stored procedures for a particular string.
How to call the constructor of a parent class in the child.
When you are returning longer text, like from a varchar(MAX) or such you get weird characters at the end.
This article gives instructions on what to look for and how to determine which pages are vulnerable
Some quick notes on handling checkboxes (and probably radio buttons, but I haven't tested that).
Search and replace all occurances of a string in all tables in a database. From http://vyaskn.tripod.com/ --To replace all occurences of 'America' with 'USA': EXEC SearchAndReplace 'America', 'USA' GO