Viewing 15 posts - 16 through 30 (of 112 total)
Good question. I missed the char(10) limitation. I did not know that COALESCE does not limit output size while ISNULL does.
coalesce(convert(char(10),@MyDate,101),'Date is Null') = not limited to 10...
November 9, 2009 at 8:49 am
I think this is a solid question that does not try to trick anyone but shows a simple example of a inequality comparison that would have been easier to read...
September 16, 2009 at 8:53 am
Searching this site for SQL 2005 Security; Brian Kelley and others have written several really good articles and forum responses.
Some other areas for information include:
MS SQL Server 2005 Best Practice...
August 27, 2009 at 8:07 am
DBCC INDEXDEFRAG is an online process for SQL Server 2000, although it does not actually rebuild the indexes. Instead it tries to defrag the leaf level of the indexes...
August 24, 2009 at 10:05 am
The SQL 2000 optimization maintenance plan executes DBCC DBREINDEX which will rebuild the index and cause table locks. Use DBCC INDEXDEFRAG instead. BOL can give you the pro's...
August 21, 2009 at 12:42 pm
Thanks for the validation. I'm planning on going down the Express or Workgroup path if more resources are needed.
- David
August 21, 2009 at 12:25 pm
The idea of automatically documenting a database is a fantastic idea, especially when you store information in the extended properties. Unfortunately SQL Doc is not very flexible and the last...
August 17, 2009 at 9:14 am
The script actually returns the amount of time since the database was created. Since the tempdb is created every time SQL Server is started, this gives you the up-time...
July 15, 2009 at 4:35 pm
Well written article and new way of working with Configuration tables. I like the trigger used to track changes in the configuration table. To me, though, the data...
June 3, 2009 at 9:11 am
I was not 100% sure of my answer, but I picked the one that was not capitalized likt the others. And I have never seen a data type with...
February 5, 2009 at 8:36 am
Very good article... no doubt your co-worker owes you some extra beer money 🙂
Not picking on your scripts, rather this is something I've been wondering. What is the advantage...
January 21, 2009 at 10:00 am
Viewing 15 posts - 16 through 30 (of 112 total)