Forum Replies Created

Viewing 15 posts - 5,641 through 5,655 (of 6,679 total)

  • RE: Best way to add qty column unit qty = some value

    Jeff Moden wrote an article on this site that addresses the issue of Running Totals. However, he apparently has pulled the article to correct some issues he found with...

  • RE: Indexes

    To only affect those indexes that have more than 1000 pages:

    Selectobject_id As ObjectId

    ,index_id As IndexId

    ,partition_number As PartitionNumber

    ,avg_fragmentation_in_percent As AvgFrag

    ,page_count As PageCount

    ,index_type_desc As IndexType

    Into #work_to_do

    ...

  • RE: Indexes

    If you are running Enterprise Edition - you have the option of rebuilding indexes ONLINE. As it is currently written, those indexes being rebuilt will not be available -...

  • RE: join with no mtach

    This is a simple OUTER JOIN query - look it up in Books Online for further information.

    SELECT ...

    FROM dbo.TableA a

    LEFT OUTER JOIN dbo.TableB b...

  • RE: Cleaning up Backups

    What have you tried so far? And, what version of SQL Server 2005? Check the version for both the database and the client tools you are using.

  • RE: "DBCC CHECKDB ... WITH DATA_PURITY" - Is it needed in SQL-2005-to-SQL-2008 upgrades?

    I wouldn't think so, because that is only needed to enable the full checks on a database that was upgraded from 2000.

    If the database has already had that done (e.g....

  • RE: SQL 2008 Indexes

    Tom.Thomson (2/3/2009)


    It seems expensive to me, re-ednabling the clustered index implies rebuilding every index on the table.

    With SQL Server 2005 and greater, rebuilding the clustered index does not force a...

  • RE: Displaying the FillFactor

    Neither - fill factor is defined for each index. If you are looking at the fill factor for the clustered index, then you are looking at the table.

    To find...

  • RE: Full Backups and Truncating the Transaction Log

    Also realize that once you break the log chain (truncating the log this way will break it) - trying to backup the log later will fail. Since you are...

  • RE: SQL Server 2005 EE 64-bit Memory Usage

    You really cannot depend upon Task Manager. You can use perfmon to determine the exact usage of memory.

  • RE: Total Memory vs. Target Memory on SQL Server 64-bit Standard Edition

    BTW - setting max memory to 26GB may be too high for Standard edition. You'll want to monitor the system and lower the max memory if you start to...

  • RE: Total Memory vs. Target Memory on SQL Server 64-bit Standard Edition

    Select 27262976 / 1024 / 1024;

    Why do you think the system is not using 26GB of memory?

  • RE: SQL Server 2005 EE 64-bit Memory Usage

    Just so you know, /PAE and /3GB have no affect on 64bit systems. You do not have to turn on AWE in SQL Server either. SQL Server on...

  • RE: updatable view

    It is perfectly valid to create an updatable view on two separate tables. There are certain rules that need to be followed, but you can definitely create a veiw...

  • RE: stored procedure bias

    To expand a little on what Gail started - in a parameterized query where the objects are not schema qualified, even if it is exactly the same it will generate...

Viewing 15 posts - 5,641 through 5,655 (of 6,679 total)