mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-04-25 13:46:02 +03:00
[GH-ISSUE #3246] SQL syntax error without prompt #1184
Labels
No labels
AS
can't reproduce
can't reproduce
deployment
development
documentation
duplicate
duplicate
ee
enhancement
external
new driver
performance
pull-request
third party issue
wait for response
wait for review
wontfix
x:Oracle
x:cassandra
x:clickhouse
x:db2
x:duckdb
x:greenplum
x:h2
x:h2gis
x:hana
x:hive
x:intersystems
x:kyuubi
x:maria
x:mongo
x:mysql
x:postgresql
x:presto
x:sql server
x:sqlite
x:teradata
x:trino
xf:accessibility
xf:administration
xf:ai
xf:authentication
xf:aws
xf:commit-mode
xf:connection
xf:dark theme
xf:data editor
xf:datatransfer
xf:dba
xf:driver management
xf:erd
xf:filters
xf:i18n
xf:i18n
xf:installer
xf:json
xf:kerberos
xf:ldap
xf:local config
xf:log viewer
xf:metadata
xf:metadata editor
xf:navigator
xf:okta
xf:query manager
xf:resource manager
xf:scripts
xf:sql editor
xf:tasks
xf:ui/uix
xo: Firefox
xo:eclipse
xo:internet explorer
xo:macos
xp:major
xrn:internal
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cloudbeaver#1184
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mail200 on GitHub (Feb 7, 2025).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/3246
When creating PROCEDURE in Oracle database, there are incorrect table names in SQL,
For example, the table P_DUXY12.Z-PCDWOPENSO_20250206 does not actually exist, but when executing SQL, there is no prompt that the table does not exist, and it is executed normally instead.
Is there any way to indicate an error?
SQL statement
CREATE OR REPLACE PROCEDURE P_DUXY12.PRC_TEST_20250206(exitcode OUT NUMBER) IS
BEGIN
exitcode := -20099;
insert into P_DUXY12.Z_PCDW_OPENSO_20250206
(scenario_id,
vbeln,
agree,
ship_to_country)
select scenario_id,
vbeln,
agree,
ship_to_country
from P_DUXY12.Z_PCDW_OPENSO;
commit;
exitcode := 0;
EXCEPTION
WHEN OTHERS THEN
exitcode := -1;
RAISE;
END PRC_TEST_20250206;