Forum Replies Created

Viewing 15 posts - 136 through 150 (of 254 total)

  • RE: Should I use Data Replication to perform this task??

    since the tables have different structures I doubt if replication will work. You could dig into the sp_MSinsert/update/delete stored proc generated by the replication wizard and mess with them but...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Row count

    Please keep in mind that there is no specific order in which SQL stores data in the table. Farrell's solution will work if you insert all the rows manyally. You...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Dropping articles in a publication

    you should be able to drop the articles from subscriton. try this:

    exec sp_dropsubscription @publication = 'pub_name'

    , @article = 'Categories'...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Query ok on server - not working on another

    based on what I understand you are trying to set the evox_id of nimages to the value from vehicle_tmp? If so perhaps something like this?

    UPDATE ni

    SET ni.evox_id = v.evox_id

    FROM

    nimages...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Query ok on server - not working on another

    you dont "SET" , "IN". You set a value WHERE the ID is IN a given a list of values.

    what exactly are you trying to do?

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Query ok on server - not working on another

    You would need to use IN instead of "=" in yout original query. I would check the result set first before doing the UPDATE.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: easy ide for sql server 2000

    If your DB has a static IP the user can register the DB through his local copy of SQL Server (I think the client tools are free to download). And...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: 3 tasks in a transaction - involve 2 data transfers and a batch job

    You could create a job to do this. and use DTS packages to transfer data or even stored procs depending on the type of transfer - plain or with some...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Is there a way to join this 3 tables

    Here's an article from an article I found:

    SELECT Customers.CustomerId

    FROM customers, orders

    WHERE customers.Customerid *= orders.CustomerId

    AND orders.CustomerId IS NULL

    ORDER BY Orders.CustomerIdI need to see a list of customers who...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Adding Columns

    You can add columns using sp_repladdcolumn, without dropping the replication. check out BOL for more info on syntax.

    Theoretically if you add the column on A, it would be propagated to...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Start SnapShot agent in T-SQL

    I am not sure..but you can always run profiler and see whats being called..

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: What is CV ?

    I think Cover Letter is more like a personalized letter. You have all your skills and experience detailed out in the Resume/CV whatever you want to call it. Its a...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Replication

    Can you rephrase your question as to what you mean by 2 remote servers?

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Only replicating 1 table out of 14

    check if they are enabled for replication. Under Publication properties check the list under Articles tab.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Replication Error Messages

    you can check the replication monitor status for the log reader and distribution agents history.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

Viewing 15 posts - 136 through 150 (of 254 total)