Click here to Skip to main content
15,908,843 members
Home / Discussions / Database
   

Database

 
GeneralRe: A Secured Hotel Management System using Visual BAsic 2010 Pin
Simon_Whale3-Aug-10 6:05
Simon_Whale3-Aug-10 6:05 
AnswerRe: A Secured Hotel Management System using Visual BAsic 2010 Pin
Simon_Whale3-Aug-10 5:28
Simon_Whale3-Aug-10 5:28 
AnswerRe: A Secured Hotel Management System using Visual BAsic 2010 Pin
dan!sh 3-Aug-10 5:29
professional dan!sh 3-Aug-10 5:29 
AnswerRe: A Secured Hotel Management System using Visual BAsic 2010 Pin
Smithers-Jones3-Aug-10 5:49
Smithers-Jones3-Aug-10 5:49 
AnswerRe: A Secured Hotel Management System using Visual BAsic 2010 Pin
Chris Meech3-Aug-10 8:54
Chris Meech3-Aug-10 8:54 
QuestionHow to get value from outer to inner SELECT Pin
Robert König3-Aug-10 1:59
Robert König3-Aug-10 1:59 
AnswerRe: How to get value from outer to inner SELECT Pin
Tim Carmichael3-Aug-10 5:27
Tim Carmichael3-Aug-10 5:27 
AnswerRe: How to get value from outer to inner SELECT Pin
Bernhard Hiller3-Aug-10 20:55
Bernhard Hiller3-Aug-10 20:55 
Start with a query telling you CALENDAR.DAY for every NR_OF_DAYS and limit that to the maximum number found in the WORKCENTER table, maybe
SELECT ROWNUM as NR_OF_DAYS, DAY AS MAX_CALENDAR_DAY
     FROM (SELECT DAY
           FROM CALENDAR
           WHERE DAY > TRUNC(TO_NUMBER(SYSDATE - TO_DATE('01.01.1970', 'DD.MM.YYYY')))
           AND CALENDAR.IS_WORKING_DAY= 'y'
           ORDER BY CALENDAR.DAY
          )
     WHERE ROWNUM <= (SELECT MAX(NR_OF_DAYS) FROM WORKCENTER WHERE WORKCENTER.ID IN ( 1, 2, 6, 7, 9))

and then INNER JOIN that to the WORKCENTER table ON NR_OF_DAYS.
GeneralRe: How to get value from outer to inner SELECT Pin
Robert König3-Aug-10 22:35
Robert König3-Aug-10 22:35 
QuestionTemporary freeze updating .SDF file - fixed Pin
hairy_hats3-Aug-10 0:45
hairy_hats3-Aug-10 0:45 
GeneralSelect number of rows [modified] Pin
MathewPV2-Aug-10 21:18
MathewPV2-Aug-10 21:18 
GeneralRe: Select number of rows Pin
J4amieC2-Aug-10 22:01
J4amieC2-Aug-10 22:01 
GeneralRe: Select number of rows Pin
MathewPV2-Aug-10 22:24
MathewPV2-Aug-10 22:24 
GeneralRe: Select number of rows Pin
Jörgen Andersson2-Aug-10 23:25
professionalJörgen Andersson2-Aug-10 23:25 
GeneralRe: Select number of rows Pin
MathewPV2-Aug-10 23:58
MathewPV2-Aug-10 23:58 
GeneralRe: Select number of rows Pin
J4amieC3-Aug-10 3:06
J4amieC3-Aug-10 3:06 
GeneralRe: Select number of rows Pin
J4amieC3-Aug-10 3:07
J4amieC3-Aug-10 3:07 
GeneralRe: Select number of rows Pin
Jörgen Andersson3-Aug-10 3:46
professionalJörgen Andersson3-Aug-10 3:46 
QuestionOrder By Pin
SatyaKeerthi151-Aug-10 20:34
SatyaKeerthi151-Aug-10 20:34 
AnswerRe: Order By Pin
R. Giskard Reventlov1-Aug-10 21:57
R. Giskard Reventlov1-Aug-10 21:57 
GeneralRe: Order By Pin
SatyaKeerthi151-Aug-10 23:40
SatyaKeerthi151-Aug-10 23:40 
GeneralRe: Order By [modified] Pin
R. Giskard Reventlov2-Aug-10 0:16
R. Giskard Reventlov2-Aug-10 0:16 
Questiondb4o Embedded DB Pin
Mike Hankey1-Aug-10 2:05
mveMike Hankey1-Aug-10 2:05 
AnswerRe: db4o Embedded DB Pin
PIEBALDconsult1-Aug-10 3:37
mvePIEBALDconsult1-Aug-10 3:37 
GeneralRe: db4o Embedded DB Pin
Mike Hankey1-Aug-10 3:43
mveMike Hankey1-Aug-10 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.