
Oracle APPS Integrated SOA Gateway Web Servis Yapımı
Merhaba, Oracle EBS üzerinde servis yayını yapmak için en doğru yöntem Integrated SOA Gateway kullanılmasıdır. Integrated SOA Gateway modülünün DBA’ler tarafından Oracle EBS üzerinde kurulması gerekiyor. Servis yapmak ve yayınlamak için SOA Gateway farklı yöntemler sunmaktadır. Bu örnekte PL/SQL ile…
Redundant If Else
Hello, In this tutorial, I am going to highlight a tiny but important detail about using redundant IF ELSE control. Using unnecessary if else controls would probably affect performance of the program. We are going to write two versions of…
Gereksiz IF & ELSE Kullanımı
Merhaba, Bu yazıda basit ama bir o kadar da önemli ancak gözden kaçabilecek bir detaydan bahsetmek istiyorum. Neredeyse bütün programlama dillerinin temel taşı olan IF mekanizmasını, özellikle döngüler içinde fazladan gereksiz yere kullanmanın, performansı olumsuz yönde etkilediğini göstermek istiyorum. İki…
Time Difference in Oracle SQL
Hello, You can find time difference between two times by using to_char and to_date sql functions. Use to_char(sysdate, ‘sssss’) in order to calculate seconds from midnight.
1 2 3 |
select to_char(sysdate, 'sssss') from dual; |
TO_CHAR(SYSDATE,’SSSSS’) ———————— 42881 1 row selected. We can also convert seconds to time with…
PL/SQL File to Blob
Hello, Converting physical files into binary data type is an important requirement. In this tutorial, I am going to explain converting files into blob data type. Basically, Oracle has two large object data types. BLOB (Binary Large Object): Used for keeping…