Forum Replies Created

Viewing 15 posts - 15,256 through 15,270 (of 15,381 total)

  • RE: Is there an equivalent of Excel's NORMDIST function in SQL Server 2005?

    Nothing right out of the box that i know of. You will probably have to write your own. (or borrow somebody else's)

  • RE: Advantage and Disadvantage of SQL Job

    You could think of a sql job as similar to a windows scheduled task and an SSIS package as the task that is scheduled.

  • RE: Case Statement in SQL

    The subquery in your case statement is returning more than 1 value. It looks like what you are trying to do is a conditional result set based on the value...

  • RE: Data Type and Length

    Excellent question! I noticed the lack of defining the size and my initial response was 1;1 but since that was not a choice I figured there must be something in...

  • RE: Problem using the table variable of a function in a query

    Pretty hard to guess what you are trying to do but maybe you can declare a table variable with the same structure as your function.

    declare @MyTable....

    insert @MyTable

    select * from dbo.abc('parameters...

  • RE: Auditing Events

    Sourav-657741 (7/29/2010)


    By default, the audit events are written to the audit target in an asynchronous fashion. Question was not posted properly I guess.

    The term "default" should have been pretty obvious...

  • RE: Are we in all these cities?

    I was completely stumped by the answer choices. Like everyone else I missed the semicolon in the subquery and was focused on trying to figure out which of the other...

  • RE: LIKE

    Toreador (6/24/2010)


    A good idea, but a bit too easy to guess! Even though I failed to come up with an example, I got it right as the obvious answer was...

  • RE: insert into temp table

    Another good straight forward question. Thanks!!!

  • RE: Tables

    I too kept looking at the syntax thinking there must be something in there...then wondered if it were one of the questions about exactly how it was worded and intended....

  • RE: What will this return?

    bkubicek (5/24/2010)


    Sorry for the misdirection. I thought it was what made this question fun. I found a problem just like this in some code I inherited from some...

  • RE: Getting Colorful

    Chris Jackson-371542 (5/7/2010)


    When debugging existing code, this a common response from support:

    It is "Working as Designed"

    1. This is what the code is supposed to do based on original expectations.

    OR

    2. Yes...

  • RE: Getting Colorful

    Let's not leave out "User hostile". The kind of system that makes it easy to picture an end user smashing their computer with a 4# sledge hammer. 😀

  • RE: Using IDENTITY as a key column

    Just wanted to note (and I'm shocked, SHOCKED, that with 27 posts thus far in this discussion, no one yet noted this) something which I trust everyone would agree is...

  • RE: Using IDENTITY as a key column

    Excellent question!!! I like the ones that appear easy on the surface but make you think before you answer.

    With all the nitpicking lately I am surprised that nobody complained that...

Viewing 15 posts - 15,256 through 15,270 (of 15,381 total)