Forum Replies Created

Viewing 15 posts - 406 through 420 (of 1,048 total)

  • RE: Good SQL Server hardware ?

    jared-709193 (10/5/2011)


    Yes, but like you said. There is a reason to keep it enabled. I have not found a good reason to disable it.

    EDIT: Also, I respectfully disagree. I...

  • RE: Good SQL Server hardware ?

    That's a hard question to answer directly without knowing more about the nature of your application... the size of the database(s) and what sort of traffic load you'll be dealing...

  • RE: An Awesome Job

    Actually this web site is one of the awesome things about my job every day. I can share in discussions, answer questions and get questions answered and even be entertained...

  • RE: Elementary Key Attributes

    I got two out of three, which is okay with me.

    Of all of my skills and talents, the ability to recite every obscure factoid about relational databases (or any...

  • RE: passing comma delimited string as parameter to stored proc

    you can't use a comma separated set of values in a case of "where ID = @ID".

    If @ID is not an integer then you'll need to use this: 'where (ID...

  • RE: Unable to open SQL 2008 Instance after SP2 applied

    Have not seen this but obviously your install script encountered errors and did not complete. You need to try and find out why, although this may be one time deal.

  • RE: Closing Out Replies

    GSquared (9/30/2011)


    Which brings up, what happens if some credible expert votes for something, and five minutes later is told a better solution by someone who's completely new to the site,...

  • RE: passing comma delimited string as parameter to stored proc

    One way is to build a dynamic SQL query with it. Simple example:

    set @values = '1,2,3,4,5'

    set @query = 'select * from table where ID in ('+@values+')'

    Just make sure whatever you...

  • RE: What’s In Your (Junk) Drawers?

    Speaking of junk drawers.... how many unused tables and stored procedures exist in some of our production databases that have been out there for years?

    I have one in particular that...

  • RE: Urgent Help!!! on Function

    It looks to me like you could use an existence query instead of count() since you aren't really interested in the actual count, just that it is > 0.

    "if exists()...

  • RE: Using ISNULL with Dates

    You should be using coalesce. I'm not sure if I understand exactly what you want but try something like this:

    datediff(dd, DATE_2, coalesce(DATE_4,DATE_1,DATE_3))

  • RE: Compare varchar to decimal

    How about something like this:

    with cte (id, val) as (

    select id, convert(money,totdays) as val from #TEST

    )

    select id, val from cte where val > 20.00

  • RE: Insight for a Developer in a Rut

    amy26 (9/28/2011)


    I get weary of recruiters and companies I've never heard of... I just wish more places were actually hiring themselves and not outsourcing.

    I'll second that. Until the current anti-business...

  • RE: Insight for a Developer in a Rut

    It is not uncommon for companies to hire on a temporary basis until they determine if you are competent. I don't blame them, why should they be penalized for firing...

  • RE: Know when to hold 'em

    GilaMonster (9/27/2011)


    Neither does mine (well, actually mine just doesn't have a training budget as it's a consulting company). I'm paying for a 10 000 mile (each way) trip, close on...

Viewing 15 posts - 406 through 420 (of 1,048 total)