Forum Replies Created

Viewing 15 posts - 3,256 through 3,270 (of 4,745 total)

  • RE: Scary third-party backup agents

    Don't listen to anyone who is not a DBA about database backups. They won't be responsible for recovery, you will. I would agree the tools you should be wary of...

    ---------------------------------------------------------------------

  • RE: WSUS can not install SP3 on SQL Server 2005

    personally I would not leave applying service packs up to wsus. What about closing down apps before the install and backing up the system databases so you have a backout?

    As...

    ---------------------------------------------------------------------

  • RE: Maximum Network packet size for SQL server 2005?

    cheers for posting that.

    ---------------------------------------------------------------------

  • RE: Restoring Data base back up

    post the actual error from the SQL error log when login fails, we need the state value. This could be something like incorrect default database if userid is not orphaned.

    ---------------------------------------------------------------------

  • RE: Is it possible to run replication on a SQL 2005 DB which is a mirrored principal server?

    see

    http://msdn.microsoft.com/en-us/library/ms151799.aspx

    would not surprise me if replication latency is higher on a mirrored database.

    ---------------------------------------------------------------------

  • RE: Log Shipping

    remember if you do this any updates done in DR will be carried back to the live site, so be sure that is what you want to happen.

    ---------------------------------------------------------------------

  • RE: Maximum Network packet size for SQL server 2005?

    there is a configuration option in SQL for network packet size, this has a maximum of 32K.

    change this at your peril. I did once and it broke part of an...

    ---------------------------------------------------------------------

  • RE: Restoring Data base back up

    User is most likely orphaned from its login

    run this command in the database

    sp_change_users_login 'report'

    if the appsa user is listed in the results set run this

    sp_change_users_login 'update_one','appsa','appsa'

    ---------------------------------------------------------------------

  • RE: Identifying system or user dbs?

    I don't know of any flag but the system databases always have the same name so you could use that to identify them (master,model,msdb,tempdb,distribution). anything else is a user database.

    ---------------------------------------------------------------------

  • RE: How to check if SQL 2005 is in mixed or windows only mode??

    You can change it if it is not already in mixed mode. just select mixed mode in SSMS property window, OK out of it, and restart SQL (don't forget to...

    ---------------------------------------------------------------------

  • RE: Finding the best way to export delimited data out of SQL Server

    sounds like a good case for the 'queryout' option in the command line utility BCP. If it is a lot of data it will be faster than SSIS.

    ---------------------------------------------------------------------

  • RE: Plan Cache Flushing Itself

    cjgilson (10/22/2009)


    We don't have Cursor Close on Commit enabled on the DB in question. What effect would that have (other than what can be guessed from reading the name...

    ---------------------------------------------------------------------

  • RE: SharePoint 07 - Check if UPDATE STATISTICS run automatically

    This query will tell you when stats were last updated for a table:

    select 'index name' = i.name,

    'stats date' = stats_date(i.id,i.indid)

    from sysobjects o, sysindexes i

    where o.name = 'g_batch_audit' and o.id =...

    ---------------------------------------------------------------------

  • RE: strange behaviour of databases

    are the stats up to date? indexes fragmented.?do the queries return the same amount of data?

    check to see if the query plans are the same on the two databases.

    ---------------------------------------------------------------------

  • RE: Restoring Differential Backup Error

    If you can get the differential backup taken, copied and restored in a time that gives an acceptable outage, stick with it. If you want to reduce outage even more,...

    ---------------------------------------------------------------------

Viewing 15 posts - 3,256 through 3,270 (of 4,745 total)