Tag Archives: DD

Daily Dividend Report: EVER, RECN, DD, TRI, NYX

By MarketNewsVideo Everbank Financial Corporation (EVER) announced its quarterly dividend of 3 cents per share, an increase of about 50% over its prior dividend in May of 2 cents. Another company increasing their dividend was Resources Connection (RECN) with a quarterly dividend of 7 cents per share, an increase of about 17% over its prior dividend in May of 6 cents. …read more

Source: FULL ARTICLE at Forbes Markets

Help with touch: bad time specification

By N1a_Raider

Here is the part of the script: I have modified the file name.:)

SSFILE=${My_HOME_DIR}/log/my_file_ss.log
export MM=`date ‘+%m’`
export DD=`date ‘+%d’`
export HH=`date ‘+%H’`
export MIN=`date ‘+%M’`
export HOURAGO=`echo ${HH} -1 |bc `
echo $HOURAGO
export TTIME=${MM}${DD}${HOURAGO}00
echo $TTIME
touch -t ${TTIME} ${SSFILE}
export MIN=`date ‘+%M’`
export HOURAGO=`echo ${HH} -1 |bc `
echo $HOURAGO
export TTIME=${MM}${DD}${HOURAGO}00
echo $TTIME
touch -t ${TTIME} ${SSFILE}

I get this message in error log file: touch: bad time specification
I have solaris 10 and this is .ksh file.

Can anyone tell me what is wrong with this commands?

…read more

Source: FULL ARTICLE at The UNIX and Linux Forums

Disney and the Devil: Together at Last

By Tim Beyers, The Motley Fool

Source: Marvel database at Wikia.

How will Disney depict Daredevil? The comics contain dozens of rich storylines that could inform a script, but knowing Hollywood, a reboot seems most likely. For now, Feige will only confirm that Disney owns the rights, which is a step in the right direction given history.

Big parts of the Marvel Universe

Filed under:

Slowly, Walt Disney is reuniting Marvel heroes under one roof. The latest to rejoin? Daredevil, a blind vigilante whose other senses are enhanced to a superhuman degree. Ben Affleck played the title character in a 2003 feature film that failed to meet heightened expectations.

Newsarama confirmed the shift in an interview with Marvel Studios President of Production Kevin Feige earlier this week.

Efforts to reboot the franchise in later years failed for unspecified reasons. Finally, in October, News Corp.‘s 21st Century Fox returned the rights to Marvel Studios when a deal with would-be director Joe Carnahan fell through.

Here’s a closer look at what might have been:

Sources: Joe Carnahan, YouTube.

Now Disney is in control, and that’s good news for shareholders who’ve seen what Marvel can do when it has creative control of its own properties. I’d love to see Carnahan make a noir film starring Daredevil — something reminiscent of how writer-artist Frank Miller reinvented the character in the 1980s.

Miller gave DD a sharper edge. He also introduced the assassin Elektra as a love interest, subsequently played by Jennifer Garner in the 2003 film and a 2005 spinoff that bombed at the box office. The failures apparently made Fox executives gun-shy despite the source material.

Source: Marvel database at Wikia.

How will Disney depict Daredevil? The comics contain dozens of rich storylines that could inform a script, but knowing Hollywood, a reboot seems most likely. For now, Feige will only confirm that Disney owns the rights, which is a step in the right direction given history.

Big parts of the Marvel Universe remain in outside hands. For example, Fox still has comprehensive film rights to the mutant heroes known as the X-Men as well as the Fantastic Four, a superhero family that’s seen action twice on the big screen in recent years while helping to inspire the Pixar Studios hit The Incredibles.

Sony , meanwhile, controls the rights to live-action Spider-Man films. The Amazing Spider-Man 2 is filming now and due in U.S. theaters on May 2, 2014.

Daredevil isn’t big enough to fill the void left by the X-Men, Spidey, and the FF. But then again, neither was Iron Man in 2008. Robert Downey Jr. has since made that character bigger than both Batman and Superman when it comes to big-screen earnings.

Does Disney have what it takes to transform Daredevil similarly? Finally, we’ll get to find out.

With great power comes great profits
Even without Marvel at full strength, Disney shows all the signs of a powerhouse stock worth buying and holding forever. Want more ideas? These three Dow stocks, like Disney, pay sustainable dividends and are well positioned for the long haul. Click here to see why our analysts say to buy now – their research is 100% free so get your copy today.

The article Disney and the Devil: Together at Last originally appeared on Fool.com.

Source: FULL ARTICLE at DailyFinance

SQL date for last seven days

By zozoo

Hi team,

i have a condition in sql where we have as below

Code:

select sum(column_A)
from temp_t
where date >= tdb_datestr_to_epoch('21/11/1995 10:00:00','dd/mm/yyyy hh24:mi:ss')
and date < tdb_datestr_to_epoch('22/11/1995 10:00:00','dd/mm/yyyy hh24:mi:ss')


the problems is i have to do the above for 7 days repeatedly so im trying to automated this

the ones in orange are DD from day filed and they should be consecutive

i tried this

Code:

DECLARE
i number(1);
BEGIN
i:=7;
while (i > 0 )
LOOP
DBMS_OUTPUT.put_line (TO_CHAR (SYSDATE-i,'DD/MM/YYYY'));
i:= i -1;
END LOOP;
END;


so now how to input these in to the the above sql query i.e in > condition it should if its 12/01/2013 then in < condition the date should be 13/01/2013[/CODE][/COLOR]

i have knowledge in shell,awk as well

Thanks all

happy to learn new things

…read more

Source: FULL ARTICLE at The UNIX and Linux Forums

Validate input files daily

By katakamvivek

We have a job which we need to run on daily bases, before loading data in a table we need to validate whether the input file is received or not.Daily client will place the files in a particular path.Below files which I need to process for 04/01/2013(Load date).src_sps_d_Call_Center_Reporting_20130329(yyyymmdd) _01.dat src_sps_d_Call_Center_Trancation _20130329(yyyymmdd )_01.dat src_sps_d_Payment_transaction _Reporting_20130329(yyyymmdd )_01.dat src_sps_d_Call_Loan_ Reporting_20130329(yyyymmdd )_01.dat I have one ss_calendar file which contains whether load date will contain file or not.Servicer Load date file will come or notSPS, 3/29/20013 NSPS 4/1/2013 YOcwn 3/29/2013 NOcwn 4/1/2013, NAnd I have another file ss_Load_Proc which contains information about which load day should contain which file.Servicer Load day inputfilesSPS Tuesday Monday and FridaySPS Wednesday TuesdaySPS Thursday WednesdaySPS Friday ThursdayOCWN Monday MondaySuppose if I am loading data for 04/01/2013 date ,first from SS_Calendar I want to check whether for SPS servicer will file come or not.If the indicator in Y then in ss_Load_Proc file I should check whether days in inputfiles column and DD in Input file are same or not.If day matches then I shouid touch one file.If file is missing then I should drop email to team and update the name(date) in Missing.TXt file.Please tell the procedure to write shell script.

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums

Need help to eliminate the records

By bbc17484

Hi All,

Please help me how to remove the records from the file if it is having more number of fields than the required one, before loading into stage

Here is the sample records. File is space delimited one

HTML Code:

chandu 1121324 CC ( 2 spaces)
chandu balu 434657 DD (3 spaces) -- failing due to extra space between firstname and last name, its treating it as 4 attributes


Staging table having only 3 attributes.

Thanks,
Chandu

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums

Summary report csv file

By inMyZone35

Hello,

I have 2 csv files with 4 columns each.

file1.csv
A, AA, AAA, AAAA
B, BB, BBB, BBBB

file2.csv
C, CC, CCC, CCCC
D, DD, DDD, DDDD

I would like to use shell commands (sed, awk…) to copy the content of the 2 files (2×4 columns) into a final csv template file.

Expected result:
final.csv
A, AA, AAA, AAAA, C, CC, CCC, CCCC
B, BB, BBB, BBBB, D, DD, DDD, DDDD

Thank you guys for your help.

Source: FULL ARTICLE at The UNIX and Linux Forums

See How DuPont Ranks Among Analysts' Top Dow 30 Picks

By DividendChannel.com A study of analyst recommendations at the major brokerages shows that DuPont (NYSE: DD) is the #20 broker pick, on average, out of the 30 stocks making up the Dow Jones Industrial Average, according to ETF Channel. Within the broader S&P 500, when components were ranked in terms of analyst favorites, DD claims the #290 spot.
Source: FULL ARTICLE at Forbes Markets

awk Help: Horizontal to Veretical print with pattern match

By rveri

Hi AWK Experts,

Following is the data :

Code:

BRH113 DD AA HH CA DD DD AA HH BRH091 A4 A6 AH H7 67 HH J8 9J BRH0991 AA D8 C23 V5 H7 BR2 BRH991 AA HH GG5 BT0 JJ0


I want the output to be alligned with the pattern matching “BRH” inthe line.

The output should be look like:
A] Output:

Code:

BRH113 DD AA HH CA DD DD AA HH
BRH091 A4 A6 AH H7 67 HH J8 9J
BRH0991 AA D8 C23 V5 H7 BR2
BRH991 AA HH GG5 BT0 JJ0


B] Output:

Code:

BRH113 BRH091 BRH0991 BRH991
DD AA AA AA
AA A6 D8 HH
HH AH C23 CG5
CA H7 V5 BTO
DD 67 H7 JJO
DD HH BR2
AA J8
HH 9J


Can we do it with awk, or other unix tool,

Thanks a lot,
Reveri.

Source: FULL ARTICLE at The UNIX and Linux Forums