Forum Replies Created

Viewing 15 posts - 136 through 150 (of 544 total)

  • RE: How to get the date?

    Luis Cazares (3/25/2014)


    Assuming you have @@DATEFIRST = 7, you could use this formula:

    SELECT CASE WHEN DATEPART(DW, DATEADD( MM, DATEDIFF(MM, 0, GETDATE()), 0)) = 2

    THEN DATEADD( DD, 4, DATEADD( MM, DATEDIFF(MM,...

  • RE: How to get the date?

    Hi Nevyn,

    Don't care of holidays. Just caring about Saturday and Sunday.

  • RE: How to find a missing sequence in a column?

    Thank you Hunch, The query you have given is here is really nice one.

  • RE: How to find a missing sequence in a column?

    Thank you Chris. It worked. First query is much better than second query.

  • RE: Not able to deploy the report

    Steven.Howes (3/13/2014)


    The site settings is a link at the top right of the report manager web page. When you go to view your report what's at the top right?...

  • RE: Not able to deploy the report

    sqlbuddy123 (3/13/2014)


    Charmer (3/11/2014)


    Hi Firends,

    I am just a beginner in report service. I am trying to deploy a report. But i get the messages below.

    "Error1The permissions granted to user 'Domain\user' are...

  • RE: Not able to deploy the report

    Steven.Howes (3/12/2014)


    did you add yourself as a user (or admin) in the site Settings? (Site Settings top right of the report manager, then hit security).

    Hi Steve, I am not...

  • RE: Not able to deploy the report

    sqlbuddy123 (3/12/2014)


    Are you the Admin on the Report Server or just a user of SSRS ?

    --

    SQLBuddy

    yes, I am just a user not Admin.

  • RE: Not able to deploy the report

    Hi Nandu,

    It worked in visual studio. I am able to deploy through Sql server data tools. But when i tried through web browser, it is keep on giving me this...

  • RE: CDC not able to enable...

    Ok Koen, Thank you for sharing this.

  • RE: CDC not able to enable...

    Koen, suggest me what should I do ? I did not rename the server. Assume that i had renamed the server, what would I do for that? explain me those...

  • RE: CDC not able to enable...

    No Koen, I did not rename anything.

  • RE: Converting numeric to datetime

    Create FUNCTION [dbo].[GetDateTime](@Date varchar(8), @Time varchar(6))

    RETURNS datetime

    WITH EXECUTE as CALLER

    as

    BEGIN

    DECLARE @FullDttm datetime

    If

    (@Date = '0' and (@Time = '0' or @Time = '000000')) or (LEFT(@Date,6) = '190000' and LEN(@Date)...

  • RE: Converting numeric to datetime

    Thanks to Pete and Abu...Those scripts really works....

    Friends...some times i see the date comes in different order....For Ex: instead of 20100225, it comes like 02252010..So my function get failed...Do we...

  • RE: How to set the condition based on Data flow task?

    Terry300577 (1/2/2013)


    before each load of data set a variable say (RowsLoaded) to -1 or some arbitrary value then use a rowcount and assign the value to the variable when loading...

Viewing 15 posts - 136 through 150 (of 544 total)