Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle show errors compilation

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 :: SQL Error [42501]: ERROR: permission denied for table 
Sql :: homebrew install mysql 
Sql :: mysql datetime format 
Sql :: sql inner join 
Sql :: from . import _mysql ImportError: libmariadb.so.3: cannot open shared object file: No such file or directory linux 
Sql :: SQL COUNT() with GROUP BY 
Sql :: phone number regex sql 
Sql :: sql order by with where 
Sql :: create table postgresql 
Sql :: case insensitive sql 
Sql :: SQL get last 5 minutes data 
Sql :: psql check if value in array 
Sql :: on sql table data exists 
Sql :: datagrip execute procedure 
Sql :: mysql insert rows to another database 
Sql :: foreign key on table oracle 
Sql :: mysql 5.6 hierarchical recursive query 
Sql :: Oracle filter date column by year 
Sql :: date in mysql 
Sql :: json to dynamic columns in sql 
Sql :: control files oracle 
Sql :: declare variable in mysql 
Sql :: sql or 
Sql :: how to get information about data types in postgreSQL 
Sql :: how to add new column with default value in sql server 
Sql :: inser into example 
Sql :: how to limited number of rows in db2 select * from imglib FETCH FIRST 20 ROWS ONLY 
Sql :: postgres between dates 
Sql :: mysql get table column names and data types 
Sql :: alter database datafile maxsize 32g 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =