SELECT
t.NAME AS TableName,
i.name as indexName,
p.[Rows],
sum(a.total_pages) as TotalPages,
sum(a.used_pages) as UsedPages,
sum(a.data_pages) as DataPages,
(sum(a.total_pages) * 8) / 1024 as TotalSpaceMB,
(sum(a.used_pages) * 8) / 1024 as UsedSpaceMB,
(sum(a.data_pages) * 8) / 1024 as DataSpaceMB
FROM
sys.tables t
INNER JOIN
sys.indexes i ON t.OBJECT_ID = i.object_id
INNER JOIN
sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id
INNER JOIN
sys.allocation_units a ON p.partition_id = a.container_id
WHERE
t.NAME NOT LIKE 'dt%' AND
i.OBJECT_ID > 255 AND
i.index_id <= 1
GROUP BY
t.NAME, i.object_id, i.index_id, i.name, p.[Rows]
ORDER BY
object_name(i.object_id)
To clear Cookies
1.Open IE, Go to Tools -> Internet options
2.Under Browsing History, Click Delete.
3. In the next pop-up window, Ensure Coockies check box is checked and click on Delete.
To clear Cache
1. Open IE, Press F12, then Ctrl + R
2.A pop-up "Are you sure you want to clear browser cache" pops up
กรอกตามนี้ได้เลย
<p>© Copyright 2000-
<script language="JavaScript" type="text/javascript">
now = new Date
theYear=now.getYear()
if (theYear < 1900)
theYear=theYear+1900
document.write(theYear)
</script>
Logical Things, Inc. All rights reserved. Version 4.01g</p>
Source :
Link
นานๆ จะต้องทำรูปให้มีขอบมนๆ สะที แต่ทำใน Photoshop ด้วย มีสิทธิ์ลืมเป็นธรรมดา
ปัญหาที่พบบ่อยสำหรับผู้ดูแลฐานข้อมูล อาจจะเป็นการใช้งานบัฟเฟอร์ที่เยอะเกินไป แต่ไม่ได้ถูก Clear ทิ้งนี้สิ ! ลองมาดู command แบบไม่ต้อง Restart Service หรือ Server กันดีกว่า
DBCC FREEPROCCACHEGODBCC DROPCLEANBUFFERSgoDBCC FREESYSTEMCACHE ('ALL')GODBCC FREESESSIONCACHEGODBCC SHRINKFILE (TEMPDEV,1024)GO
Source : Kalyan Kumar Akula's Blog
ครั้งแรกในประเทศไทย!!! เมื่อน้อง ๆ บัณฑิตใหม่ จะมีที่ปรึกษามืออาชีพส่วนตัว กับกิจกรรม "กะเทาะเปลือก เด็กจบใหม่ ค้นพบศักยภาพที่ใช่ ได้งานที่ชอบ" ฟรีไม่มีค่าใช้จ่ายใด ๆ ทั้งสิ้น
ที่มา : www.adecco.co.th
รายละเอียดเพิ่มเติมคลิกได้ที่ http://www.adecco.co.th/activity/2013/way2work/index.aspx
มีเหตุให้ต้อง Config เจ้า IIS7 อีกแล้ว ติดตั้ง Web Service Extension แต่เอ๊ะ!! หาไม่เจอใน IIS 7
จ้างให้ก็หาไม่เจอ T_T เนื่่องจากใน IIS7 นั้น เค้าเรียกชื่อใหม่ว่า '"ISAPI and CGI Restrictions"
In IIS6, we had a separate node in the left pane to add/view/delete "Web Services Extensions". Here in IIS7 manager, it is presented as the "ISAPI and CGI Restrictions" and you can find this on the global level Features view:
- Click on the Computer name in the left pane (root node in the tree)
- In the Features view, select "ISAPI and CGI Restrictions"
- You will find the list of extensions and their status.
Also, if you wonder where is the option to allow all Unknown ISAPI / CGI which was there earlier in IIS6, just right click and select "Edit Feature Settings..." or select the same from the "Actions" pane. Below are the screenshots:
CREDIT URL : Rakki Muthukumar