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 :: symfony Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails 
Sql :: how to use timestampdiff in a table in sql 
Sql :: sql view index 
Sql :: Select with remove white spaces in sql 
Sql :: delete table cassandra 
Sql :: delete table in mysql 
Sql :: sql pivot 
Sql :: postgresql héritage 
Sql :: using distinct and count together in sql 
Sql :: copy a table mysql 
Sql :: mysql find max value row 
Sql :: psql show db 
Sql :: sql arithmetic operators 
Sql :: soql update query 
Sql :: Mysql table variables 
Sql :: sql query to return field name of a table 
Sql :: mysql dump 
Sql :: control files oracle 
Sql :: postgres full text search example 
Sql :: ERROR: permission denied for table accounts postgresql 13 
Sql :: pgadmin check database 
Sql :: plpgsql coalesce equivalent for empty string 
Sql :: last 2 mins sql server 
Sql :: check ksql db health 
Sql :: SQLSTATE[42000]: Syntax error or access violation: 1140 Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause 
Sql :: execution order in sql 
Sql :: delete account in flask and sqlalchemy 
Sql :: rename temp table column name in sql server 
Sql :: sql max value in column 
Sql :: mysql dump structure only 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =