2017年5月18日星期四

How to kill tomcat process on windows




實用資訊:

1) Go to (Open) Command Prompt (Press Window + R then type cmd Run this).
2) Run following commands
For all listening ports

netstat -aon | find /i "listening"

Apply port filter

netstat -aon |find /i "listening" |find "8080"

Finally with the PID we can run the following command to kill the process

Copy PID from result set

taskkill /F /PID

Ex: taskkill /F /PID 189

Done !!!

2017年5月11日星期四

SQL Server主鍵外來鍵與關聯圖

MS SQL 筆記


幾篇不錯的文章


1.

[SQL Server] 如何快速畫出資料表間的關聯圖



2.



3.