This shows you the differences between two versions of the page.
public [2013/12/09 11:47] ivan |
public [2016/05/31 23:03] (current) ivan |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Some useful things good to know ====== | ====== Some useful things good to know ====== | ||
+ | |||
+ | ===== net notes ===== | ||
+ | |||
+ | Some interesting notes about useful applications | ||
+ | |||
+ | [[public:netnotes|net notes section]] | ||
===== git ===== | ===== git ===== | ||
Line 30: | Line 36: | ||
=== DB21034E: Set Integrity Pending No Access state === | === DB21034E: Set Integrity Pending No Access state === | ||
- | db2 connect to <db name> \\ | + | <code> |
- | for i in $(db2 connect to <db name> >/dev/null 2>&1 ; db2 SELECT tabname,status,const_checked FROM syscat.tables WHERE status='C' | grep "YYYY" | cut -f 1 -d " " ; db2 terminate >/dev/null 2>&1) ; do db2 set integrity for $i immediate checked ; done \\ | + | db2 connect to <db name> |
+ | for i in $(db2 connect to <db name> >/dev/null 2>&1 ; db2 "SELECT tabname,status,const_checked FROM syscat.tables WHERE status='C'" | grep "YYYY" | cut -f 1 -d " " ; db2 terminate >/dev/null 2>&1) ; do db2 set integrity for $i immediate checked ; done | ||
db2 terminate | db2 terminate | ||
+ | </code> | ||
+ | |||
+ | ===== SonicWall Mobile Connect ===== | ||
+ | |||
+ | Experienced problem: \\ | ||
+ | Connection to SSL VPN is interrupted immediately after login. | ||
+ | VPN client alerts later about disconnect. | ||
+ | |||
+ | Error message in SonicWall log: \\ | ||
+ | PPP message: LCP: protocol reject, protocol = 0x80FD | ||
+ | |||
+ | Solution: \\ | ||
+ | In Client Default Device Profile you need to disable Network Address IP V6. | ||