Viewing 15 posts - 286 through 300 (of 443 total)
Dave Ballantyne (12/4/2009)
I have a CLR routine that mails reports on my blog here
Dave,
I like that, good use of CLR. Now all I need to do is convert it to...
December 4, 2009 at 2:47 am
ismail casper (12/4/2009)
Thank You All, i can't create the project in VS.
What do you mean by "can't"?
- You don't have visual Studio?
- You get an error when you...
December 4, 2009 at 2:41 am
I did have some more ideas:
1. Write an ActiveX control. But if you thought the code example for the web service was complicated then I don't think this is...
December 4, 2009 at 1:47 am
You need to realise that you can't save a file to the C: drive from within a web browser without user intervention because of security issues.
You will *always* get the...
December 3, 2009 at 9:49 am
Do you need to consider IPv6 addresses as well as IPv4?
edit: Just see the date on the original post! :blush:
December 3, 2009 at 8:57 am
lbabichenko 80114 (11/23/2009)
Create table #t(t varchar(10))
INSERT INTO #t VALUES ('1,2,3')
INSERT INTO #t VALUES ('3,4,5,11')
select * from #t
where t like '%1%' and t not like...
December 3, 2009 at 8:06 am
Richard,
No problem at all.
There's actually a big thread (almost 500 posts) here discussing the various methods of splitting strings that's worth looking at.
If you have the time, that is 🙂
December 2, 2009 at 9:33 am
Richard,
Try out Jeffs tally table method, if you haven't already, you should find it's even faster.
I got the following times on a 9000 element source string.
------------ XML Method ...
December 2, 2009 at 4:15 am
No need for a while loop to split delimited strings. See Jeff Modens Tally table article, linked to in my sig below, for some great tips on avoiding while loops...
December 2, 2009 at 2:27 am
shilpas-1144056 (11/30/2009)
hi,u can try this..
SELECT [Emp_Id],[Shift_Date] FROM [Emp_Shift_Details] Where
cast(convert(datetime,Shift_Date,101) as datetime) = @StartDate;
I would advise against this sort of thing in a WHERE clause.
See here for the reasons why
November 30, 2009 at 8:29 am
So, if 7.0449 should be rounded up to 7.05, what is the largest value that should be rounded down to 7.04 or should all values > 7.04 be rounded up...
November 23, 2009 at 9:12 am
Talking of splitting. I'm surprised nobody has commented on this and it's use of recursive CTEs.
Needs to be shown the error of his ways 🙂
I would, but don't have...
November 20, 2009 at 5:59 am
Dave,
I think I see what you're trying to do.
Put an expression like this in the Visibilty->Hidden property for the field/row:
= NOT Parameters!ShowDetail.Value
November 18, 2009 at 7:27 am
jcrawf02 (11/18/2009)
The function we're using in-house is from Jeff Moden, whose Tally table article Nigel already pointed you to. Uses that to achieve Proper Case (aka Title Case)
Thanks, not seen...
November 18, 2009 at 7:12 am
Found someone who has already done something similar to what I was attempting to do.
See here
Hope this helps.
November 18, 2009 at 2:25 am
Viewing 15 posts - 286 through 300 (of 443 total)