Viewing 15 posts - 4,006 through 4,020 (of 26,490 total)
Many years ago I worked for a company as a computer operator (paid OT) where you were paid one hour straight time for every 4 hours you wore a pager...
March 31, 2016 at 10:11 am
doasidont (3/31/2016)
March 31, 2016 at 10:08 am
MattieNH (3/31/2016)
March 31, 2016 at 8:37 am
I think this explains the behavior fairly well:
March 30, 2016 at 1:54 pm
That would be an interesting one.
March 30, 2016 at 8:57 am
From what I know about VB.NET and C# (which isn't a lot), VB.NET does things for you behind the scenes that you have to do explicitly in C#. That...
March 30, 2016 at 8:49 am
Still need the DDL for the tables, sample data, and expected results based on the sample data.
March 29, 2016 at 5:03 pm
Just seems a little cleaner:
with ConvertDate as (
select cast('01-' + string as date) DateValue
from (values('Dec-15'),('Jan-16'),('Feb-16')) test_data(string)
)
select datename(month, DateValue) + ' ' + datename(year, DateValue) MonthYear from ConvertDate;
March 29, 2016 at 10:07 am
Simplified my code:
with qTally as (
select
n
from
(values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12))dt(n)
), EOM13 as (
select
CalendarDate = dateadd(second, -1, dateadd(month,datediff(month,0,getdate()) - n, 0))
from
qTally
)
select *...
March 29, 2016 at 7:52 am
alicesql (3/29/2016)
with qTally as (
select
n = row_number() over (order by (select null)) - 1
from
(values (1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))dt(n)
), EOM13 as (
select
CalendarDate = dateadd(second, -1, dateadd(month,datediff(month,0,getdate())...
March 29, 2016 at 7:48 am
drew.allen (3/28/2016)
Lynn Pettis (3/28/2016)
scottcabral (3/28/2016)
works, thanks!It works as long as there aren't two rows of data for the same Download, AccountNum, RootPolicyNum where CurrentStatus = 'Renewed' for both.
I think that...
March 28, 2016 at 4:04 pm
Jeff Moden (3/28/2016)
Lynn Pettis (3/28/2016)
Jeff Moden (3/28/2016)
Tamrak (3/28/2016)
Thank you very much.Do you actually understand HOW it works?
Probably not, but then he hasn't told us how he will be using it...
March 28, 2016 at 3:59 pm
Jeff Moden (3/28/2016)
Tamrak (3/28/2016)
Thank you very much.Do you actually understand HOW it works?
Probably not, but then he hasn't told us how he will be using it either.
March 28, 2016 at 2:54 pm
Looks like an application error to me as well. Check the iMIS documentation.
March 28, 2016 at 2:11 pm
Viewing 15 posts - 4,006 through 4,020 (of 26,490 total)