Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle pl sql source

select *
from   all_source
where  lower(text) like lower('%Some source%');
Comment

oracle pl/sql package

create or replace package test_pkg as
    procedure print (line in varchar);
end test_pkg;

create or replace package body test_pkg as
    procedure print (line in varchar) is
    begin
        DBMS_OUTPUT.PUT_LINE(line);
    end print;
end test_pkg;

begin
    test_pkg.print('Test');
end;
Comment

PREVIOUS NEXT
Code Example
Sql :: sql missing values 
Sql :: mysql start command 
Sql :: Suse Linux restart MySQL 
Sql :: pl sql ptint 
Sql :: postgresql alter table sequence 
Sql :: create index concurrently postgres 
Sql :: ORA-00942 
Sql :: postgresql change default value 
Sql :: alter table add column forigen key mysql 
Sql :: mysql query to check record exists in database table or not 
Sql :: mysql install with docker 
Sql :: random name function in mysql for nvarchar 
Sql :: select all tables sql 
Sql :: postgresql cast 
Sql :: show slave status mysql 
Sql :: how to get nearest location in mysql with latitude and longitude 
Sql :: create pl/sql stored procedure 
Sql :: date between in mysql 
Sql :: date to string mariadb 
Sql :: sql common columns 
Sql :: rename database in sql 
Sql :: How do I add a user to a postgres database? cli 
Sql :: mysql change password 
Sql :: mysql update add to existing value 
Sql :: mysql command not working in linux 
Sql :: sql update where id 
Sql :: mysql disable query caching 
Sql :: referential integrity constraint 
Sql :: oracle running queries sql 
Sql :: create table split string function in sql server 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =