Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle show error line number

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 search all tables for attributes 
Sql :: database get 10 user aleatory 
Sql :: sql unique constraint 
Sql :: mysql command 
Sql :: Grant privileges of databse to user 
Sql :: sql rename column in select query 
Sql :: sql rename table 
Sql :: how to import mysql database command line 
Sql :: 0 
Sql :: how to make case insensitive in sql 
Sql :: EnvironmentError: mysql_config not found 
Sql :: bigquery current time 
Sql :: sql alter column 
Sql :: sql pivot without aggregate 
Sql :: postgres date 
Sql :: oracle get foreign keys on table 
Sql :: split string and get first and last element in sql server 
Sql :: mysql is odd 
Sql :: how to recreate postgres database in docker 
Sql :: alter table drop partition hive 
Sql :: drop procedure if exists sql server 
Sql :: count sql 
Sql :: coalesce function in sql server 
Sql :: mysql pad zeros 
Sql :: array aggre distinct postgres 
Sql :: view acl table oracle 
Sql :: how to delete python anywhere mysql database 
Sql :: postgres show table schema 
Sql :: getting customers with no orders sql 
Sql :: cascade syntax in sql 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =