Forum Replies Created

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

  • RE: how to transfer new table during Replication

    if repl is already setup, u can add a new table if you like via the gui or syntax. Since you are asking, you should do it via the...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Problem in transaction

    NULL will never equal to NULL if you write it like @variable = NULL.

    Write it as @variable IS NULL

    And what's the exact error?

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: sp_send_dbmail error

    is your smtp server setup correctly? does the smtp server allow your ip address to be a relay?

    look up dbmail setup in BOL to see the status of those...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Linked server

    sp_addlinkedserver is the syntax you want to use

    it allows you to query remote servers w/o having to actually connect to it.

    [from serverA]

    exec serverb...sp_who2 active

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Replicating large tables

    haven't tried this myself but would it be possible create multiple publication based on 1 table and use filtering?

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Adding/Dropping Procedures

    he would have to drop all the articles if they are part of one publication, which means, the snapshot will send everything to the subscribers.

    you can always break out your...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Find if a DB is subscribed?

    on the subscriber, you can look under the replication hive and see local subscription. If that's there, then the database that you are replication is being replicated.

    or you can...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Do INSERT triggers fire during MERGE replication?

    you can see what happens during replication via SQL profiler.

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: best way to remove duplicates when no primary key or date present

    you can use the group by statement to find your dupes and based on the group by, write a delete statement to nuke it.

    you can also use the OUTPUT function...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Help with a Complex insert

    padmaja.mantha (4/29/2008)


    The select statement would give me all the records from the import table. I am able to do the bulk insert, but the problem is for just one field,...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: passing variable and value

    figured it out

    Declare @value_list varchar(500)

    , @sql nvarchar(max)

    Set @value_list = '''attribute'', ''catalog_object'''

    set @sql = 'Select count(*) from tranrepl

    Where articleName...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Subscription Setup Issue w/ strange error msg.

    err that means that the snapshot isn't completed yet and that you should wait until it is done.

    also if you are using 'For Replication Only' or whatever mode, snapshot won't...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Data is not getting replicated to Subscriber

    are you using snapshot with your transactional replication?

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: distribution agent

    How many commands are sitting in the queue?

    waiting for the server to response means that the distribution agent is reading the cmd table and preparing those to be replicated. ...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • RE: Error converting data type varchar to bigint

    I had that table with varchar(20) on both servers. I also had other tables, one of them is named 'attribute'.

    when I originally scripted it out, every table had it...

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

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