toad not connect to windows 7 64 bit

March 19th, 2011

ปัญหาคือลง Windows 7 Pro 64 bit แล้วไม่สามารถใช้ toad connect Oracle ได้ ทั้งที่ลองเทสผ่าน PL/SQL ผ่าน

Problem:

1
2
3
4
5
6
Cause: 64-bit Microsoft OS's install 32-bit applications into the following location
"C:\Program Files (x86)\..."
rather than the typical location of
 
"C:\Program Files\..."
This causes an existing networking bug to occur where the networking layer is unable to parse program locations that contain parenthesis in the path to the executable which is attempting to connect to Oracle.

Solution:

1
2
3
4
5
6
7
I deinstalled Toad from the following location
C:\Program Files (x86)\Quest Software\Toad for Oracle\
 
and reinstalled it in the following location
C:\Oracle\Quest\Toad 9.1
 
This path doesn't contain any parenthesis so it doesn't cause the existing networking bug.

จากที่เค้าเจอมา เค้าแก้ปัญหาโดยการ Uninstall toad ออก แล้วเอาไปวางไว้ภายใต้ โฟลเดอร์ Oracle

และได้ลองตามที่เค้าทำ ผลปรากฏว่าสามารถใช้งาน Toad บน Windows 7 Pro 64 bit ได้

ที่มา http://www.synergys.ca

เครื่องบินขับไล่ ยาส 39 กริพเพน

February 18th, 2011

เขี้ยวเล็บใหม่ของไทยเราครับ

In Unix, how can I split large files

February 8th, 2011

To split large files into smaller files in Unix, use the split command.
แยกเป็นไฟล์ย่อยให้เล็กลงใน Unix โดยใช้คำสั่ง split

1
split [options] filename prefix

Option
-l linenumber : แบ่งตามจำนวน line
-b bytes : แบ่งตาม size

ตัวอย่าง

1
2
3
1. split -l 500 filename file_
 
2. split -b 40k filename file_

ลองเอาไปใช่กันครับ สำหรับใครที่เจอขนาดไฟล์บน Server ที่ใหญ่มาก ลำบากที่จะเอาลงมาไว้ที่เครื่อง