Viewing 15 posts - 5,386 through 5,400 (of 6,678 total)
I use redgate SQL Compare and SQL Data Compare for this. The tools are well worth the investment.
April 15, 2009 at 1:53 pm
It uses the last modified time of the file - and deletes any files older than the criteria you set at the time the task runs.
I would not recommend deleting...
April 15, 2009 at 1:52 pm
Okay - I am just wondering if Lynn has finally hit his limit. I'm just a bit surprised - and shocked - and the response :w00t:
http://www.sqlservercentral.com/Forums/Topic697843-146-1.aspx#bm697863
Really - let me...
April 15, 2009 at 1:48 pm
If you are seeing this message in your logs, then you have a user/service/application trying to login to SQL Server using Windows Authentication when that user/server/application has not authenticated on...
April 15, 2009 at 1:29 pm
Yes, you are trying to login with Windows Authentication when you are not authenticated on the domain. Either authenticate on the domain - or, use Runas to run as...
April 15, 2009 at 1:20 pm
And what about the case when you have information in the header record that needs to be associated with the detail records? For example, if we have an employer...
April 15, 2009 at 12:50 pm
Probably - but not without a lot more information. Please review the article I link to in my signature. This article will show you how to post your...
April 14, 2009 at 8:50 pm
Yes i am running steve's code and still i get 2251 records.
I examined the result and the code is picking up all possible matching suitid so I am getting...
April 14, 2009 at 8:45 pm
Sponge (4/14/2009)
Thank you very much for your reply. Steve: To answer your question I am using a mainteance plan so the backup actually dumps first and then perges...
April 14, 2009 at 4:51 pm
andrewd.smith (4/14/2009)
SELECT MemberId, AVG(LabValue)
FROM (
SELECT...
April 14, 2009 at 4:15 pm
Well, do you want the last two months average - or the average from the last two entries? Is it possible that you could have results for the last...
April 14, 2009 at 4:02 pm
Krishna Potlakayala (4/14/2009)
And also I think it wouldn't be a clean shut down of SQL server as in WITH NO WAIT but I am not so sure though.
It is a...
April 14, 2009 at 2:51 pm
Select Memberid, avg(labvalue)
From MemberLabResult
where labid = 1
Group by Memberid
Having
avg(labvalue) > 4 or
avg(labvalue) < 4
Add your date filter to the where clause:
WHERE labid = 1
...
April 14, 2009 at 2:49 pm
When you take a resource offline in cluster administrator - it is the same as stopping the service. It is a service shutdown - and yes, the system will...
April 14, 2009 at 2:43 pm
Viewing 15 posts - 5,386 through 5,400 (of 6,678 total)