摘要:
课程大纲Shell编程语法Shell编程调试Shell编程实例 阅读全文
摘要:
Autonomous TransactionsAutonomous Transaction(AT),通过PRAGMA AUTONOMOUS_TRANSACTION;指明当前的事务操作只针对自身有效,不涉及到其他事务.Trapping User-Defined ExceptionsExamples:User-Defined ExceptionDECLARE v_deptno NUMBER := 500; v_name VARCHAR2(20) := 'Testing'; e_invalid_department EXCEPTION;BEGIN ... 阅读全文
摘要:
Exception TypesPredefined Oracle Server --Implicitly raisedNon-predefined Oracle Server --Implicitly raisedUser-defined --Explicitly raisedSyntax to Trap ExceptionsSyntaxEXCEPTION WHEN exception1 [OR exception2...] THEN statement1; statemen... 阅读全文
摘要:
ObjectivesAfter completing this lesson,you should be able to do the following:Define PL/SQL execeptionsRecognize unhandled exceptionsList and use different types of PL/SQL execption handlersTrap unanticipated errors.Describe the effect of exception propagation in nested blocksCustomize PL/SQL except 阅读全文
摘要:
AgendaAfter completing this training,you should be able to do the following:How to install OpenSSQLThe basic of encryption/decryptionIntroduction of SSLHow to configure Apache with SSL.Configuration of CA on server side and client side.SSL attack and common implementaion mistakes.Lab EnvironmentInst 阅读全文