Viewing 15 posts - 1 through 15 (of 34 total)
OMG... you are awesome !it's working perfectly but it's hard to understand based on my knowledge level.
thanks Mark!
October 23, 2019 at 3:39 pm
thanks tim,
what i want to design is even before going to data flow i want to perform all the checks and based on the condition i have all the follow...
October 14, 2019 at 3:52 pm
Hi guru,
the volume should be float value and it's derived from query column{select count(*) from ..}
e.g in the first row if you excute the select query from...
September 24, 2018 at 11:08 am
Im thinking add seq number to the table and using seq to update each row in the table but am not sure. any suggestion?
...
September 24, 2018 at 8:07 am
Thanks Thom &John,
You guys idea is valid. thanks a lot now i can able to slove the problem.
Again Thanks a lot!
Austin
April 3, 2017 at 12:19 pm
hi,
the first businessday it can be any weekday . eg 8-1-2017 is tuesday
April 3, 2017 at 8:16 am
Thom,
iI already have a holiday table.
e.g holiday date
newyear 1-1-2017
.. ...
April 3, 2017 at 8:13 am
hi john ,
you may misunderstood my point, i was saying i want to run all the sps(sp1 &sp2&sp3) on first bussiness day.
and here the business day not...
April 3, 2017 at 8:09 am
ho Thom,
yes when i said business day means except holidays.
April 3, 2017 at 8:07 am
Thanks John, it works and it's more easier!! You are awesome
select a.*,
avg(salary) over(partition by dept) as dept_avg,
avg(salary) over(partition by ...
March 27, 2017 at 9:23 am
for the second one
-
select a.*,
(select avg(salary) from emp)as com_avg,
b.Dept_avg
from emp a
join (select...
March 27, 2017 at 8:58 am
I guess u can try while loop instead of cursor.
March 27, 2017 at 8:51 am
thanks john,
1) first question is resolved
delete e
from(
select *,seq =ROW_NUMBER() over(partition by code,state order by date desc) from #state
...
March 27, 2017 at 8:44 am
implement this logic*
January 14, 2016 at 8:01 am
That's my question.
how many days of that week were in each month? How to write a code to implement this code
January 14, 2016 at 8:00 am
Viewing 15 posts - 1 through 15 (of 34 total)