Friday, June 17, 2011

Merge dll into exe

1) Download ILMerge
2) Install ILMerge
3) Go to command prompt and type the command

ilmerge.exe /target:winexe /out:combined_exename.exe orig_exe_name.exe orig_dll.dll

Say you have your program ( test.exe) and dll (someDllName.dll) built into c:\temp

"C:\Program Files\Microsoft\ILMerge\ilmerge.exe" /target:winexe /out:"C:\Temp\Combined.exe" "C:\Temp\Test.exe" "C:\Temp\somDllName.dll"

To make things easier, Copy the above 2 lines into a new file and name it combine.bat. Double click the batch file, and it should generate the output for you.

Monday, May 23, 2011

Location of Alert.log and trace files in Oracle 11g

There are 2 options.

From SQLPlus

Show Parameter dump_dest

Using a Query

select * from v$diag_info

Friday, May 20, 2011

Hindu Trinitiy

ஹிந்து மதத்தின் அடிப்படை கடவுள்கள் மொத்தம் முன்று. சுருக்கமாக மும்மூர்த்திகள்

பிரம்மா: இவரின் தொழில் படைப்பது, இதில் உலகம் முதல் உயிர் வாழும் அணைத்து ஜீவன்களும் அடக்கம்

விஷ்ணு: இவரின் தொழில் காப்பது.

சிவன் : இவரின் தொழில் அழிப்பது.

இதில் ஆச்சிரியம் என்னவென்றால், காக்கும் தொழிலும் , அழிக்கும் தொழிலையும் செய்யும் விஷ்ணுவையும், சிவனையும் வணங்கும் மக்கள், படைக்கும் தொழில் செய்யும் பிரம்மாவை வணங்குவது இல்லை

Types of Land defined in Tamil Literature

முன்னுரை:

பள்ளி நாட்களில் விவரம் தெரிந்தோ தெரியாமலோ படித்த தமிழ் இலக்கியங்கள், செய்யுள்கள், ஹிந்து மத கதைகள் பற்றி ஒரு சிறிய தொகுப்பு.

Tamil literature classifies Land types into 5 types.

நம் தமிழ் இலக்கியத்தில் நிலம் ஐவகைகளாய் பகுக்கப்பட்டுள்ளது. அவை:

குறிஞ்சி :  மலையும் மலை சார்ந்த பகுதிகளும்.
முல்லை: காடும் காடு சார்ந்த பகுதிகளும்.
மருதம்: வயலும் வயல் சார்ந்த பகுதிகளும்.
நெய்தல: கடலும் கடல் சார்ந்த பகுதிகளும்.
பாலை: நீரற்ற வற‌ண்ட பகுதி. உதாரணம்  பாலைவனம்

Tuesday, March 29, 2011

Oracle: How to convert LONG to CLOB

It is very simple to convert a LONG column to CLOB.

Create table test( col1 long);

Alter table test modify col1 clob;

That's it.