2018年10月31日 星期三

刪除Windows 遠端桌面紀錄

1. >cmd
2. >regedit
3. HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default 



2018年10月25日 星期四

SQL --

How to know Table rows in db?
select o.name, rows
from sysindexes i join sysobjects o on o.id=i.id
where indid < 2 and type='U'
order by rows