Forum Replies Created

Viewing 15 posts - 31,006 through 31,020 (of 39,754 total)

  • RE: Is it posible to run 1000 active sessions in SQL server 2005?

    For one, worker threads shouldn't be set to the max. The default of 255 will handle 1000 sessions.

    Second, as Colin asked, what else have you changed?

  • RE: kill 63 won't die.

    reboot.

    Something's wrong. I've seen this at times and the only thing that will clear it is a restart of SQL Server. The rollback will likely completely quickly when it restarts.

  • RE: Total length of columns ina table.

    select * from information_schema.columns where table_name = 'Customers'

    will give you the max length of the values, but the issue is that each row can have different data. What exactly are...

  • RE: Generic Insert & Update Procedure

    While I agree with the two responses above, why do you want to do this? I'd be curious to know what you're trying to achieve.

  • RE: How to tell which is better?

    I tend to agree with Colin and Grant, but which is which in the batch %? You have Query One twice.

  • RE: Make own pc a "server"

    Server and PC have no meaning. They're both computers. The install differentiates between which version of the operating system you have. Some SQL Server versions will only install on a...

  • RE: Pass database name in parameter

    You can't do this directly. The FROM clause requires resolution at compile time, so it can't take a variable.

    You can run something like this:

    declare @cmd varchar(200)

    ,...

  • RE: Dynamic query issue

    I think you're confused, or at least one of us is. Your code only contains a single value, but you're muddying the issues here.

    You have 3 columns, a month, and...

  • RE: Lookup table options

    I think Grant has given a good explanation of why #2 works. It's easier for the next person (developer or user) to understand as well. It makes client development slightly...

  • RE: One Single View

    Interesting idea, Bryant, of a shifting or sliding warehouse.

    From what I understand, which might be little, is that the warehouse should be the central source where you've consolidated the...

  • RE: sp_defragment_indexes not working in 2005

    Typically you run defragment on only certain databases, like user databases, so you'd want to run a loop or use a list. That way you aren't messing with system databases.

    I'd...

  • RE: remote connectivity/standard edition

    The PIX won't pass 1433 by default.

  • RE: Putting image files in sql server 2005

    You'll usually find people split on this issue. I tend to agree with Jeff, but lots of people like having the images/BLOBs in SQL Server. Everything is then in once...

  • RE: Express and SQL2005

    Ah, that stinks. Perhaps you can uninstall the SQL Native Client only? Not sure if that's separate with Express.

  • RE: Cannot view discussion of old articles

    Which article?

    I see at least one that's broken and I'll have someone look at it tomorrow.

    Steve

Viewing 15 posts - 31,006 through 31,020 (of 39,754 total)