Forum Replies Created

Viewing 15 posts - 31 through 45 (of 53 total)

  • RE: Query to find the start day of the week as Monday

    Thanks for the reply.

    I used the below case statement in my Select statement to get the starting day as Monday:

    (CASE WHEN datename(dw,date) <> 'Sunday' THEN CONVERT(varchar(10), DATEADD(WK, DATEDIFF(WK, 0,...

  • RE: Query to find the start day of the week as Monday

    Thanks WIll take a look at it:)

  • RE: SSIS datediff and dateadd

    Thanks for your reply..

    I tired using all the datetime expressions related to date with the below exprseeion in dervived column

    DATEADD("WK",DATEDIFF("WK",0,date),0)- but the same query gives correct answers in sql ,...

  • RE: SSRS report expression with where clause

    Thanks 4ur reply!

    The below expression works fine

    =Sum(IIF(Fields!Cityname.Value = "CityA", Fields!empname.Value, 'Noname'))

    the above code works.

    Similarly I have another feild AvgRate

    city emp avgrate

    CityA Emp1 7.5

    CityB Emp2 3.3

    but the...

  • RE: SSRS datasource connections

    I was thinking the same...whether to combine data from various web services into SP and handle the error if the system is down...Im nt sure if this can happen...should give...

  • RE: SSRS datasource connections

    Thanks for ur inputs.... I would look in to it..

    And similarly I use a web service as a data source connection in another req.... I have webservices which would fetch...

  • RE: SSRS datasource connections

    Thanks 4 ur reply!

    No I have not used stored procudure...U mean to say one single stored procedure to combine all data from 3 databases ???COuld you please explain me little...

  • RE: SSRS Default date parameters

    Thanks mate for your help!

  • RE: SSRS Default date parameters

    Thanks...

    I wanted the Case 1 of yours...

    Default Paramater of date to be set to -2 if today is Monday(so that saturday data is displayed) and -1 if other weekdays...

    I had...

  • RE: Load newly inserted data from millions of records on daily basis-Using SSIS

    Thanks....I am using the lookup transformation only...n again I don have to worry about updated records... It is just only the new records...

    Thanks:)

  • RE: Calendar Date parameter in SSRS Jump To URL

    Thanks for your reply..

    I had some mistakes with the hyper link which I had used... After corrrecting it, things look fine..

    Thanks all for your help!

  • RE: Calendar Date parameter in SSRS Jump To URL

    I suppose date/time data type is not creating any problem...If I use date/time data type and select allow multiple values, the date paramater is being passed ...

    But only if I...

  • RE: Calendar Date parameter in SSRS Jump To URL

    Thank u both!!

    I am able to pass the date paramater if the data type of the date parameter is set to Text.

    But my start and end date paramaters are Calendar...

  • RE: SSRS report- Jump to URL option

    Hi,

    I have changed the URL and it works fine now but there is another problem that exists.

    Below is the link I used in JUMP URL Option

    ="http://servername/ReportServer/Pages/ReportViewer.aspx?/test/test/Report2&rs:Command=Render&ReportParameter1=" & code.urlencode(JOIN(Parameters!ReportParameter1.value, "&ReportParameter1="))

    The above...

  • RE: SSRS report- Jump to URL option

    IF I try embedding the URL encode function with the jump to URL link,I am not able to jump to url...i.e it throws error internet cannot display the web page...

    looks...

Viewing 15 posts - 31 through 45 (of 53 total)