Forum Replies Created

Viewing 15 posts - 46 through 60 (of 67 total)

  • RE: Adding new table to the existinng publication

    Oops, I run bi-directional replication (both servers publish/subscribe to each other), so I assumed you did too even though you didn't say as such.

    If you just go one direction you...

  • RE: Transactional Replication with additional column in Destination Table

    Why not add the additional columns to the table after allowing the snapshot to create/populate it?

  • RE: Performace Issue with replication on Sql 2005

    You can change the schedule for any of the replication agents, but I don't know what the side affects are of only doing cleanup during evening hours (e.g. letting the...

  • RE: Upgrading subscription server

    Does the server have static IP? If so it may be simplest to just add a value in your hosts file (%windir%\system32\drivers\etc\hosts) that points the new server name to the...

  • RE: Adding new table to the existinng publication

    Probably where you are encountering issues is the @sync_type of sp_addsubscription. You want this to be 'replication support only' if the table and data are already identical on both servers...

  • RE: Don''t Upgrade to SQL Server 2005

    I would not plan against the targetted RTM time frame from 2008. Not only is this date likely to slip (based only on the fact that all RTM dates are),...

  • RE: The June Energy Update

    I can speak from personal experience that Microsoft has major parking issues at the moment. They already make huge efforts to encourage commutes other than single occupant vehicles, but the...

  • RE: A Broken Quorum and Protecting the Witness

    About a month ago we found ourselves wanting better availability, preferably with better scalability as well. As you may guess however, the machine & software budget is limited.

  • RE: The T-SQL Quiz

    I think there are some nicer solutions here than mine, but I went with a dumb cte approach that seems to work decent. I was surprised to see how many...

  • RE: Not In v Not Equal

    I think that execution time is only one piece of the puzzle. For my needs (back end to web server), if an SP executes in .1 seconds I'm typically in...

  • RE: New Column Updates

    Haven't tried it, but couldn't you just use a ranking function over ordering by the clustered index key to get a pseudo identity column? I can't think of any drawback...

  • RE: Indexes - Newbie

    I'll add this - you can have only one clustered index on a table because that index causes the entire data of the table to essentially become an index.

    You can...

  • RE: Advanced XML Processing

    You can just cast the nvarchar column to xml, but this obviously incurs the overhead of parsing the content and would error out if the column contains invalid xml.

    use tempdb;

    create...

  • RE: Question of the Day for 20 Apr 2007

    Hugo,

    It sounds like you have the luxury of getting to define your own database schema. In the small company that I work for, the database guy (yours truly) has to...

  • RE: Question of the Day for 20 Apr 2007

    I'm trying to visualize a life of bitmasks without bitwise operators. I just had to disable bit 1 on a bunch of rows, and then later reenable bit 1. How...

Viewing 15 posts - 46 through 60 (of 67 total)