Forum Replies Created

Viewing 15 posts - 10,621 through 10,635 (of 14,953 total)

  • RE: Tabbed delimited Files

    I'd say the proc isn't holding the value of the tab correctly. I've seen that kind of thing happen. You might try replacing the input value with the...

  • RE: Creating a recursive hierarchy based on a flat file

    You're welcome. Let us know how it works out, okay?

  • RE: Repeatable Query

    This requires a Numbers table. If you don't have one, you can either look up how to create one, or just ask and I'll add that to it.

    create table...

  • RE: How generate Dates on the fly

    Mangal, the only reason yours shows as 1% is because it's estimating that it will only return 2 rows. It's like a UDF, SQL doesn't know what it's going...

  • RE: (Not so) Simple update query

    Use "In" instead of "=".

    Update person

    SET Town = 'TLI'

    Where Extension in ('7854121', '7856121', '020523')

    Does that help?

  • RE: "Answered" Posts

    jcrawf02 (3/6/2009)


    Chris Morris (3/6/2009)


    In any case, the best or, more rarely, the correct answer here is usually blindingly obvious.

    To you, Chris, or to someone who knows that they're doing. ...

  • RE: First SQL Database

    Your connection string can either have a specific username and password in it, or it can use integrated security (Windows security). I haven't set one up in a while,...

  • RE: Lets help the experts help themselves

    I answer a lot of basic questions pretty much every day. Honestly, those are what most people need most of the time. And search (Google or otherwise) is...

  • RE: Are the posted questions getting worse?

    GilaMonster (3/6/2009)


    Roy Ernest (3/6/2009)


    And all of you are trying to raise your post counts.... :hehe:

    Indeed. I wonder if I can manage another 20 tonight. :w00t:

    Raising the post count, quicker to...

  • RE: Union Benefits

    On the subject of unions, and to hit the cheese quota for the day and copy everyone else, just remember the performance difference between Union and Union All.

    I think a...

  • RE: Union Benefits

    Hans Munkwitz (3/6/2009)


    [font="Arial"][/font]

    My wish would be to have SQLServerCentral discontinue the practice of having to login when one wants read some of your articles. Having been in the computer industry...

  • RE: NEED HELP FOR SQL SERVER DESIGN

    It's going to depend almost completely on what kind of service you are providing with that.

    For example, it's a big difference if most of those 1500-2000 concurrent users are constantly...

  • RE: Can I use DTS instead of SSIS with SQL 2005?

    You should be able to get a Dev copy of SQL 2000 that you could use to build DTS packages for deployment on your production server. That's going to...

  • RE: Reducing execution time of sproc

    sql-oholic (3/6/2009)


    FYI,

    I figured out lots of things in my code.

    I have created proper indexes in my tables which has reduced the execution time.

    BTW,Isn't there a way to delete...

  • RE: Nested curosors

    If you have two tables that you want to compare, you can join them and have the computer compare them very, very fast. Much faster than a cursor.

Viewing 15 posts - 10,621 through 10,635 (of 14,953 total)