Hi,
when I open a command window; and execute (Oracle 19c SE2 on Windows 10 64bit):
- Then clicking on the red Hand Symbol does not terminate the SQL immediately, but later then after few seconds
- Also the Hand does not change visually on Mouse -Down event
- The whole action gives you the...
Hi,
I like the minimalistic icon style, but in the explorer Section and above, ... they (icons) take too much place.
Also It would be nice for this forum to support image uploads, as we are talking about visual effects here
The side by side comparsion :
/Karl
Eager to test the PLSQL-Developer Beta 15,
at first glance I like the theming very much, Something I got used to with Visual Studio Code or JetBrains GoLand
thanks a lot!
/Karl
Hi Dev-Team,
this is not the first time I request this ... :-(
formatting
Procedure-parameters are always aligned at the end of the procedure-name which is hard to read specially in a package -Header
PROCEDURE Log_Link(p_Object_Id IN t_Guid
,p_Child_Id...
The Question is not if SQL Window allows this but if Oracle SQL allows dynamic column aliases -> NO!
SQL> select 'X' AS ( SELECT 'Y' FROM DUAL ) FROM DUAL;
select 'X' AS ( SELECT 'Y' FROM DUAL ) FROM DUAL
ORA-00923: FROM keyword not found where expected
SQL>
Before the SQL is parsed (befor...
Trigger/Types and PL/SQL objects must be
finished with '/' to get executed/defined via SQL*PLUS
The last ';' on these objects belongs to the Code of the object itself.
you should execute scripts with the command window which is a SQL*PLUS emulator
/Karl
just try your code via SQL*PLUS too
if it...
Thanks Marco;
I know it's not so easy because the preprocessor
does not fit to the parsing tree of the pl/sql-language
for beautifying
thank you for the hint
/Karl
Hello Dev-Team,
seems the Beautifier has probs with conditional compiling
this package function - code compiles without error ...
PROCEDURE Set_Creator(
$IF $$ISS_CORE $THEN
p_Comid IN Employee.Comid%TYPE
$ELSE
p_Comid IN Vxi_Employee.Comid%TYPE
$END
) IS
BEGIN...