Viewing 15 posts - 1,426 through 1,440 (of 2,007 total)
damirmi (10/31/2011)
@CadavreThank you very much this helped me a lot, it works perfectly.
P.S.
Next time I ask a question I will try to follow forum rules.:-D
More "guidelines" than "rules". They...
October 31, 2011 at 9:30 am
codebyo (10/31/2011)
If you need all possible months between two dates you could use something like this:
DECLARE @STRING VARCHAR(500),
@DATE1 DATETIME,
...
October 31, 2011 at 7:17 am
Thomas Abraham (10/31/2011)
October 31, 2011 at 6:17 am
Hello and welcome to SSC!
It seems that your DDL script has become detached from your post, or perhaps you were unaware of the benefits of providing one.
When you have time,...
October 31, 2011 at 3:45 am
farooq.hbs (10/31/2011)
I need a help on date Diff Concept..
I want to get the Month Number of...
October 31, 2011 at 3:40 am
Thomas.s (10/31/2011)
i m having table like this
empno ename sal
1 kkk 21000
2 ...
October 31, 2011 at 3:38 am
Knocked this up in a couple of minutes. It's based off what I remember from my previous job, in my new job I'm strictly a developer so I don't perform...
October 31, 2011 at 3:24 am
Had no idea, took a random stab in the dark and got it right 🙂
phil.wood 94423 (10/31/2011)
Please let's avoid pointless...
October 31, 2011 at 3:06 am
SELECT DATEADD(dd, DATEDIFF(dd, 0, @OrigDT), 0)
--EDIT-- Mis-read your post, the above removes the time from a datetime. Should have been like the below
SELECT DATEADD(dd, 0-DATEDIFF(dd, 0, @OrigDT), @OrigDT)
October 28, 2011 at 5:15 am
emdavies82 (10/27/2011)
SELECT COUNT(Address_Line_1) AS EXP2, (Post_Code)AS Expr1, Address_Line_1
FROM Pers_Static_Personnel_History
GROUP BY...
October 27, 2011 at 3:55 am
iluvmyelement (10/26/2011)
When pulling data, I need to summarize totals by Week of the current month.
e.g. if the 1st of the current month falls on a Wednesday, Week 1 would be...
October 27, 2011 at 3:07 am
Ninja's_RGR'us (10/26/2011)
Cadavre (10/26/2011)
Ninja's_RGR'us (10/26/2011)
FOR XML PATH.
I've seen that suggested in the past. I don't have a full understanding of what it does so I recommend...
October 26, 2011 at 7:24 am
Ninja's_RGR'us (10/26/2011)
FOR XML PATH.
I've seen that suggested in the past. I don't have a full understanding of what it does so I recommend you read...
October 26, 2011 at 7:19 am
Ninja's_RGR'us (10/26/2011)
NP.Was what so important in that meeting that could make this unbeknownst guy wait for his answer! 😀
You should talk to the authorities about that!
heh. I'll attend by...
October 26, 2011 at 7:15 am
phual (10/26/2011)
October 26, 2011 at 7:12 am
Viewing 15 posts - 1,426 through 1,440 (of 2,007 total)