Kolb’s Experiential Learnng Model:কোলবের এক্সপেরিয়েনশিয়াল লার্নিং মডেল

https://youtu.be/O7kq9kL36t4

Keyboard Shortcuts for Visual Studio

https://youtu.be/qedaBquEChg

key concepts for system design

https://youtu.be/hvIyfbfYUq0

Kentico Hosted Trial Kentico Administrator Backend Overview

https://youtu.be/dV1T4j9_Sxs

Kath Birali Poem (Nazrul Islam)

https://youtu.be/9zPlHqI3UDI

jsf managed bean

https://youtu.be/0TPEQde_TM8

Oracle Dynamic SQL

Oracle Trigger

Click on the images to see them clearly

Example:

Ref: https://docs.oracle.com/cd/B13789_01/server.101/b10759/statements_7004.htm

Oracle Functions

Click on Image to see them clearly

Example:

CREATE FUNCTION get_bal(acc_no IN NUMBER)
RETURN NUMBER
IS acc_bal NUMBER(11,2);
BEGIN
SELECT order_total
INTO acc_bal
FROM orders
WHERE customer_id = acc_no;
RETURN(acc_bal);
END;
/

Ref: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/lnpls/CREATE-FUNCTION-statement.html

Oracle Stored Procedure: Create a simple stored procedure

Ref: https://docs.oracle.com/database/121/LNPLS/create_procedure.htm#LNPLS01373