Forum Replies Created

Viewing 15 posts - 1,501 through 1,515 (of 9,641 total)

  • RE: Updating Unique Sequential NUmber

    The best way to ensure that you don't get duplicates is to create a unique constraint or primary key on the column(s) that define uniqueness. You would then get...

  • RE: Are the posted questions getting worse?

    L' Eomot Inversé (7/15/2012)


    Thanks to "El" Jerry, Jason, Lynn, Paul, Stefan, Gianluca, Bex, Grant, Brandie, Greg, Kiara, Revenant, Sean, Craig, Rodders, Dwain, Ray, Jeff, Jack, Wayne, Jan, and Gus ...

  • RE: Updating Unique Sequential NUmber

    gerard-593414 (7/13/2012)


    The framework I am usng has a 1. seelct Construct to seelct into a Business Object and 2. A Save, which does an update, and I am trying to...

  • RE: Find employee with overlapping shifts using cte recursive

    I never actually had it finish. Went for an hour and was maxing my CPU. My query needs to keep it from joining to itself so if you add:

    s1.start...

  • RE: sys.columns X syscolumns

    You could also use the ANSI standard INFORMATION_SCHEMA.COLUMNS view. I have used that in an application that had to work with SQL Server, SYBASE, DB2.

  • RE: Preventing and Logging DROP DATABASE

    If you found it soon enough the Default Trace will have logged the DROP DATABASE and it includes the user who did the drop. The issue is that after...

  • RE: tempdb size and maxsize

    I would typically size tempdb to what I have determined through monitoring to be the max size needed so that it doesn't grow. Then you monitor free space to...

  • RE: Site Settings (Make all reports viewable by default)

    If you assign Domain Users group to the Browser role on the reporting services Home "folder" they will be able to see all reports & folders.

  • RE: Switchboard Sprocs

    What do you mean by Dynamic Sprocs? Depending on how you are doing the dynamic execution the execution plan could still be re-used.

    I would think that you could, if...

  • RE: Find employee with overlapping shifts using cte recursive

    Dwain,

    Essentially your query does a self-join just using a different syntax, so I'm not sure why you don't like Self-Join's. In a case like this you have to do...

  • RE: error message

    Did you RDP to the Report Server and run the report directly there? Because I can't access the report server via RDP I get the error that I can't see...

  • RE: error message

    Okay. The issue is somewhere in the data of the report and it only is an issue when using an older version of IE. Using IE 9 and Chrome...

  • RE: Scheduled job creates dupes

    We really need to see the query to see what it does to have any idea. Without that information all we can do is throw guesses out there.

    One guess...

  • RE: error message

    When you say you created a link, do you mean you created a link on a web page other than the report manager web page?

    LI = List Item

    UL = unorder...

  • RE: Date formating problem

    I'm not sure I understand your issue.

    If the columns in the table are defined as DateTime/SmallDateTime then your variables should be defined using the same data type, not...

Viewing 15 posts - 1,501 through 1,515 (of 9,641 total)