Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL SERVERでは、特定のデータベーステーブルが消費するディスク容量を知る必要があります。調べる方法はありますか?
このクエリを使用できます:
EXEC sp_spaceused tableName
bash では、標準 (1) およびエラー (2) の出力を次のように再ルーティングして破棄できます。
>/dev/null 2>&1
しかし、次の例では何かが異なります。
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<