Forum Replies Created

Viewing 15 posts - 32,266 through 32,280 (of 39,818 total)

  • RE: Separation

    Carolyn,

    That's interesting. I've only had a few datbases over 200GB, but I've never seen this issue, even on W2K. It seems like a file handle thing, which could be an...

  • RE: Lost messages

    It's actually a weird issue in the forum code. There's a mem leak somehwere, so we were restarting the app pool every hour. I backed that down to 4 times...

  • RE: Regarding blocking in sql server 2000

    Bulk load the data into some staging table and then move it over a few rows at a time.

    the other thing is to examine the triggers and ensure you're not...

  • RE: problem in query stmts

    select @projectcode = @projectcode + '0001'

    In the second example you are directly returning @projectcode+'001' and having the output column named ProjectCode, not assigning the variable.

  • RE: Disk Space

    Or set a performance alert on this counter.

  • RE: Does anyone use PolyServe?

    Interesting thread and I'd love to get a writeup from any of you to share with everyone on how the rollout goes (or has gone for any of you) and...

  • RE: Separation

    Interesting points and thanks for the comments.

    I know most of us live in the world of < 1TB databases and actually it's prob < 100GB for the vast majority. A...

  • RE: Query Analyzer blues

    No separate windows in SSMS. It's a pane (and pain) in SSMS only for queries.

    You can still connect with QA, but the object browser only partially works.

  • RE: I/0 error Torn page

    You can also rename the northwind and pubs dbs and let them come up suspect to get SQL to start.

  • RE: Issue an update if months >12

    The update has to apply to specific rows. You are using a where exists() clause, which returns a true or false, not a set of rows.

    What you need to do...

  • RE: backup log error

    Do you have an exceptionally large log? Or is this server low on memory?

    I've not seen this before.

  • RE: Auto commit transactions

    If you issued a BEGIN TRANSACTION, you must manually commit, but Antares686 has given you a good explanation.

    Also, are you getting log full messages? Or do you just see the...

  • RE: What permissions are necessary to issue "ALTER TABLE ? NOCHECK CONSTRAINT ALL"

    I believe you need to be the table owner, db_owner, or ddl_admin to alter a table.

  • RE: Server Migration Strategy

    I don't think moving the system databases is a good idea. It can work fine, but if you have issues, then it's hard to recover.

    Easy to reinstall, then move DBs...

  • RE: Voting Problem/Question

    It's a strange session issue that we've seen with some people. Can't reproduce it here, but it seems to be an issue between the ASP and ASP.NET sessions.

    Steve

Viewing 15 posts - 32,266 through 32,280 (of 39,818 total)