Forum Replies Created

Viewing 15 posts - 20,131 through 20,145 (of 26,490 total)

  • RE: db_owner

    rsheppick (6/30/2009)


    Lynn Pettis (6/30/2009)


    Curious, what permissions were the developers using while building the app?

    We had full god mode rights ha ha, so it never came up.

    And that is probably your...

  • RE: Converting date time

    First, no reason to convert to mm/dd/yyyy when comparing to a datetime column as SQL Server will just convert the character representation back to a datetime value.

    Second, this will probably...

  • RE: Converting date time

    Why? What is the data type of the column you will be comparing the value with?

  • RE: db_owner

    Curious, what permissions were the developers using while building the app?

  • RE: Arithmetic overflow error converting varchar to data type numeric.

    Amedeo Feroce (6/30/2009)


    Our company's EMR has migrated from SQL Server 2000 to SQL Server 2005. I had created about 15 reports that all worked without any issues prior to the...

  • RE: Converting date time

    Give this a try: select dateadd(mm, datediff(mm, 0, getdate()), -1)

  • RE: Tlog space can't be reused

    Now that you eliminated the cross join, and the fact that you want all the records from the source table, it should work. Have you run it in a...

  • RE: Join to Get a Distinct Record

    Could you provide the DDL for the tables and some sample data? It can be abbreviated to those columns you need and required for joining the tables together. ...

  • RE: JOIN on two fields

    select

    *

    from

    TableA ta

    inner join TableB tb

    on (ta.Col1 = tb.Col1

    ...

  • RE: Tlog space can't be reused

    nscott (6/30/2009)


    Thanks for the info! We've started a regular tlog backup routine and the timeout issue seems to be resolved. However, now I have an issue with the...

  • RE: DDL Triggers - Not Working

    Could be. Problem is, we haven't seen your code.

  • RE: TSQL Search and Compare

    Take a look at the code attached. I tried posting it in this thread, but once again I seem to be having issues again.

  • RE: Are the posted questions getting worse?

    jcrawf02 (6/30/2009)


    Paul White (6/30/2009)


    WayneS (6/29/2009)


    Hey gang... I'm looking to take "She who must be obeyed" (in this case, both my wife and mother... )

    When I first read that, it sounded...

  • RE: Are the posted questions getting worse?

    Paul White (6/30/2009)


    As tempting as the AWE 2K topic is, and as much as I dislike the /3GB switch, I must get some sleep!

    Night all. 🙂

    Good Night Paul! 😉

  • RE: DDL Triggers - Not Working

    Well, thank you for the link, but it really isn't the same as showing us your actual code.

Viewing 15 posts - 20,131 through 20,145 (of 26,490 total)