Viewing 15 posts - 1 through 15 (of 32 total)
Exactly! We're trying to implement a CI process, and what you stated is spot on -- I want to ensure that the branch in source control matches exactly what's deployed. As I...
March 22, 2017 at 10:09 am
starunit (1/10/2017)
As other commentators have noted, statistical results can be manipulated in many ways to fit the desired outcome.
I'd like to add that the 'input' side of the...
January 10, 2017 at 10:30 am
Thanks again for the info and help, all!
November 8, 2016 at 5:58 pm
drew.allen (11/7/2016)
SELECT m.origval, n.comp_val
FROM #mytab m
CROSS APPLY (
SELECT TOP...
November 8, 2016 at 1:46 pm
Luis Cazares (11/7/2016)
create table #mytab (origval varchar(max))
insert #mytab values
('1.2'), --should convert to 1.3
('6.25'), --should...
November 7, 2016 at 12:52 pm
Thank you as well! But grrrr..... now I'm running into a new problem; the data I'm working with is in a varchar(max) column, and I'm getting the error "Operand...
November 7, 2016 at 11:56 am
Wow! Thanks for the quick and helpful reply. The code isn't quite perfect (3.0 returns 3.1, for example), but it gives me a great head start. 🙂
November 7, 2016 at 11:13 am
Interesting info and answers, thanks. This particular API system is from Mulesoft, but there are others. I'm getting the impression this is a "shiny new thing" that many...
September 21, 2016 at 9:29 am
Thank you!! Your sample script was quite helpful, and worked perfectly well. I resolved the problem in my own case when I reset the database owner using the ALTER...
August 11, 2014 at 3:18 pm
Thank you for the quick reply! I found that indeed, the databases had different owners. I changed the owner on one database so that they're in synch, then...
August 11, 2014 at 1:58 pm
Excellent suggestions, thank you! I wasn't aware of the Discard Results option - amazing how there's always more to learn no matter how long you work with something. ...
May 29, 2014 at 12:13 pm
Thanks much for the push in the right direction! I'll have to read up on the gaps and islands stuff - that's perfect. I'll have to turn this into...
April 22, 2014 at 9:39 am
Phil Parkin (9/18/2013)[hrOne fairly standard approach is as follows (note: 'ChangeDate' refers to the maximum of DateCreated and DateModified and is a datetime(2) value):
1) Set @ChangeDate = max(ChangeDate) from your...
September 18, 2013 at 9:47 am
I gave up on this. I think the SMO transfer class (and therefore the SSIS transfer objects task) simply doesn't allow for changing certain object properties. My workaround...
September 17, 2013 at 2:00 pm
aaron.reese (9/16/2013)
September 16, 2013 at 4:03 pm
Viewing 15 posts - 1 through 15 (of 32 total)