Click here to Skip to main content
15,891,941 members
Home / Discussions / Database
   

Database

 
GeneralRe: how to let the users specify their ID and passwords ? Pin
Mr.Kode13-Mar-07 11:53
Mr.Kode13-Mar-07 11:53 
Questiontriggers Pin
Renuka Reddy13-Mar-07 2:31
Renuka Reddy13-Mar-07 2:31 
AnswerRe: triggers Pin
Sacha Barber13-Mar-07 3:30
Sacha Barber13-Mar-07 3:30 
Questionpoblem in updating data in transactional replication n more... Pin
Rocky#13-Mar-07 1:51
Rocky#13-Mar-07 1:51 
QuestionBackup of oracle database using vb.net Pin
shreya12313-Mar-07 1:51
shreya12313-Mar-07 1:51 
QuestionNumber of weekdays between to dates Pin
szukuro13-Mar-07 1:44
szukuro13-Mar-07 1:44 
AnswerRe: Number of weekdays between to dates Pin
Harini N K13-Mar-07 1:57
Harini N K13-Mar-07 1:57 
GeneralRe: Number of weekdays between to dates [modified] Pin
szukuro13-Mar-07 2:32
szukuro13-Mar-07 2:32 
No, I meant the number of weekdays. For '01/01/2007' and getdate() it should return 51 (as of today). So to be more precise I need something like this in SQL:
C#
DateTime start = new DateTime(2007, 1, 1);
int num = 0;
while (DateTime.Compare(DateTime.Today, start) == 1)
{
    int day = (int)start.DayOfWeek;
    if (day > 0 && day < 6)
        num++;
    start = start.AddDays(1);
}



-- modified at 10:47 Tuesday 13th March, 2007
AnswerRe: Number of weekdays between to dates Pin
szukuro13-Mar-07 5:15
szukuro13-Mar-07 5:15 
GeneralRe: Number of weekdays between to dates Pin
Harini N K13-Mar-07 18:27
Harini N K13-Mar-07 18:27 
GeneralRe: Number of weekdays between to dates Pin
szukuro13-Mar-07 22:29
szukuro13-Mar-07 22:29 
GeneralRe: Number of weekdays between to dates [modified] Pin
Harini N K13-Mar-07 23:46
Harini N K13-Mar-07 23:46 
GeneralRe: Number of weekdays between to dates Pin
szukuro14-Mar-07 0:38
szukuro14-Mar-07 0:38 
GeneralRe: Number of weekdays between to dates [modified] Pin
Avatto13-Jan-14 3:51
Avatto13-Jan-14 3:51 
QuestionHow to pass parameters to Sub Report from Main Report ? Pin
prakash_21013-Mar-07 1:36
prakash_21013-Mar-07 1:36 
Questionwhere the database is located? Pin
senthil_rajesh_kavin13-Mar-07 0:04
senthil_rajesh_kavin13-Mar-07 0:04 
AnswerRe: where the database is located? Pin
Harini N K13-Mar-07 0:29
Harini N K13-Mar-07 0:29 
GeneralRe: where the database is located? Pin
Colin Angus Mackay13-Mar-07 0:53
Colin Angus Mackay13-Mar-07 0:53 
AnswerRe: where the database is located? Pin
Colin Angus Mackay13-Mar-07 0:52
Colin Angus Mackay13-Mar-07 0:52 
GeneralRe: where the database is located? Pin
kaliem13-Mar-07 21:54
kaliem13-Mar-07 21:54 
GeneralRe: where the database is located? Pin
Colin Angus Mackay13-Mar-07 22:01
Colin Angus Mackay13-Mar-07 22:01 
GeneralRe: where the database is located? Pin
kaliem13-Mar-07 22:17
kaliem13-Mar-07 22:17 
GeneralRe: where the database is located? Pin
Colin Angus Mackay13-Mar-07 22:19
Colin Angus Mackay13-Mar-07 22:19 
Questiongive me server objects... Pin
Renuka Reddy12-Mar-07 18:07
Renuka Reddy12-Mar-07 18:07 
AnswerRe: give me server objects... Pin
Colin Angus Mackay13-Mar-07 0:55
Colin Angus Mackay13-Mar-07 0:55 

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.