Viewing 15 posts - 2,791 through 2,805 (of 6,679 total)
Instead of using cmd exec - use Powershell with the following:
Get-ChildItem C:\SSISFILES\Log | Where {$_.LastWriteTime -lt (Get-Date).AddDays(-5)} | Remove-Item -Force
If you want this to recurse through sub-directories and delete files,...
September 14, 2012 at 12:33 pm
You don't need to worry about SP3 - just download and install SP4. They are cumulative so you will be fine with that.
The reason you are getting the notice...
September 12, 2012 at 8:07 am
Verify the security settings on the share - if the service account does not have full permissions on the folder it won't be able to delete the files.
September 9, 2012 at 5:31 pm
Follow the article that Brandie linked to. That should get everything you need.
September 9, 2012 at 2:35 pm
One of the steps of upgrading from 2000 to anything later (2005, 2008, 2008R2, 2012) is to update all statistics. That is a post-upgrade requirement.
If you perform that step...
September 9, 2012 at 10:48 am
Stupid question - but did you restart the PC after uninstalling?
If yes, then it seems your uninstall is not completing successfully and the system believes SQL Server is still installed....
September 9, 2012 at 10:35 am
It depends on what is being installed - if you don't select anything to be installed from the second disc it won't be used.
Have you verified that everything has been...
September 9, 2012 at 10:17 am
That looks like you are trying to restore a backup created on 2008 to a 2005 instance. That cannot be done - you can go from 2005 to 2008,...
September 8, 2012 at 9:46 am
jrichards54 (9/5/2012)
September 7, 2012 at 4:00 pm
You either have corruption in the database - or SAN issues causing problems.
First, run the following (when you can - not during business hours): DBCC CHECKDB ({your database}) WITH no_infomsgs,...
September 6, 2012 at 11:42 am
The second item I wanted you to do is to go to Programs & Features (Add/Remove), select SQL Server 2005 and the option to add features.
From here - you should...
September 4, 2012 at 6:05 pm
Note: SQL Server 2005 needs to be patched before it will work on Windows 7. Find SQL Server 2005 SP4, download it and apply it once you have performed...
September 3, 2012 at 3:28 pm
It sounds like you were expecting SQL Server to work the same as Access. It does not - there isn't a file you click on to open a database.
SQL...
September 3, 2012 at 3:26 pm
I would publish the report in an area that is only accessible to my group. Then, I would create linked reports in different folders for each client - or...
September 3, 2012 at 9:30 am
Triality (9/3/2012)
September 3, 2012 at 9:12 am
Viewing 15 posts - 2,791 through 2,805 (of 6,679 total)