Forum Replies Created

Viewing 15 posts - 31 through 45 (of 76 total)

  • RE: SQL Replication - restricting deletes

    Hello again , as posted in the past I bought SQL Server 2000 Transactional and Snapshot Replication by Hilary Cotter ISBN 0-9749736-0-2. I found it a brilliant...

  • RE: SQL Replication - restricting deletes

    Hi Ian, First of sincere all apologies in relation to Homebrew01. When I am busy I reply to this newsgroup sometimes in a hurry !! Apologies once again.

    Our current...

  • RE: SQL Replication - restricting deletes

    Hi Addict, indeed everything you say is correct. However in our case we run a service ( not SQL Server replication ) which selects from a production database and inserts...

  • RE: Moving Snapshot files

    Hi are you replicating between 2 boxes, ie is the distribution database on the publisher ( you do not use a central distributor ). Also you can specify where to place...

  • RE: SQL Replication - restricting deletes

    Hi, we have a similar setup here. I scripted our replication setup and set @del_cmd = N'NONE'. Similar if you enter NONE in the commands Tab for deletes it should work....

  • RE: Stop SQL Server sending successful DB Maintenance Report to Admin

    Hi, The maintenance plans ultimately create a job in SQL Server agent. First of all go to the Reporting Tab for the maintenance plan for the transaction log backup and...

  • RE: Listing database size data

    Hi, I'll certainly test this against one our servers. Thanks a million and I'll update the thread later with how I got on. Thanks again, Derek

  • RE: Optimization job failed

    Hi, open Query Analyser and try this and see how you get on. Rgds Derek

    DECLARE @InstallPath NVARCHAR(128),

     @DatabaseName NVARCHAR(128),

     @parms   NVARCHAR(256),

     @Report   NVARCHAR(128),

     @returncode  INT,

     @cmd   NVARCHAR(4000)

     

    SET @DatabaseName = 'YourDataBase'

    SET @Report = 'Where you want to put the output'

     SELECT @parms =

      '-D '...

  • RE: Listing database size data

    Hi here is an extract of what I use. I still need to amend it to report available space. Hope it's of use. Any suggestion most welcome etc and I...

  • RE: question re: DBA skills for SQL 2000 vs. SQL 2005

    Hi, I am the dba for a large site, clustered SQL etc, etc. We don't intend moving to SQL 2005 until may next year or later. I get a little...

  • RE: DB in ''''Suspect'''' state

    Ah your very welcome. I've got lots of help from people on this forum. Even on this thread the tip from veteran was great. Best of luck in the future...

  • RE: DB in ''''Suspect'''' state

    Hi, below is the T-SQL I run to resync logins. You need to run it against each user database as required etc. In this case your suspect database. Hope it...

  • RE: DB in ''''Suspect'''' state

    Hi, this works for me when replacing the database.

    -- Get locations of existing mdf and ldf

    use <database>

    select * from sysfiles

    GO

    -- Get LOGICAL and PHYSICAL names from a .BAK file.

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

    use...

  • RE: DB in ''''Suspect'''' state

    I would agree with Prakash, despite my comments on DBCC CHECKDB. Rgds Derek

  • RE: Guideline on desigining database on Primary and secondary files

    Hi, I find SQL Server Query and Performance Tuning Distilled by Sajal Dam a very good resource. isbn 1-59059-421-5. Rgds Derek.

Viewing 15 posts - 31 through 45 (of 76 total)