-
Recent Posts
Recent Comments
Archives
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- October 2010
- June 2010
- May 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
Categories
- .Net
- ActiveSync
- Art
- ASP.Net
- Attitude
- BBC Micro
- Best Practice
- Blogging
- Body
- Book Reviews
- Books
- C#
- Clutter
- Complaints
- Computing
- Covey
- Customer Service
- Definitions
- Design
- Design Patterns
- Discrimination
- Excellence
- Faith
- Family Life
- Fear
- Fitness
- Goals
- Graphics
- Group activities
- Health
- Humour
- Identity
- Internet Explorer
- Investment
- IT
- J2ME
- JB
- Leadership
- Legacy
- Leisure
- Life
- Link
- Memory
- Microsoft Word
- Mind
- Money
- Motivation
- Moving House
- MS Word
- Name
- Operating Systems
- Orange
- Orange M3100
- Otto Project
- Painting
- Personal Development
- Personal Finance
- Phone
- Poetry
- Poor Customer Service
- Poverty
- prayer
- Product Ideas
- Productivity
- Progamming
- Programming
- Purpose
- Quote
- Quotes
- Recruitment
- Relationships
- Religion
- Reputation
- Retro Computing
- Review
- Running
- Sexism
- Spell Checker
- Spirit
- SQL Server
- Stewardship
- Stuff
- Teaching
- Technology
- Temptation
- Thinking
- Time
- Time Management
- Uncategorized
- Utils
- Values
- VB.Net
- VBScript
- Violence
- Visual Source Safe
- Visual Studio
- Web Design
- Wisdom
- WM5
- WM6
- Words
- Work
- Working Out
- Writing
Meta
Monthly Archives: November 2009
Short Story Titles
Eight ideas for short story titles from the man behind WriteInvite: Loyalty Cards The Shopping Channel Ideal Travelling Companion Bakewell Tarts Vitamin Pills JB’s Nappies Cardigans Crocodile Tears
Posted in Writing
Leave a comment
Some Basic Interview Advice
Notes from a recent training session (rather a basic one - but fundamentals are easily forgotten in stressful situations) : Advance Preparation Keep a copy of the job advert and specification. Keep a copy of your application form / CV Research … Continue reading
Posted in Uncategorized
Leave a comment
The Fold
There has been a long running debate amongst web designers as to whether or nor “the fold” matters, or even exists. Here are my thoughts: Of *course* users know how to scroll. Just like they know how to unfold physical … Continue reading
Posted in Web Design
Leave a comment
SQL Server: Show all the FOREIGN KEYS that reference a TABLE
For SQL 2005+ DECLARE @tableName nvarchar(MAX) SET @tableName = 'tableName' — (1) SELECT DISTINCT ccu.table_name, ccu.constraint_name FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS tc INNER JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS rc ON rc.unique_constraint_name = tc.constraint_name INNER JOIN INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE ccu ON … Continue reading
Posted in SQL Server
Leave a comment
SQL Server: Show all the PRIMARY KEYS for a TABLE
For SQL Server 2005 + DECLARE @tableName nvarchar(MAX) SET @tableName = 'tableName' — (1) SELECT tc.TABLE_NAME, tc.CONSTRAINT_NAME, kcu.COLUMN_NAME, kcu.ORDINAL_POSITION FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS tc INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE kcu ON tc.CONSTRAINT_NAME = kcu.CONSTRAINT_NAME WHERE tc.CONSTRAINT_TYPE = 'PRIMARY KEY' AND tc.TABLE_NAME = @tableName OR … Continue reading
Posted in SQL Server
Leave a comment
Grumpy = Good
Humph. Apparently, feeling grumpy is good for you. So, that’s ruined that, then.
Posted in Uncategorized
Leave a comment
Interview Feedback
Having secured my demotion I asked some of the interview pannel to provide feedback on my presentation / interview. Persentation Strategy and Style A risky strategy, but it worked – ND Liked it – ND Personally enjoyed it – MD … Continue reading
Posted in Recruitment, Work
Leave a comment