1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| Connecté à :
Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Productio
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.5.0 - Production
SQL> set serveroutput on
SQL>
SQL> DECLARE
2 LC$Ko VARCHAR2(100) := 'éèàçù0123456789,;:!§/.?&_%ù¨^/*-+&"''(-_)={[|`\^@]}';
3 LC$Ok VARCHAR2(100) := 'eeacu';
4 LC$Res VARCHAR2(100);
5 BEGIN
6 LC$Res := TRANSLATE('123acfgtàé23',LC$Ko ,LC$Ok);
7 DBMS_OUTPUT.PUT_LINE(lc$res);
8 END;
9
10
11 /
acfgtae
Procédure PL/SQL terminée avec succès.
SQL> |
Partager