Viewing 8 posts - 91 through 98 (of 98 total)
What is the purpose of this part of the script ?
-- Enable the OLE automation on the server
EXEC sp_configure 'Ole Automation Procedures', 1;
May 19, 2016 at 6:57 am
Yes, I understand that separating the transactions with a GO will make it work, however this is but one part of a larger transaction that I was trying to complete...
February 16, 2016 at 2:32 pm
Don't you need to create a linked server first ?
February 15, 2016 at 8:08 am
OUTSTANDING !!
ALL of this is VERY helpful,
Thank you all
October 12, 2015 at 7:45 am
FOLLOW-Up Question..
Are there any other objects that could be used in this situation?
July 10, 2014 at 8:23 am
Simply looking for alternatives and better performance.
I have gotten myself into a bad habit of only using UNION to avoid duplicates and had quickly brushed that thought away. As...
May 9, 2014 at 8:50 am
OK, I should not have suggested the possibility of using PIVOT for this, I just did not know what to put in the subject line, and maybe this was Not...
May 9, 2014 at 7:41 am
Try this
SELECT CarID, MAX(ColorID) FROM @ColorList GROUP BY CarID
May 6, 2014 at 10:47 am
Viewing 8 posts - 91 through 98 (of 98 total)