Category Archives: Technology

The benefits of normalization

Accelerates sorting and index creation, because tables are narrower. Allows more clustered indexes, because there are more tables. Indexes tend to be narrower and more compact. Fewer indexes per table, helping UPDATE performance. Fewer NULLs and less redundant data, increasing … Continue reading

Posted in Technology | Tagged | Leave a comment

Windows 7 FPP licensing

สิทธิในการใช้งานของ FPP (Full Package Product) สิทธิในการใช้งานเวอร์ชั่นเก่า (Downgrade Right) ไม่ได้รับสิทธิในการใช้งานเวอร์ชั่นเก่าได้ ยกเว้น Microsoft Windows Server 2003 ไม่สามารถใช้งานข้ามภาษา สามารถโอนย้ายข้ามเครื่องได้ คุณลักษณะของสิทธิการใช้งานประเภทกล่อง สินค้าจำหน่ายแบบกล่องมีจำหน่ายตามร้านค้าปลีกทั่วไปและมีราคาสำหรับ ภาคการศึกษา เหมาะสำหรับลูกค้าปลีกหรือองค์กรที่มีการใช้ซอฟท์แวร์น้อยกว่า 5 ลิขสิทธิ์ ควรเก็บชุดผลิตภัณฑ์เพื่อเป็นหลักฐานยืนยันลิขสิทธิ์ บรรจุกล่อง ห่อด้วยพลาสติกใส ต้องเปิดใช้งานผ่านทางเว็บหรือทางโทรศัพท์ สำหรับผลิตภัณฑ์ Office 2007, Windows Vista, Windows Server® และ Windows Small Business Server Ref: http://www.microsoft.com/thailand/Licensing/fpp.aspx

Posted in Technology | Tagged | Leave a comment

Blackberry Torch review

ว้าว นี่คือ BlackBerry ที่ดีที่สุดตั้งแต่เคยมีมา(อีกแล้ว!) แต่มันอาจจะดีไม่พอ! http://gizmodo.com/5604747/blackberry-torch-review If you don’t already own a BlackBerry, you will not want this phone. And if you do, you still might not want it, even if it may very well be the “best BlackBerry ever.” … Continue reading

Posted in Technology | Tagged | Leave a comment

Add new line in a query (MSSQL)

use char(13) + char(10) in sql statement to insert new line. Insert into <table name> (id,data) VALUES (’1′,’test’ + char(13) + char(10) + ‘line’);

Posted in Technology | Tagged | Leave a comment

foreach in javascript

PHP foreach($array as $ar){ echo $ar; } JavaScript for (var i in array){ document.write(array[i]) }

Posted in Technology | Tagged , | Leave a comment