This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| iptables -I INPUT -p tcp --dport 1521 -j ACCEPT | |
| iptables -I INPUT -p tcp --dport 1522 -j ACCEPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=utf-8 | |
| import os | |
| for name in os.listdir ( '.' ) : | |
| if '.' not in name : | |
| for dir , subDirs , files in os.walk ( name ) : | |
| for file in files : | |
| print file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select Schemaname into v_ObjectType | |
| from v$session | |
| where audsid = TO_NUMBER( sys_context('userenv','sessionid') ) | |
| ; |
NewerOlder