Goto File -> Page Setup -> goto sheet tab -> In Print Titles section, Rows to repeat at top, enter the range of rows you would like to repeat : $1:$1
http://www.mrexcel.com/tip129.shtml
Thursday, February 18, 2010
Wednesday, February 3, 2010
SQL Not in vs Join example
Obviously SQL join is more efficient than the not in clause. Here is an example of both.
Most inefficient Not in query :
select count(*)
from
wire_instr w
where
w.short_code
not in (select short_code
from nostro_accts)
Slightly better Not Exists query :
select count(*) from
wire_instr w
where not exists(
select 1
from nostro_accts n where
n.short_code=w.short_code)
Finally the Join query :
Join infact creates a new table which
select w.short_code as wshort,n.short_code as nshort from wire_instr w
left outer join
nostro_accts n
on n.short_code=w.short_code
where n.short_code=null
Enjoy
-Sunny
Most inefficient Not in query :
select count(*)
from
wire_instr w
where
w.short_code
not in (select short_code
from nostro_accts)
Slightly better Not Exists query :
select count(*) from
wire_instr w
where not exists(
select 1
from nostro_accts n where
n.short_code=w.short_code)
Finally the Join query :
Join infact creates a new table which
select w.short_code as wshort,n.short_code as nshort from wire_instr w
left outer join
nostro_accts n
on n.short_code=w.short_code
where n.short_code=null
Enjoy
-Sunny
Friday, January 29, 2010
Replace with new line in eclipse
Eclipse VM Args
Multiple VM args can be entered to eclipse by separating them with a space. See the picture below :

2) Issue : Eclipse doesnot allow spaces in vm arguments.
You can force eclipse to take a space by wrapping the value of your argument in double quotes.
-Dpropsfile="H:/user data/eclipse/workspace/wires/etc/dev.config.props"
Cheers,
Sonu

2) Issue : Eclipse doesnot allow spaces in vm arguments.
You can force eclipse to take a space by wrapping the value of your argument in double quotes.
-Dpropsfile="H:/user data/eclipse/workspace/wires/etc/dev.config.props"
Cheers,
Sonu
Friday, January 15, 2010
Friday, January 8, 2010
Perl ternary operator
I was trying to use an if else stmt in perl inside a join. And it was throwing compilation errors. In this case you can use a ternary operator to serve as if else :
ex :
($Bond{$_}{CFAC} ==-1 ?”N/A” : $Bond{$_}{CFAC})
ex :
($Bond{$_}{CFAC} ==-1 ?”N/A” : $Bond{$_}{CFAC})
sybase convert float to char
Sybase function to convert float to char
convert(char(10),isnull(convert(char(18), pi.factor),'N/A')) as factor
convert(char(10),isnull(convert(char(18), pi.factor),'N/A')) as factor
Subscribe to:
Posts (Atom)
