2024年1月30日 星期二

oracle 日期常用函數 (SYSDATE、日期格式)

 SYSDATE

--◎ 可得到目前系統的時間 

ex.
select sysdate from dual;

sysdate
----------
20-SEP-07

常用之日期格式

kex error : no match for method server host key algo: server [ssh-rsa,ssh-dss]

 解釋錯誤訊息 “[ERROR] could not connect to ssh://172.16.65.210:22 - kex error : no match for method server host key algo: server [ssh-rsa,ssh-dss], client [ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256]” 的含義以及如何解決。

錯誤分析:

  • [ERROR] could not connect to ssh://172.16.65.210:22:表示無法連接到 SSH 伺服器 172.16.65.210 的 22 埠。
  • kex error : no match for method server host key algo:表示金鑰交換(Key Exchange,KEX)階段出現問題,客戶端和伺服器無法就伺服器主機金鑰演算法達成一致。
  • server [ssh-rsa,ssh-dss]:表示伺服器僅支援 ssh-rsa 和 ssh-dss 演算法。
  • client [ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256]:表示客戶端支援的演算法列表,但不包含伺服器支援的 ssh-rsa 和 ssh-dss。

zero-width space

 zero-width space: 就是沒有寬度的空白,字元碼 \u200b , 或是 urlencode = %e2%80%8b

當你從 word , excel ,PDF 複製文字貼到記事本,網頁textbox, 或是 visual studio
有時候會把這個碼也一起貼上,重點是: 你肉眼根本看不出來

分支 ( branch )應用情境筆記

分支 ( branch )應用情境筆記 最近在協助新版控機制導入,匯整一下收集到的分支 ( branch )應用情境