Viewing 8 posts - 31 through 38 (of 38 total)
I just noticed it was published by Sybex, which is pretty well known so I suppose that speaks for itself, but any input would be appreciated. Thanks!
June 4, 2010 at 8:46 am
I was looking at picking up this book as a study aid for the MCITP: DBA 2005 to DBA 2008 upgrade. Anyone have any experience with it or the...
June 4, 2010 at 8:43 am
GilaMonster (5/19/2010)
r.rozeboom (5/19/2010)
Iam MCTS sql2005. and want to upgrade towards MCITP2008.
There's no upgrade path from MCTS 2005 to MCITP 2008. The upgrade that's available is from MCITP 2005 (either dev...
May 29, 2010 at 10:03 am
Alright... I functionified this:
CREATE FUNCTION [dbo].[ConvertUnixDate]
(
@TimeValue int
)
RETURNS datetime
AS
BEGIN
DECLARE @DateTime datetime
DECLARE @GMTOffsetInSeconds int
DECLARE @isDateDST bit
DECLARE @isCurrDateDST bit
SET @GMTOffsetInSeconds...
March 2, 2010 at 1:05 pm
Ignore code in prior post... here's snippet I've been working with to test conversion:
select datediff(ss,'01/01/1970','03/16/2010')+18000
--***********************************************--
declare @unixdate int
--set @unixdate = 1268544600 --Mar 14, 2010 1:30am
--set @unixdate = 1268548200 --Mar 14, 2010...
March 2, 2010 at 9:36 am
Sorry for the necropost, but this is the closest topic to an issue I'm having that I could find.
dateadd(s,@UnixDate,'01/01/1970') works to convert a Unix date to a Julian date, however,...
March 2, 2010 at 9:04 am
Mark-101232 (1/5/2010)
SELECT KEY1,KEY2,OTHERCOL1,OTHERCOL2,OTHERCOL3 FROM TABLE1
WHERE NOT EXISTS (SELECT * FROM TABLE2 WHERE TABLE2.KEY1=TABLE1.KEY1 AND TABLE2.KEY2=TABLE1.KEY1)
Still have table scans on TABLE1 and TABLE2. Processing time unchanged.
January 5, 2010 at 8:01 am
Lynn Pettis (1/5/2010)
lbrigham (1/5/2010)
I'm looking for a better way of doing the below as what I'm doing now results in a table scan and I know...
January 5, 2010 at 8:00 am
Viewing 8 posts - 31 through 38 (of 38 total)