Quantcast
Channel: Comments for OraQA
Browsing all 11 articles
Browse latest View live

Comment on Create Alphanumeric Sequence in SQL? by oo

convert integer number to it’s binary format

View Article



Comment on How to check free space in tablespaces by chanjaljayaram

Hello Karl, I think the query needs to be slightly modified as below. case when(d.contents = ‘TEMPORARY’) then to_char(nvl(t.bytes / 1024 / 1024, 0), ’99G999G990D90′, ‘NLS_NUMERIC_CHARACTERS = ”,.” ‘)...

View Article

Comment on How to solve the Find all 3 digit numbers have the digital sum of...

–the following is my try :) WITH DATA AS ( SELECT LTRIM(sys_connect_by_path(num,’+'),’+') str_num,REPLACE(sys_connect_by_path(num,’.'),’.') str_out FROM (SELECT LEVEL-1 num FROM dual CONNECT BY LEVEL...

View Article

Comment on How to generate sequence numbers between two numbers by sreekumarvg

SQL> create sequence test_s minvalue 20 maxvalue 26 ; Sequence created. SQL> SQL> SQL> SQL> select test_s.nextval from all_objects where rownum

View Article

Comment on How to solve the Find all 3 digit numbers have the digital sum of...

With D As( Select 99+RowNum N From Dual Connect By Level=100 And N<=999 And SubStr(N,1,1)+SubStr(N,2,1)+SubStr(N,3,1)=9;

View Article


Comment on How to solve the Find all 3 digit numbers have the digital sum of...

With D As( Select 99+RowNum N From Dual Connect By Level=100 And N<=999 And SubStr(N,1,1)+SubStr(N,2,1)+SubStr(N,3,1)=9

View Article

Comment on How to solve the Find all 3 digit numbers have the digital sum of...

With D As( Select 99+RowNum N From Dual Connect By Level=100 And N<=999 And SubStr(N,1,1)+SubStr(N,2,1)+SubStr(N,3,1)=9

View Article

Comment on How to solve the Find all 3 digit numbers have the digital sum of...

With D As(    Select 99+RowNum N From Dual Connect By Level<=(999-100)+1 ) Select * From D Where N>=100 And N<=999 And SubStr(N,1,1)+SubStr(N,2,1)+SubStr(N,3,1)=9

View Article


Comment on How to solve the 3 Digits Plus 3 Digits Puzzle in SQL by Amalendu...

With D As(      Select RowNum N From Dual Connect By Level<=9 ) ,N As(      Select Replace(Sys_Connect_By_Path(N,’,'),’,') N      From D      Where Level=9      Connect By NoCycle N!=Prior N )...

View Article


Comment on How to transform a database table dataset into HTML table in SQL...

[...] How to transform a database table dataset into HTML table in SQL [...]

View Article

Comment on How to Scan and Save Images into Oracle Database? by achafeez

Assalam o alikum… Can you send me code for scanning document and directly saving in the db…. Abdul Hafeez Chaudhary

View Article
Browsing all 11 articles
Browse latest View live




Latest Images