SELECT type, LPAD(line, 4, ' ') || ' | ' || text AS source_line
FROM user_source
WHERE name = 'YOUR_PROC_NAME'
ORDER BY type, line;
For further actions, you may consider blocking this person and/or reporting abuse
SELECT type, LPAD(line, 4, ' ') || ' | ' || text AS source_line
FROM user_source
WHERE name = 'YOUR_PROC_NAME'
ORDER BY type, line;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)