Viewing 15 posts - 16 through 30 (of 40 total)
Solomon Rutzky (2/9/2012)
February 9, 2012 at 12:47 pm
jeff.mason (4/8/2011)
April 8, 2011 at 7:47 am
Steve Jones - SSC Editor (1/31/2011)
Sorry, a scheduling glitch in the Matrix. If you see a black cat, run.
Ok I'll take my point and run. 😀
January 31, 2011 at 7:53 am
ben.mcintyre (12/17/2010)
Now if only I could get SQL2005 to run with the old tools ....Ben
Query Analyzer still works. In fact, I use to all the time to develop TSQL...
December 17, 2010 at 9:02 am
Jedak (11/29/2010)
Jeff Moden (11/25/2010)
This will do it...
DECLARE @Ticks BIGINT
SELECT @Ticks = 634262130000000000
SELECT Converted = CAST(@Ticks/864000000000.0 - 693595.0 AS DATETIME)
Thank you. Would you mind explaining what the magic...
November 29, 2010 at 8:42 am
Ninja's_RGR'us (11/25/2010)
How the heck did so many people could possibly imagine that Misspelling is an issue in a SPOKEN podcast :w00t:.
Because, the category is humor. All the other answers...
November 29, 2010 at 8:10 am
Jeff Moden (11/25/2010)
This will do it...
DECLARE @Ticks BIGINT
SELECT @Ticks = 634262130000000000
SELECT Converted = CAST(@Ticks/864000000000.0 - 693595.0 AS DATETIME)
Thank you. Would you mind explaining what the magic numbers...
November 29, 2010 at 7:54 am
Toreador (5/13/2010)
So how would you get the identity values of the rows you'd...
May 13, 2010 at 7:47 am
If you are loading the date value into a datetime variable or a datetime column you only need to do the DATEDIFF.
DECLARE @dtDate datetime
SET @dtDate = datediff(d,0,getdate())
PRINT @dtDate
If you want...
April 7, 2010 at 7:40 am
Interesting article. I know I'm always searching google for technical information.
For those concerned with the AWE settings the following are some information concerning the memory settings on SQL Server.
http://www.sqlservercentral.com/articles/Lock+Pages+in+Memory/67975/[/url]
March 26, 2010 at 8:07 am
That was great :-D. I always look forward to seeing Raw Materials in the newletter. Wonderful job.
March 24, 2010 at 7:31 am
mbarrington (1/25/2010)
http://www.joelonsoftware.com/articles/Wrong.html
If...
January 25, 2010 at 8:54 am
vk-kirov (1/18/2010)
Jedak (1/14/2010)
if you used the .NET SQLClient as the driver the parameters would probably need to use the @ sign as that is how that provider works?
MSDN says...
January 18, 2010 at 8:11 am
Interesting question. However, I'm wondering, wouldn't this be a function of the provider chosen when setting up the linked server rather than EXEC() itself?
For example if you used the...
January 14, 2010 at 7:50 am
CirquedeSQLeil (12/22/2009)
GSquared (12/22/2009)
Jedak (12/22/2009)
Toreador (12/22/2009)
It might be easy if you're American....
December 22, 2009 at 10:32 am
Viewing 15 posts - 16 through 30 (of 40 total)