Felipe Zorzo
Felipe Zorzo
It seems to be a limitation of the Oracle profiler. You can run the script below in sqlplus/sqlcl: ```sql VAR runid NUMBER EXEC dbms_profiler.start_profiler(run_number => :runid); EXEC secondmax_t.secondmax; EXEC dbms_profiler.stop_profiler;...
Hi, I've never seen this file extension, are you sure that the file contains Oracle PL/SQL code? Does it execute correctly on a Oracle database? You could try to increase...
That's a nice idea. I'll see how this can be implemented. Thanks!
Hi! In the "configuration" tab of zpa-toolkit you can change the "Error recovery" property to true. Changing this will make the parser more tolerant and simply ignore the CREATE INDEX....
Hi @khirzer. Unfortunately, this is not possible currently.
Hi! Unfortunately, the CREATE TABLE statement isn't supported yet. In the "Configuration" tab of zpa-toolkit you can change the "Error recovery" property to true. Changing this will make the parser...
Exception: it shouldn't register an issue if the two string are on different lines: ``` var := 'aaaa'|| 'bbb'; ```
Yes, this was expected since there are no rules checking for SQL injection yet.
@pesse I agree with @alesana-san, the TNS_ADMIN variable should be considered, IMHO. First, to follow the [Oracle documentation]( https://docs.oracle.com/en/database/oracle/oracle-database/18/netrf/local-naming-parameters-in-tnsnames-ora-file.html#GUID-12C94B15-2CE1-4B98-9D0C-8226A9DDF4CB): > By default, the tnsnames.ora file is located in the ORACLE_HOME/network/admin...
@pesse it looks good to me. 👍 And yes, the TNS_ADMIN variable is a full path like "C:\Oracle\Middleware\Oracle_Home\builder". Please let me know if you need some help. I could work...