Forum Replies Created

Viewing 15 posts - 1,891 through 1,905 (of 2,496 total)

  • RE: service pack 4

    Do not forget there are separate SP4 files for SQL Server and for AS. When you apply SP4 to SQL Server, you should also apply hotfix 2187 as there...

  • RE: I can''t allocate 4Gb of ram from a total of 6Gb

    Task manager, etc, does not show figuers for any memory allocated as AWE memory. The figures you are seeing are the best you will get. As you are...

  • RE: SQL 2005 x64 bit memory high usage

    With 64-bit SQL Server you should always set the maximum memory SQL can use. By default, SQL will try to use the total of physical memory and pagefile space,...

  • RE: Backup hangs with no clear error

    The most common cause I have seen of a backup not completing but not giving errors is lack of disk space for the backup. This should give you a...

  • RE: Diff Backup size increased suddenly

    It is important to design a backup strategy to meet the recovery SLA, and I have seen very few situations where a differential backup is beneficial.

    If the SLA is to...

  • RE: Truncate Log

    shahgols (10/4/2005)


    Question for the experts here, is dbcc shrinkfile('log_file', truncateonly) the same as the option "Compress pages and then truncate free space from the file" in EM

    The answer is...

  • RE: Installing SP2 on SQL 2005 and System databases

    You definitely get a new version of mssqlsystemresource with SP2, and you should always assume that upgrade scripts will run on master and msdb during a SP install.

  • RE: Windows Service Account Issue When Restoring Master to Another Server

    I would advise against restoring master in your scenario. It is far better to transfer the logins via scripts.

    The system objects in master may be different depending on te...

  • RE: SHRINKDATABASE Not Working

    Unless someone is very experienced in SQL Server, they should never delete a database log file unless advised to do so by Microsoft support.

    Deleting a log file is a last-ditch...

  • RE: Moving RootDirectory from disk C to D (Database Engine, Analysis Services)

    If the objective of doing the move is to get your data on to another disk, this can be done without moving the SQL Server program libraries. Perhaps the...

  • RE: Wiggle Room

    I think majorbloodnock has things about right. The client definitely has the right to expect work of merchantable quality. They should not expect world-leading skills unless they have...

  • RE: Week split up for any month

    The standard way of dealing with splitting up date values into periods is to use a date lookup table.

    You need 1 row for every date likely to be in your...

  • RE: Possible Collation Issue - Select Into Temp Table

    The ROWCOUNT option is ignored when you do a INSERT INTO ... SELECT statement (see BOL). It is honoured for your initial 'Select Distinct RIGHT('0000000000'...' and for your 'Select...

  • RE: Recursive Code without using SP

    If you are going to use recursion a lot, then consider moving to SQL Server 2005. You can write recursive SQL using Common Table Experssions (CTEs), which is a...

  • RE: Role of TempDB

    This is some basic advice about how to decide the size of tempdb

    tempdb needs to be sized so that it will not grow while your server is in use.

    This is...

Viewing 15 posts - 1,891 through 1,905 (of 2,496 total)