Viewing 9 posts - 1 through 9 (of 9 total)
wow. that's a long time.
The table is about 50M rows. we're running DL385 with 16GB ram.
July 31, 2007 at 8:48 am
I knew I can do that. I was wondering if there is a way to do this differently, perheps using alter index.
July 31, 2007 at 8:11 am
I have the same problem. The files just stay there.
I intalled SP1 today hoping it would resolve the problem, but it does not.
The logs say the plan ran successfully, but...
May 1, 2006 at 6:37 pm
Thanks guys for quick response.
If (Update) will work great for me.
May 1, 2006 at 9:01 am
You can use dateadd/datepart to calculate # of seconds in a day and add that to 0 date.
The below example would return: 1900-01-01 18:01:06.000
declare @x dateTime
set @x = '2006-4-13 18:01:06'
select...
April 13, 2006 at 12:10 pm
The stored procedure inserts into multiple tables. One of the tables needs only the date as it checks if a record with that date exists (and other fields) and updates if...
April 13, 2006 at 9:45 am
I would think this would be slower than DateAdd solution as this converts to varchar and back.
April 12, 2006 at 6:12 pm
I found a solution on google:
SELECT DATEADD(dd, DATEDIFF(dd,0,@x), 0)
but that seems odd to do datediff and dateadd to get the result.
I wish there was a built in function for that.
April 12, 2006 at 5:16 pm
thanks, I know that now.
At one point few months back, the automatic backup failed for few days and the file grew quite a bit and I couldn't find a way...
February 20, 2006 at 1:49 pm
Viewing 9 posts - 1 through 9 (of 9 total)