Forum Replies Created

Viewing 15 posts - 226 through 240 (of 463 total)

  • RE: SQL Database Migration

    I prefer using DTS. It is pretty easy to use and has been proven to be faster that bulk copy for large amount of data. you can use DTS to copy from...

  • RE: Data Stored

    select database_name,physical_device_name,backup_start_date,backup_finish_date from msdb..backupmediafamily a join msdb..backupset b on a.media_set_id = b.media_set_id  where backup_start_date > '2004-10-06'

  • RE: Splitting a table

    Just to add ont o what yelena mentioned. You can split your tables as much as you want and then create a view on top of all your small tables if...

  • RE: Need alias to sql instance restored to different machine name

    I don't think you can specify a "\" in the DNS. But check with your admins and hope they might be able to give you a better handle. If not,...

  • RE: Re-install ODBC?

    ODBC drivers are part of MDAC. Uninstalling SQL should not impact the MDAC libraries and I think something might have gone wrong during the un-install resulting in corrupting your MDAC libraries.  You...

  • RE: BuiltIN Administrator Account

    Grant sa  access to the cluster account and then revoke builtin\admin role.  Below is the KB article.

    http://support.microsoft.com/?id=263712

  • RE: Killed/Rollback

    A non zero kpid means that the spid is in runnable state. Try to recylce the service or program which created this spid.

  • RE: Disaster Recovery and Server Aliases

    The value for alias is stored in registry under HKEY_LOCAL_MACHINE -> Software -> Microsoft -> MSSQLSERVER -> ConnectTo. In case of disaster recovery, if you are restoring the registry, it...

  • RE: corrupt index ?

    Can you check if there are any open transaction creating issues. Try running DBCC opentran.

  • RE: Clustering two MS SQL 2000 serveres

    I'm not sure if i understood your question correctly but if you are trying to make active/active out of two existing servers having sql installed, you can follow the steps below

    1) You...

  • RE: Log Shipping Hell

    Try querying restorehistory table on your secondary server and this should give you an idea about the last log file restored.

  • RE: Remove SQL cluster

    Run the SQL installation program and give the virtual name as the server and this will walk you through the un-installation wizard.

  • RE: Performance Tuning ... Pictures Provided

    Regarding high queue lengths, from what i have seen in our shop is that this value is generally a good place to look at when you would like to tune your...

  • RE: Performance Tuning ... Pictures Provided

    I once ran into this error and resticting max degree of parallelism resolved our issue. One of the behaviors which i saw was that sysprocesses would show huge no. of...

  • RE: Performance Tuning ... Pictures Provided

    Was this high disk queue length witnessed during regular health check or you ran into some performance issues and withnessed this.

Viewing 15 posts - 226 through 240 (of 463 total)