Viewing 5 posts - 1 through 5 (of 5 total)
resolved with the below query
USE [database];
Go
sp_change_users_login @Action= 'update_one', @UserNamePattern=,
@LoginName=[loginname];
GO
December 11, 2014 at 1:21 am
I downloaded the database of mysql from the another server and then I made a linked server off,
what I see now is that it works so my problem is that...
May 15, 2013 at 11:47 am
Yes I can
And when I run the below query this works also,
update dt
set dt.quantity =a.as_qtesto-a.as_qteres
from openquery(mysqlapp,'select * from product')as dt
inner join TRACTOV15.dbo.f_artstock as a on
dt.model = a.ar_ref collate database_default
where...
May 15, 2013 at 6:53 am
I found it, now it works,
update tabel3
set tabel3.price = dt.ac_prixVen
from openquery (mysqlapp, 'select * from product_special') as tabel3
inner join (select Ar_ref, Ac_prixVen, AC_categorie,product_id, price
from openquery (mysqlapp, 'select * from...
May 14, 2013 at 2:27 am
Dear sir,
I am new on mssql (now a little of it) and I saw your post, can you tell me how I can create one linkedserver on sql server 2005...
February 2, 2013 at 2:51 am
Viewing 5 posts - 1 through 5 (of 5 total)