Viewing 15 posts - 136 through 150 (of 253 total)
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...
July 28, 2006 at 12:52 pm
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...
July 26, 2006 at 4:12 pm
you should be able to drop the articles from subscriton. try this:
exec sp_dropsubscription @publication = 'pub_name'
, @article =...
July 26, 2006 at 3:55 pm
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...
July 25, 2006 at 5:11 pm
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?
July 25, 2006 at 5:07 pm
You would need to use IN instead of "=" in yout original query. I would check the result set first before doing the UPDATE.
July 25, 2006 at 4:51 pm
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...
July 25, 2006 at 4:46 pm
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...
July 25, 2006 at 4:40 pm
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...
July 12, 2006 at 12:14 pm
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...
July 12, 2006 at 12:02 pm
I am not sure..but you can always run profiler and see whats being called..
July 12, 2006 at 11:59 am
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...
July 10, 2006 at 3:47 pm
Can you rephrase your question as to what you mean by 2 remote servers?
July 10, 2006 at 10:58 am
check if they are enabled for replication. Under Publication properties check the list under Articles tab.
July 10, 2006 at 10:57 am
you can check the replication monitor status for the log reader and distribution agents history.
July 7, 2006 at 4:05 pm
Viewing 15 posts - 136 through 150 (of 253 total)