Forum Replies Created

Viewing 15 posts - 946 through 960 (of 1,157 total)

  • RE: Log reader

    I use the Apex one fairly regularly. Works quite well most of the time, but historically, some of older versions were a little buggy. Seems to have stablised...

  • RE: retrieve views containing reference to a specific column

    ^^^^^^^^^

    Old Skool 😀

    SELECT *

    FROM INFORMATION_SCHEMA.VIEW_COLUMN_USAGE

    WHERE COLUMN_NAME = ''

    admittedly, it doesnt cover sp's

    These may be useful

    SELECT *

    FROM INFORMATION_SCHEMA.ROUTINE_COLUMNS

    SELECT *

    FROM INFORMATION_SCHEMA.PARAMETERS

  • RE: On call support experience

    I'm on call right now!

    Nothing can replace experience and documentation of the environment you are working in. Its also essential to have an escalation protocol and list of "points...

  • RE: SQL Replication Question.

    Several factors here. Is the subscriber a complete, replicated copy? Is this merge replication with changes occuring on both sides? Either way the following generally applies.

    Obviously you...

  • RE: Copy accounts to secondary log shipping server

    Its also a good idea to disable the login at the source (if possible) to prevent accidental access there

  • RE: How to add new login to Log Shipping

    george sibbald (5/26/2011)


    if you added the user in the primary database and have restored a log backup post that action on the secondary, it will be there.

    What he said. ...

  • RE: Issues with Merge Replication

    Run this on the Publisher and Subscriber and post the output.

    DBCC SQLPERF(logspace)

    Where are you seeing the error message? SQL Error log? Windows Event log?

  • RE: Replication Articles without Losing Indexes

    FYI, I would generate the scripts for the publication using management studio to get a "template" proc execution with you local publication settings. Use one of these as the...

  • RE: Replication Articles without Losing Indexes

    suri.yalamanchili (5/24/2011)


    Hi ALL,

    I am using transactional replication. When I add articles and then click on generate snapshot now, it adds the new articles to the subscriber. The problem is it...

  • RE: Delete Log files of an online data base

    I suggest you havent read the full post. Logfiles dont contain objects.

    The DBCC command will empty the log and the ALTER statement remove it.

  • RE: Issues with Merge Replication

    Are you looking at the publisher or subscriber? Either can result in this error.

    A subscriber db can have its log file in simple mode.

  • RE: Add column to existing replication

    platzkarl (5/26/2011)


    I have attempted to make the changes in SSMS. I opened the and got nervous when I saw the alert box with the message similar to "This...

  • RE: Add column to existing replication

    if you use the soon to be deprecated sp_repladdcolumn proc it will add the column and propogate this to all subscribers without the need to reinitialise or re-snapshot the table.

    I...

  • RE: Question about 'Replication Support Only' flag

    yes, it will require a new snapshot (new articles only) but post initialisation publication changes get propogated as normal.

  • RE: SQL 2008 R2 on a production Svr

    We have upgraded 50% of our production environment and expect to be 100% upgraded within a few months.

    We're running R2 CU7 without issues. The only critical thing is to...

Viewing 15 posts - 946 through 960 (of 1,157 total)