Forum Replies Created

Viewing 15 posts - 61 through 75 (of 177 total)

  • RE: Transactional Replication Issue

    Sourav (7/15/2009)


    No, no updated are happening at Distributor end!

    I think LeeM was asking about the Subscriber (destination DB).

    Are the data in the replicated tables onthe subscriber side updated ONLY from...

  • RE: Getting wiered error in log shipping configuration

    On your Secondary/Primary Server, run the following

    DELETE FROM msdb.dbo.log_shipping_monitor_secondary

    WHERE secondary_database='YOUR UNWANTED DBNAME'

    DELETE FROM msdb.dbo.log_shipping_monitor_Primary

    WHERE Primary_database='YOUR UNWANTED DBNAME'

  • RE: How to add HTML color tag/code in SQL 2005 HTML Report

    Not sure whether the OP fixed the scripts or not.

    Spent some time today and got the below scripts working.

    The cause of the issue is that FOR XML doesn't handle...

  • RE: How to add HTML color tag/code in SQL 2005 HTML Report

    Try this,

    replace

    td = FreeSpacePct,

    With td = case when FreeSpacePct >10 then '{font color="green"}{b}'+FreeSpacePct

    +'{/b}{/font}' Else '{font color="red"}{b}'+FreeSpacePct

    +'{/b}{/font}' END,

    Editor: Replaced brackets with curly braces.

  • RE: Log shipping job failure

    luckysql.kinda (7/9/2009)


    Anyone can guess the reason of logshipping job failure:

    Procedure or function usp_LogShipping_delete_backup has too many arguments specified. [SQLSTATE 42000] (Error 8144). The step failed.

    I would check the definition...

  • RE: Can not change the password of user SA

    Interesting to read this and I did some testing on this.

    1. I logged in with my Windows Domain login having SYSADMIN, changed sa password and click other logins and could...

  • RE: SQL Server Failover and SQL Server Error Log

    If it is a clustered SQL Server, you'd better manage the failover from the cluster administrator by moving group instead of simply shutting down the SQL service.

  • RE: DB Maintence Plan

    No, it is not a table. It is a view, a view that you can not see from the management studio.

    But if you run the query, it should return the...

  • RE: Admin Database using Encryption

    that's the largest font I've ever seen on the forum. 😀

  • RE: DB Maintence Plan

    Did a profiler when I clicked through the GUI Maintenance plans and got this query which returns what you are looking for:

    SELECT

    s.name AS [Name],

    s.create_date AS [CreateDate],

    s.owner AS [Owner]

    FROM

    msdb.dbo.sysmaintplan_plans AS s

    ORDER...

  • RE: Data Archiving

    One thought on How to query the archived data.

    You can archive the data onto a different server and refer to them in your PROD/LIVE with SYNONYMs.this way, you will...

  • RE: How to check AUTOGROW with Profiler?

    I think I got the following code from this forum and it would retrieve the AUTO GROW info from the default trace.

    Please try this..

    SELECT

    trc_evnt.name

    ,dflt_trc.DatabaseName

    ,dflt_trc.ApplicationName

    ,dflt_trc.TextData

    ,dflt_trc.FileName

    ,dflt_trc.LoginName

    ,dflt_trc.StartTime

    FROM sys.traces T (NOLOCK)...

  • RE: Holidays

    Type in Holiday Table in the upper right Search area on this page, and hit Go. You would get a lot hits.

  • RE: maintaining share point databases

    Open Book On Line, search 'add more data files'.

  • RE: Database Application Problem

    Open a Profiler session on the database side and then run the app

    See what commands are being sent to DB when those duplicates or inacurate results are pulled to the...

Viewing 15 posts - 61 through 75 (of 177 total)