Forum Replies Created

Viewing 15 posts - 286 through 300 (of 443 total)

  • RE: SSRS automatically run report & save pdf output to c:

    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...

  • RE: SSRS automatically run report & save pdf output to c:

    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...

  • RE: SSRS automatically run report & save pdf output to c:

    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...

  • RE: SSRS automatically run report & save pdf output to c:

    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...

  • RE: Datatype for IP addresses

    Do you need to consider IPv6 addresses as well as IPv4?

    edit: Just see the date on the original post! :blush:

  • RE: Converting varchar to int

    lbabichenko 80114 (11/23/2009)


    Simple way to do this without function

    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...

  • RE: syscolumns names

    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 🙂

  • RE: syscolumns names

    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 ...

  • RE: syscolumns names

    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...

  • RE: datetime variable in where condition

    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

  • RE: Rounding - Is there a better way

    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...

  • RE: Are the posted questions getting worse?

    Talking of splitting. I'm surprised nobody has commented on this and it's use of recursive CTEs.

    String Splitting[/url]

    Needs to be shown the error of his ways 🙂

    I would, but don't have...

  • RE: Report Filter: Summary of Detail level

    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

  • RE: Mixed caps

    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...

  • RE: Mixed caps

    Found someone who has already done something similar to what I was attempting to do.

    See here

    Hope this helps.

Viewing 15 posts - 286 through 300 (of 443 total)