Viewing 15 posts - 11,206 through 11,220 (of 26,486 total)
I have to ask, why the change in recovery model from FULL to SIMPLE and then back to FULL every week? This breaks the log chain meaning you can't...
June 20, 2012 at 11:47 am
marginalster (6/19/2012)
Thank you again for all the help.
declare @temp table
(
[id] [int] IDENTITY(1,1) NOT NULL,
[Dag] [datetime],
[Locatie] [NVARCHAR] (MAX),
[Temperatuur] [int]
)
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20111112','Rotterdam','12');
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20111231','Rotterdam','12');
insert...
June 20, 2012 at 11:37 am
marginalster (6/20/2012)
Thx for the replay. The email part works flawlessly. But the month selection is still not functioning.
id - months - avgtemp - %
1 - 11- 12- NULL
2...
June 20, 2012 at 10:57 am
Sean Lange (6/20/2012)
I got it Lynn. Should have the solution in just a couple minutes. 😀
That's fine, but I helped with the code so I am just curious what the...
June 20, 2012 at 10:43 am
Code looks very familiar. I'm just having a slight problem figuring out what the problem is, can you expand a little more on what is wrong?
June 20, 2012 at 10:27 am
dustinprevatt (6/20/2012)
SELECT Distinct Column1, Column2, Column3, Column4, Column5,
...
June 20, 2012 at 10:22 am
Also, can you post the DDL for the table?
June 20, 2012 at 10:19 am
anand.narayanan 87953 (6/20/2012)
i have been working with Sqlserver for the past few years.
Today, i have came across a strange scenario.
in our application, we are facing Arithmetic overflow error converting...
June 20, 2012 at 10:17 am
Please post answers here.
No reason to start another thread.
June 20, 2012 at 10:10 am
Let's keep everything in one place:
hbanerje (6/20/2012)
Select
COUNT (MS_DRG) as 'cntof MS_DRG',ms_drg, FYFP,
MS_DRG as '765',
MS_DRG as '766',
FYFP
from #TSI_patient_list_Csections
group by FYFP,ms_DRG
I...
June 20, 2012 at 10:09 am
kotharibij (6/20/2012)
From SQL 2005 in SP2 Service Pack Standard Edition
To SQL 2005 in SP3 Service Pack...
June 20, 2012 at 10:00 am
dustinprevatt (6/20/2012)
I'm just not sure how to use...
June 20, 2012 at 9:39 am
derek.colley (6/20/2012)
June 20, 2012 at 9:24 am
dustinprevatt (6/20/2012)
Could anyone go into detail about what this actually means ?
postdate>= dateadd(dd, datediff(dd, 0, getdate()), 0) and postdate < dateadd(dd, datediff(dd, 0, getdate()) + 1, 0)
I'm glad...
June 20, 2012 at 9:21 am
dustinprevatt (6/20/2012)
If so how would i use the example in the link to show the beggining of the current day thru the end of the...
June 20, 2012 at 9:05 am
Viewing 15 posts - 11,206 through 11,220 (of 26,486 total)