Viewing 15 posts - 2,341 through 2,355 (of 5,103 total)
Scott,
Interesting Idea!! Still I would like to see 'sample numbers'. It is nice to know that there is a choice ![]()
Hope that it flourish!!
April 17, 2006 at 4:08 pm
Don't like the idea for several reasons.
Constraints (all kinds) are lost, indexes (all kinds) are lost and the network will be really taxed if the DB grows at "decent" sizes. By...
April 17, 2006 at 3:25 pm
CREATE proc ben_sp_bringBackConsultantNull
@daterequired datetime,
@consultancytypeid numeric(9),
@level tinyint,
@clientid numeric(9)
as
SELECT top 10 (left(Thedate,11) + ' - ' + consultantname ) as 'Consultant Name', Thedate 'Date'
FROM WeekEndsAndHolidays, vw_consultant_ability
WHERE dayname <> 'Saturday'
AND dayname <>...
April 17, 2006 at 3:00 pm
I N V E N T O R. Hands down!!
I am graduated from EE and Automation and Control systems. I would have love to invent many of the cool things I...
April 14, 2006 at 8:43 am
Actually I am on the same boat as Jamie. I don't receive the emails a regularly as I used to!!
Cheers,
April 14, 2006 at 8:24 am
select datediff( hour, '1899-12-30 20:00:00.000','2006-04-05 20:14:19.000')
Returns: 931488
The number of hours between the two dates. That, is why the query you posted returns 0 records when you used datediff(hour, tz.stop1, h.calldatetime)...
April 7, 2006 at 6:21 pm
Howard,
Sorry I couldn't get back to you sooner.
try:
select
sum( case when Control_code ='B' and NextControl_Code <> 'E' then 1 else 0 end) as BwithNoFollowingE
, sum( case when (Control_Code=...
April 7, 2006 at 6:00 pm
Rob,
All I have to say is that I haven't laught this much in a loooooong time ![]()
![]()
April 7, 2006 at 9:07 am
if we are talking about 5 - 7 millions I still think that the calculated column (with an index) will be a lot faster for two reasons.
1.The value is an...
April 7, 2006 at 8:41 am
April 6, 2006 at 6:56 pm
Sorry but this was the post:
LEN(RTRIM(LTRIM(ERR))) > 0
is equal to
LEN(ERR) > 0
and that is not correct. Len ignores trailing spaces but not the begining ones.
select Len ( ' Space...
April 6, 2006 at 6:48 pm
Well I have to say.... that is not really exact:
select Len ( ' Space in the begining '), Len (rtrim(ltrim(' Space in the...
April 6, 2006 at 6:33 pm
How many rows are we talking about here?
April 6, 2006 at 2:37 pm
Howard,
No problem, we(at least I) pretty much come here for two things: to help and to have fun solving the problems people post
Cheers,
April 6, 2006 at 1:57 pm
Viewing 15 posts - 2,341 through 2,355 (of 5,103 total)