System Time to varchar in Oracle C.GULDOGAN 7:29 AMYou can use the following code to get system time as varchar in Oracle ls_current_timestamp VARCHAR2 (14) := SUBSTR (TO_CHAR (SYSTIMEST... Read More
Alter column size Oracle C.GULDOGAN 8:17 AMTo Alter column size in Oracle you may use the following query. It helps if your size of input doesn't fit your column. ALTER TABLE... Read More
How to find Oracle Package Errors with query C.GULDOGAN 6:55 AMYou can find oracle package errors by executing the query below. select e.owner,e.type,e.line, e.position,e.text, substr(s.text,1,500) sour... Read More