Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

view bind value to a date

AlainMar 8 2019 — edited Mar 8 2019

Hi,

I have a query taking lot of time.

I have the query. Using cloudcontrol, I can "see" and "export" bind variables.

When exporting, cloudControl creates a file holding:

-- ============================================================================================== --

-- This file is generated by EM Database Express.                                      --

-- The SQL bind variables, if any, will be declared below.                                        --

-- ============================================================================================== --

declare

  P0   TIMESTAMP             := 787703080F051F;  -- HEXDUMP

  P1   TIMESTAMP             := 787703080F051F;  -- HEXDUMP

  P2   TIMESTAMP             := 787703080F051F;  -- HEXDUMP

begin

--  SELECT ... WHERE (this_.ModifiedAt >= :p0 ....

end;

/

Problem: how can I see what is the date value of hexdump 787703080F051F?

Even running the file, assigning the value gives a problem.

Kind regards.

Comments
Post Details
Added on Mar 8 2019
6 comments
2,972 views