Viewing 15 posts - 16 through 30 (of 58 total)
Slight nit-picking issue: what is a "courser" lock? Do you mean a coarser lock?
March 19, 2012 at 7:29 am
You could also use single-user mode from the command-line, even if BUILTIN\Administrators is not in the sysadmin role:
March 7, 2012 at 6:27 am
One small issue - there is no "C#.NET"; it's just called "C#".
VB gained the ".NET" suffix to differentiate it from the pre-.NET versions, but C# was created at the same...
December 14, 2011 at 9:29 am
So a man who runs a company which sells a competitor to "oldSQL" products has given an interview saying the "oldSQL" is bad, and his "newSQL" competitor is doubleplusgood?
OK, I'll...
July 26, 2011 at 5:19 am
Some suggestions: 🙂
[font="Courier New"]if (URI.IsNull == true)[/font]
The IsNull property is a boolean, so this should be: "if (URI.IsNull)".
[font="Courier New"]URI.ToString().TrimStart().TrimEnd().Length < 1[/font]
Or, as it's known in .NET, ".ToString().Trim().Length == 0". You've...
July 21, 2011 at 10:39 am
Nice article.
It makes me wonder why 64-bit SQL can't use 32-bit providers (eg Jet), since the bit-ness of out-of-process COM components doesn't matter. They'd only need a 32-bit host...
June 9, 2011 at 5:58 am
... a hardware shop keeper & customer ...
Am I the only one who was expecting a request for "four candles"? 😛
May 17, 2011 at 5:48 am
Eric M Russell (3/17/2011)
If an application must use VarDate columns, then they should at least code it using ISO standard format YYYYMMDD...
But if you're going to do that, wouldn't it...
March 18, 2011 at 12:43 pm
Nakul Vachhrajani (3/16/2011)
I have seen people using VARCHAR for storing everything (dates, money, floats)! Their excuse? Globalization/Internationalization.
How can anyone claim that storing a date as the string "09/01/2001" is better...
March 17, 2011 at 8:04 am
Sorry to resurrect an old thread, but it looks like I was right all along: 🙁
Red Gate will be charging $35 for .NET Reflector
February 2, 2011 at 9:45 am
Nice easy question? Unless I'm missing something, the CREATE TABLE, the first INSERT, the BEGIN TRAN and the ALTER TABLE statements are all inside a stored procedure which is not...
November 24, 2010 at 6:08 am
"... no computers ..."
Charles might disagree with that statement! 😛
October 29, 2010 at 5:42 am
David Ziffer (10/13/2010)
October 13, 2010 at 8:20 am
You also have to bear in mind that it's not simply a choice between paying for an upgrade or paying to develop a workaround - it's a choice between paying...
June 3, 2010 at 5:48 am
Great article - I could have done with reading this last night!
One small suggestion - you can sometimes work around the 8921 Check Terminated message by specifying the WITH TABLOCK...
April 23, 2010 at 5:31 am
Viewing 15 posts - 16 through 30 (of 58 total)