Forum Replies Created

Viewing 15 posts - 166 through 180 (of 1,160 total)

  • RE: Memory Utilization

    It would not cause any performance problems. It is good that you are leaving some breathing space for the OS.

  • RE: Why is this backup taking so long? Why is the file so big?

    7 hours to backup 99 GB seems to be abnormal. Did you check if any other process is blocking this Backup session? Also check the System Event Log for any...

  • RE: filegroupe

    You may find this script useful.

    select

    db_name()as DBName,

    object_name(i.id) as TableName,

    fg.groupname as FileGroup

    from sysfilegroups fg, sysindexes i

    and i.indid < 2

    and i.groupid = fg.groupid

  • RE: sp_configure 'option' config value changed

    RECONFIGURE accepts only valid values whereas RECONFIGURE WITH OVERRIDE accepts any value.

    Both RECONFIGURE and RECONFIGURE WITH OVERRIDE work with every configuration option. However, the basic RECONFIGURE statement rejects any...

  • RE: unattended script for SQL Server 2005 installation

    You may find SQL Server FineBuild[/url] useful.

  • RE: .MDF and .LDF back-up

    Even my client has some servers in which they copy the .mdf & .ldf files in their "cold" backup strategy. If the application can afford the downtime, this strategy can...

  • RE: full text service - error

    sqldba_icon (12/29/2010)


    Not sure what difference it would make if i do it through services console Vs SAC on stand alone

    Here is why

  • RE: Cannot Delete Job

    Easiest approach would have been to delete the "Subplan" in the Maintenance Plan. The job would be automatically deleted.

  • RE: SQL server 2005 - server restarted

    If the server is getting rebooted, check the System Event Log which should have more details.

  • RE: Backup

    You would use RESTORE HEADERONLY, RESTORE FILELISTONLY to verify if the Backup file belongs to that particular database and to check the original location of the database file. Optionally you...

  • RE: memory utilization

    You can use Performance Monitor utility to get this information. Run --> perfmon.exe

    Here are the screenshots on how to add counters in Performance Monitor.

  • RE: Profiler to monitor the failing backup job

    Agree with Shawn. It is a good practice to backup the database locally and copy it to the network share later on. You can also schedule a job to copy...

  • RE: full text service - error

    Please change the Service Accounts for both SQL Server service and FT service using SQL Server Configuration Manager.

  • RE: maintenance plan is not created

    Please post the complete error message

  • RE: SSIS JOB failure

    The job is timing out. Check the resource utilization and sessions on the server referred to in Step 1.

Viewing 15 posts - 166 through 180 (of 1,160 total)