Forum Replies Created

Viewing 15 posts - 43,531 through 43,545 (of 49,571 total)

  • RE: Strange situation

    Interesting. Despite having no rows, there are over 5000 pages that belong to the table. I would hazard a guess that they all have ghost records on them (marked as...

  • RE: Question on SQL2000 to SQL2005 imports

    stephen.wolfe (10/27/2008)


    I was wondering if it would be as easy as restoring a backup, so, I could essentially do that now with the plain jane version of the database I...

  • RE: Strange situation

    Can you perhaps query sys.dm_db_index_physical_stats for that table and post the results?

  • RE: Locks held by a deleted log-in

    At least find out from the vendor where that locked rows report is coming from.

  • RE: Initial snapshot for publication is not yet available

    Mohsin Patel (10/27/2008)


    Does this have something to do with replication deciding that the subscription needs to be reinitialised?

    If the subscription gets reinitialised, a new snapshot must be generated. The...

  • RE: group by

    Try something like this

    SELECT ref, design, armazem, SUM(CASE origem WHEN 'BO' THEN qtt WHEN 'FT' THEN -1*qtt ELSE 0 END) AS sumqtt

    FROM SL

    GROUP BY ref, design, armazem

  • RE: Why we need to use UPDATE STATISTICS ?

    Lowell (10/27/2008)


    Second, I seem to remember the auto update of the statistics is based on a percentage of changes, i believe, say it's 1 percent of the sample size,

    20%...

  • RE: Question on SQL2000 to SQL2005 imports

    If you used the import/export wizard, it will just bring the data across and create tables based on that data. No keys, no constraints, no indexes, no defaults, etc

    For that...

  • RE: Strange situation

    And a SELECT count(*) FROM tbDataList returns 0?

    Is it possible that there are two tables named tbDataList in different schemas?

  • RE: Case Statement in Where clause

    Can you post table definition (as a create statement), some sample data (as insert statements) and your desired results please.

  • RE: Strange situation

    Can you post table structure, query and Statistics IO output for running the query? (SET STATISTICS IO ON)

  • RE: Barriers to Entry, Database Weekly (Oct 27 2008)

    Dan Guzman (10/27/2008)


    And maybe post 5 questions per month for registered users (un limited responses to your own questions) and maybe 5 or 10 respones to other users questions....

  • RE: Locks held by a deleted log-in

    todd_dawson (10/27/2008)


    I have users trying to run queries, their program is telling them that a user has some rows locked, but the user hasn't been in the system for months....

  • RE: Log file full

    Great. Now make sure that you have regular log backups scheduled so that this doesn't happen again.

  • RE: SQL-Server 2005: Change Ordinal Column Position

    baumgaertner (10/27/2008)


    I need a standard approch for "Change Ordinal Column Position" that works on every table independant from PK's, FK's.

    Why? What are you trying to achieve here?

Viewing 15 posts - 43,531 through 43,545 (of 49,571 total)