Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle show errors

SELECT to_char(a.LINE) || ' - ' || a.TEXT ERROR
FROM ALL_SOURCE a,
     ALL_ERRORS b
WHERE a.NAME = 'object_name'
  AND a.NAME = b.NAME
  AND a.TYPE = b.TYPE
  AND a.LINE = b.LINE
ORDER BY a.NAME, a.LINE;
Comment

PREVIOUS NEXT
Code Example
Sql :: homebrew install mysql 
Sql :: unique in sql server 
Sql :: sql alter column name sql server 
Sql :: delete from table sql 
Sql :: mysql sql select one day before 
Sql :: SQL Modify Column in a Table -SQL Server 
Sql :: show function mysql 
Sql :: start and stop mysql 
Sql :: postgres find missing indexes 
Sql :: on update current_timestamp jpa 
Sql :: duplicate record mysql 
Sql :: postegresql update to null 
Sql :: how to find 2nd highest salary in a table 
Sql :: delete all duplicate rows keep the latest except for one in mysql 
Sql :: run psql postgres docker 
Sql :: mysql default uuid 
Sql :: power query datetime to date 
Sql :: cast in sql 
Sql :: change database postgres 
Sql :: sql select 
Sql :: T sql less than date 
Sql :: mysql replace regex 
Sql :: create a table in sql 
Sql :: first mysql 
Sql :: sql float 3 decimal places 
Sql :: mql5 list all available symbols 
Sql :: oracle boolean to varchar 
Sql :: SQL SELECT TOP Equivalent in oracal 
Sql :: difference in dates sql 
Sql :: insert json file to mssql 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =