Viewing 15 posts - 7,486 through 7,500 (of 26,490 total)
Simply question, Why? What is the business for doing this?
May 28, 2013 at 9:27 pm
I wouldn't go to a boot camp. Their only goal is to get you to pass the tests. They aren't interested in you actually learning anything that you may...
May 28, 2013 at 9:23 pm
Alan.B (5/28/2013)
OTF (5/22/2013)
phc (5/18/2013)
SELECT C.first_name"Provider", Count(C.provider_no) "Diabetics with over 1...
May 28, 2013 at 4:38 pm
Let us take a close look at the code:
update top(@BatchSize) ceb set
ceb.new_wcdscreatedon = i.CreateDate
from
contactextensionbase ceb
left join #tmpIndividualCreateDates...
May 28, 2013 at 4:08 pm
Will be upgrading to SQL Server 2008 R2. Restricted by what the government allows.
May 28, 2013 at 2:09 pm
No idea why you haven't tried the options provided to you but using your original post in this thread (and Jeff's suggestion), try this:
select right(convert(varchar, CCD.startDateTime , 106), 8) as...
May 28, 2013 at 1:50 pm
keshava.murthy (5/28/2013)
If it is more than one year then the data will output as:
Jan-2011,
Jan 2012,
Feb-2011.
Feb-2012,
In this case I want the...
May 28, 2013 at 1:39 pm
Perhaps the following will give you another idea:
create table dbo.TestSort(
tsid int identity(1,1),
datecol datetime
);
go
/*
Template: Dynamic Tally CTE...
May 28, 2013 at 10:13 am
Sounds like the database is using either full or bulk_logged recovery model. The nightly t-log backup will clear the transaction log where as a differential would not.
May 28, 2013 at 10:03 am
keshava.murthy (5/28/2013)
If I use like above suggestion then I will not get the sum which is grouped by the month
Actually, it will. Give it a try.
May 28, 2013 at 9:44 am
Sean Lange (5/28/2013)
Lynn Pettis (5/28/2013)
Sean Lange (5/28/2013)
Lynn Pettis (5/28/2013)
Sean Lange (5/28/2013)
May 28, 2013 at 8:36 am
Sean Lange (5/28/2013)
Lynn Pettis (5/28/2013)
Sean Lange (5/28/2013)
Yet another reason NOT to use select *. 😛 I have answered this exact same question at work twice in the last week.
I have...
May 28, 2013 at 8:31 am
Well, it is hard to provide you with any ideas when we can't see what you see. It would help if you could provide us with the DDL for...
May 28, 2013 at 8:27 am
RedBirdOBX (5/28/2013)
When I right click on the...
May 28, 2013 at 8:23 am
Viewing 15 posts - 7,486 through 7,500 (of 26,490 total)