0 zero
1 uno
2 due
3 tre
4 quattro
5 cinque
6 sei
7 sette
8 otto
9 nove
10 dieci
11 undici
12 dodici
13 tredici
14 quattordici
15 quindici
16 sedici
17 diciassette
18 diciotto
19 diciannove
20 venti
21 ventuno
22 ventidue
23 ventitre
24 ventiquattro
25 venticinque
26 ventisei
27 ventisette
28 ventotto
29 ventinove
30 trenta
31 trentuno
32 trentadue
33 trentatre
34 trentaquattro
35 trentacinque
36 trentasei
37 trentasette
38 trentotto
39 trentanovve
40 quaranta
41 quarantuno
42 quarantadue
43 quarantatre
44 quarantaquattro
45 quarantacinque
46 quarantasei
47 quarantasetto
48 quarantotto
49 quarantonove
50 cinquanta
51 cinquantuno
52 cinquantadue
53 cinquantatre
54 cinquentaquattro
55 cinquentacinque
56 cinquentasei
57 cinquentasetto
58 cinquentotto
59 cinquentanove
60 sessanta
61 sessantuno
62 sessantadue
63 sessantatre
64 sessantaquattro
65 sessantacinque
66 sessantasei
67 sessantasetto
68 sessantotto
69 sessantanove
70 settanta
71 settantauno
72 settantadue
73 settantatre
74 settantaquattro
75 settantacinque
76 settantasei
77 settantasetto
78 settantaotto
79 settantanove
80 ottanta
81 ottantuno
82 ottantadue
83 ottantatre
84 ottantaquattro
85 ottantacinque
86 ottantasei
87 ottantasetto
88 ottantotto
89 ottantanove
90 novanta
91 novantuno
92 novantadue
93 novantatre
94 novantaquattro
95 novantacinque
96 novantasei
97 novantasetto
98 novantotto
99 novantanove
100 cento
Wednesday, March 16, 2011
Wednesday, March 9, 2011
Sunday, March 6, 2011
Remove Table Level Lock in Oracle
select * from dba_objects where object_name='PROVISIONING';
/* 180693 */
select * from v$locked_object where object_id=180693
select * from v$access where owner='PROD' and object='PROVISIONING';
select sid, serial#, command, taddr from v$session where sid=88
alter system kill session '88,57147';
commit
/* 180693 */
select * from v$locked_object where object_id=180693
select * from v$access where owner='PROD' and object='PROVISIONING';
select sid, serial#, command, taddr from v$session where sid=88
alter system kill session '88,57147';
commit
awk to copy ttfile to a specific folder
ll | awk ' $6=="Jan" && $7=="15" {print "cp " $9 " ../CUGDATA"}' >cugdata.sh
SQL Format Output
increasing column size for displaying the billcyclefullcode fully
------------------------------------------------------------------
SQL> column BILL_CYCL_FULL_CODE_N format 999999999999999999999999999
SQL> select BILL_CYCL_FULL_CODE_N from TABLENAME where trunc(cycle_start_date_d) = '01-NOV-2008' and rownum <10;
------------------------------------------------------------------
SQL> column BILL_CYCL_FULL_CODE_N format 999999999999999999999999999
SQL> select BILL_CYCL_FULL_CODE_N from TABLENAME where trunc(cycle_start_date_d) = '01-NOV-2008' and rownum <10;
Subscribe to:
Posts (Atom)