Viewing 8 posts - 1 through 8 (of 8 total)
What’s worked really well for our small development team is having a development DBA as a part of the development team. Complex queries, stored procedures, etc are developed by DBA....
January 3, 2014 at 7:51 am
Went about it in a completely different fashion and solved it.
Note, EXEC <stmt> AT far_server didn't yield what was needed. Had to make dynamic sql with OPENQUERY.
December 4, 2013 at 11:15 am
Have you tried:
Update employees
SET ID = e.EXTENDEDID
FROM employees e
WHERE ID <> e.EXTENDEDID
March 15, 2013 at 7:21 am
Did you ever get a resolution for this? I'm having the same issue on the same platform (Windows 7, Visual Studio 2008).
January 31, 2013 at 12:51 pm
Ray,
Using an expression instead of direct input worked. Thanks for the tip!:-)
October 17, 2012 at 3:55 pm
Full solution that worked for me
SELECT
*
FROM
(
SELECT *
...
June 24, 2011 at 11:25 am
Thanks! That's what I needed.
June 24, 2011 at 11:00 am
Thanks! I knew it would be something simple.
UPDATE ADDRESS
SET ADDRESS_STATE_ID = s.STATE_ID
FROM zipcode z
INNER JOIN state_ref s
ON s.STATE_ABBREV =...
May 5, 2011 at 1:04 pm
Viewing 8 posts - 1 through 8 (of 8 total)