Viewing 15 posts - 1 through 15 (of 16 total)
haha - never mind then, we'll leave it there 😉
I've already changed my code and there are no errors in my job either, but thanks for yours as
well.
March 17, 2010 at 3:22 pm
Righto Lynne, thats not the point I was making though - any comments on the SQL agent information?
March 16, 2010 at 4:08 pm
Thanks for the input!
There wasn't actually anything wrong with the stored procedure, except when I called it from SQL agent...
Interestingly its not a well known fact but there were only...
March 16, 2010 at 3:21 pm
Upgrade to W2k8, it sorts the alignment within the 0S...apparently ;-0
March 2, 2010 at 10:10 am
Upgrade to W2k8, it sorts the alignment within the 0S ;-0
March 2, 2010 at 10:02 am
Let me guess, the SAN admins also said to not worry about RAID 1, RAID 5, RAID 10 etc - since its a high speed SAN it does not matter?
Don't...
March 2, 2010 at 8:05 am
Thanks very much, its actually working out easier this way since the composite clustered index was designed for the selectivity of the queries against it in the first place
so makes...
March 2, 2010 at 4:07 am
I have 250 million row table that I wish to partition 10-15 ways in SQL2K8, single filegroup if possible.
Problem am facing is that I have a unique composite clustered index...
January 28, 2010 at 4:38 am
Same this side, can connect from SSMS on desktop but not on server logged on as service account.
Any results?
December 22, 2009 at 6:41 am
Yes the row counts and execution plans are the same - dev is refreshed overnight, agreed on the report time - it has to get faster quickly.
Agree with most if...
October 13, 2009 at 7:04 am
Certainly an option to consider - however prior to then am toying with the idea of stored the calcs as persisted in temp/permanent tables...indexed where possible.
problem I'm having is the...
October 12, 2009 at 10:05 am
Jeff, thats exactly it however the execution plan pretty much the same in the dev environment and it runs in 50mins which has been difficult to explain to be honest...
obviously...
October 9, 2009 at 2:22 am
Very relevant questions, unfortunately I've only just started so can't comment on row counts, changes in workload etc.
It was exactly the question I asked though and I've been told the...
October 7, 2009 at 2:00 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create function [dbo].[GMT.Calendar.IsPeak]
(
@date datetime -- This date should always be in country's local datetime
,@countryId int
)
returns bit
as
begin
declare @Result as bit
set@Result = 0
if (@countryId in (0, 230))
begin
if (datepart(hh,...
October 6, 2009 at 10:12 am
Apologies Gail, I've only just read the article...busy day.
You'll notice a distinct lack of indexes on the inserted table ( amongst others)...have experimented on dev and this has had no...
October 6, 2009 at 10:09 am
Viewing 15 posts - 1 through 15 (of 16 total)