Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: CLOB to VARCHAR2 -- (ver 9i)
matt_at_mailinator.com wrote:
> Sybrand Bakker wrote:
>> http://asktom.oracle.com/pls/ask/f?p=4950:8:13266295515100393693::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:18909757644296
>> Please *ALWAYS* post your version in ordet to get *accurate* answers >> and not waste peoples time.
>> Oracle 8i, BTW, is desupported for more than a year.
Run this anonymous block:
set serveroutput on
DECLARE
ver VARCHAR2(100);
compat VARCHAR2(100);
BEGIN
dbms_utility.db_version(ver, compat);
dbms_output.put_line('Version: ' || ver ||' Compatible: ' || compat);
END;
/
Things may not be as they seem.
-- Daniel Morgan University of Washington Puget Sound Oracle Users GroupReceived on Mon Sep 18 2006 - 18:41:07 CDT
![]() |
![]() |