Forum: MySQL May 15th, 2008 |
| Replies: 1 Views: 1,618 Finally it worked...
SET @SQL =N'SELECT @CHECK=keyfield FROM OPENQUERY(linkedserver,
''select keyfield from library.table where document=' + @NEXT +''')N'
EXEC sp_executesql @sql, N'@CHECK... |
Forum: MySQL May 14th, 2008 |
| Replies: 1 Views: 1,618 I am reading records from a linked server table, and trying to use the output in the next update statement, not on the linked server. I am assigning it to a declared variable. The file is being... |
Forum: MS SQL Apr 22nd, 2008 |
| Replies: 2 Views: 2,976 I found a microsoft paper explaining to turn on DTC on both servers, it was only on one server. Once I did this setup, I was able to insert data from prod server to dev server. Thanks for the... |
Forum: MS SQL Apr 18th, 2008 |
| Replies: 2 Views: 2,976 I have production data on one server and test data on another. I need to move one record from the production server into the test table on a different server. I setup the production server as a... |