Click here to Skip to main content
15,885,278 members
Home / Discussions / Database
   

Database

 
GeneralRe: strange Sql Server error Pin
Richard Deeming28-May-15 2:57
mveRichard Deeming28-May-15 2:57 
GeneralRe: strange Sql Server error Pin
tiwal28-May-15 3:03
tiwal28-May-15 3:03 
QuestionRDBMS Pin
Member 1003097527-May-15 2:00
Member 1003097527-May-15 2:00 
AnswerRe: RDBMS Pin
Tim Carmichael27-May-15 2:15
Tim Carmichael27-May-15 2:15 
Questionwrite a procedures along with cursors to dump data from one table to another table Pin
Member 1171121322-May-15 1:53
Member 1171121322-May-15 1:53 
AnswerRe: write a procedures along with cursors to dump data from one table to another table Pin
CHill6022-May-15 1:55
mveCHill6022-May-15 1:55 
AnswerRe: write a procedures along with cursors to dump data from one table to another table Pin
Eddy Vluggen22-May-15 2:19
professionalEddy Vluggen22-May-15 2:19 
AnswerRe: write a procedures along with cursors to dump data from one table to another table Pin
Simon_Whale22-May-15 3:20
Simon_Whale22-May-15 3:20 
RantRe: write a procedures along with cursors to dump data from one table to another table Pin
Sascha Lefèvre22-May-15 4:05
professionalSascha Lefèvre22-May-15 4:05 
Questionjava prog to sort million input Pin
Sohail Sowell17-May-15 20:26
Sohail Sowell17-May-15 20:26 
AnswerRe: java prog to sort million input Pin
Jörgen Andersson17-May-15 20:32
professionalJörgen Andersson17-May-15 20:32 
AnswerRe: java prog to sort million input Pin
Eddy Vluggen18-May-15 2:38
professionalEddy Vluggen18-May-15 2:38 
AnswerRe: java prog to sort million input Pin
Afzaal Ahmad Zeeshan18-May-15 3:51
professionalAfzaal Ahmad Zeeshan18-May-15 3:51 
GeneralRe: java prog to sort million input Pin
Mycroft Holmes20-May-15 14:37
professionalMycroft Holmes20-May-15 14:37 
QuestionJAVA PROGRAM Pin
Sohail Sowell17-May-15 20:26
Sohail Sowell17-May-15 20:26 
AnswerRe: JAVA PROGRAM Pin
ZurdoDev22-May-15 4:41
professionalZurdoDev22-May-15 4:41 
QuestionGet date not exist Pin
Karan_TN11-May-15 3:15
Karan_TN11-May-15 3:15 
AnswerRe: Get date not exist Pin
Tim Carmichael11-May-15 4:49
Tim Carmichael11-May-15 4:49 
AnswerRe: Get date not exist Pin
MarbryH11-May-15 5:48
MarbryH11-May-15 5:48 
AnswerRe: Get date not exist Pin
Richard Deeming11-May-15 8:04
mveRichard Deeming11-May-15 8:04 
Something like this should work:
SQL
WITH cteTally (N) As
(
    SELECT TOP 21 -- 15 weekdays + 6 weekend days
        ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) - 1
    FROM
        sys.objects
),
cteDays (TheDate) As
(
    SELECT
        DATEADD(day, -N, GetUtcDate())
    FROM
        cteTally
)
SELECT
    TheDate
FROM
    cteDays As D
WHERE
    ((DATEPART(dw, TheDate) + @@DATEFIRST) % 7) Not In (0, 1)
And
    Not Exists
    (
        SELECT 1
        FROM table1 As T
        WHERE T.inserteddate = D.TheDate
    )
ORDER BY
    TheDate DESC
;




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Get date not exist Pin
Mycroft Holmes11-May-15 13:10
professionalMycroft Holmes11-May-15 13:10 
GeneralRe: Get date not exist Pin
Richard Deeming12-May-15 1:39
mveRichard Deeming12-May-15 1:39 
GeneralRe: Get date not exist Pin
Mycroft Holmes12-May-15 14:11
professionalMycroft Holmes12-May-15 14:11 
QuestionDatabase Pin
Member 116493918-May-15 19:14
Member 116493918-May-15 19:14 
QuestionRe: Database Pin
Richard MacCutchan8-May-15 21:40
mveRichard MacCutchan8-May-15 21:40 

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.