Forum Replies Created

Viewing 15 posts - 17,566 through 17,580 (of 26,484 total)

  • RE: How many databases you can have per server?

    GRE-452109 (1/7/2010)


    You have my sympathy. What a ridiculous attitude to take to research! how do they think you get to be an expert?

    I'll second that.

    I have to agree. Being...

  • RE: Four Rules for NULLs

    Greg Martin-419640 (1/7/2010)


    Hello and happy new year everyone.

    I've looked in the thread and not managed to see an answer to this. I use SQL server.

    If I have a Customers table,...

  • RE: IsNumeric not working

    Jeffrey Williams-493691 (1/7/2010)


    Sorry, but that won't work either - you need the following:

    SELECT 1 WHERE '111' NOT LIKE '%[0-9]%'

    Really? Try this please after removing the space from between...

  • RE: How many databases you can have per server?

    Oksana March (1/7/2010)


    Bru Medishetty (1/7/2010)


    The_SQL_DBA (1/7/2010)


    Bru Medishetty (1/7/2010)


    Krasavita (1/7/2010)


    How many db can we have per server and how much memory in total can I have?

    Thank you

    You can start creating databases...

  • RE: mod 10 weights 1, 2

    Assuming you have a Tally table, how about the following code:

    declare @ TestData varchar(12);

    set @TestData = '03EA12J77';

    select

    (10 - (sum(

    ...

  • RE: How to get start day and end day in month based on date entry?

    Or this:

    declare @ThisDate datetime;

    set @ThisDate = '2010-01-05'

    select dateadd(mm, datediff(mm, 0, @ThisDate), 0) -- Beginning of this month

    select dateadd(mm, datediff(mm, 0, @ThisDate) +...

  • RE: Newbie Question

    I think you are missing the point of our questions. In your sample data, there are two duplicate users based solely on first and last name; John Doe and...

  • RE: User defined data type usage problem

    What is the full error message that is being returned.

  • RE: Women in Technology -- How about at SSC?

    CirquedeSQLeil (1/7/2010)


    Lynn Pettis (1/6/2010)


    Tell me what you think:

    Kim

    Stacey

    Shannon

    Lynn

    I have a male friend named Kim and another male acquaintance named Shannon - so I will go with male on those.

    Lynn, if...

  • RE: Women in Technology

    Jennifer Levy (1/7/2010)


    cherie j sheriff-437357 (1/7/2010)


    It is a great career area for women in general. I see the only problems are logistics.

    Excellent point. A lot of the problem...

  • RE: Newbie Question

    Okay, two questions. Regarding John Doe (ID 1 and ID 2), how do we know ID 2 is correct, because the ID number is higher? Second, in the...

  • RE: Women in Technology

    sreid08 (1/7/2010)


    Here is an interesting article out of the University of WA that talks about why there are less women in the tech field....

    http://uwnews.org/uweek/article.aspx?visitsource=uwkmail&id=54721

    Yes, very interesting article. Here is...

  • RE: Combining statements with different ranges

    ajreynolds (1/7/2010)


    molson-927659 (1/7/2010)


    Why?

    The goal was to try to speed up the process by eliminating an extra query. I'm no expert on SQL, but I would think that combining into...

  • RE: Newbie Question

    I agree. I have a feeling we are only getting a piece of the puzzle, not the whole puzzle.

  • RE: IsNumeric not working

    Missed that, good catch.

Viewing 15 posts - 17,566 through 17,580 (of 26,484 total)