Viewing 15 posts - 301 through 315 (of 458 total)
Thanks for those links.
I've had a bookmark for some time to Ben-Gan's original write-up, which you might want to add to your list of median computation web pages:
http://www.sqlmag.com/article/tsql3/calculating-the-median-gets-simpler-in-sql-server-2005
That article explains...
May 11, 2011 at 6:59 am
If you define a column as a VARCHAR type without specifying the length, it defaults to a length of 1.
BOL: http://msdn.microsoft.com/en-us/library/ms176089.aspx
Rich
May 10, 2011 at 6:16 am
sqldba_icon (5/9/2011)
rmechaber (5/6/2011)
May 9, 2011 at 8:57 am
Have you worked with SSIS before? You can execute as many tasks in parallel as you like in SSIS, which is one of the very nice things about it....
May 6, 2011 at 4:38 pm
Elliott Whitlow (4/29/2011)
http://nclsqlclrfile.codeplex.com/[/url]
Let me know what you think, what is wrong with...
May 6, 2011 at 8:27 am
Wow, what a difference 2 years makes:
Jeff Moden, February 2009, http://www.sqlservercentral.com/Forums/FindPost652105.aspx:
With the exception of RegEx, damned near all CLR's are simply not the right way to do it.
Jeff Moden,...
May 6, 2011 at 7:55 am
Jeff Moden (5/2/2011)
I kind of blew it on the CLR function. I asked someone to write it for me and then he came down with a really nasty flu...
May 2, 2011 at 7:54 am
Jeff, your exposition of how you mentally wrestle with a problem was exceptional. That alone made your article worth reading! You've got a rare combination of technical skill,...
May 2, 2011 at 6:49 am
Odd, I have no entries in SSMS Tools, Options, Text Editor, File Extension and .sql files open fine....
XP SP 3 on the workstation, with SQL 2005 Enterprise server.
Rich
April 27, 2011 at 11:39 am
This will find all log entries from April 20, 2011, which I think is what you're trying to do here?
SELECT FirstName, LastName, LogDate
FROM Employee
WHERE LogDate >= '2011-04-20' AND LogDate <...
April 26, 2011 at 2:03 pm
This is an annoying problem. I've simply given up, dealing with the issue this way:
- For every Excel file I will need to repeatedly generate, I...
April 26, 2011 at 12:58 pm
If your app. uses IE, might it be possible to use Kerberos to pass user credentials along from the workstation to your application?
Just a thought...
Rich
April 26, 2011 at 12:31 pm
Funny, I just read that whitepaper, researching the same issue for PDF storage.
I ultimately decided on file storage, not DB, for a reason that has nothing to do with speed...
April 26, 2011 at 12:27 pm
To add to the points raised above, I would add that you would need to start an explicit transaction to wrap the INSERT and UPDATE. Otherwise, if the INSERT...
April 21, 2011 at 6:13 am
Steve, this is a fantastic opportunity, thank you!
Rich
April 20, 2011 at 6:23 am
Viewing 15 posts - 301 through 315 (of 458 total)