Viewing 15 posts - 4,441 through 4,455 (of 4,476 total)
naren.ece2012 (8/11/2016)
If you have any...
August 11, 2016 at 12:41 pm
Hey Evan -
I think we covered most of the known fixes on this - you tried the manually populating the table, tried the MS way of deleting the contents of...
August 11, 2016 at 12:26 pm
The user needs access to at least one mail profile and needs to be a member of DatabaseMailUserRole in msdb.
Sue
August 10, 2016 at 2:42 pm
If you google: sql server health check script with powershell
That will give you quite a few examples of different Posh scripts to get you started.
Sue
August 10, 2016 at 10:53 am
No worries. The problem in troubleshooting this with no errors is that it's a nested process - the executable on the server, those are called by the assemblies, those are...
August 10, 2016 at 10:27 am
Steve has some great advice on that. Differentials are often used to manage the size issues and can provide quicker restores than restoring a lot of logs. I've used them...
August 9, 2016 at 12:33 pm
I wouldn't as the time you save with one last log backup and restore you would spend making sure you have reset the database recovery model back to full after...
August 9, 2016 at 10:46 am
Probably but you would need to last log backup to ensure this.
You can restore the full backup onto the new server anytime after it completes. Restore with no recovery....
August 9, 2016 at 10:22 am
Don't just check for the specific user name but check also for rows where the user_name(sid) is null as that can be part of the problem.
Sue
August 9, 2016 at 8:11 am
Don't just check for the specific user name but also check using
WHERE USER_NAME(sid) IS NULL
I've seen several people hit this same issue and the user is null on the internal...
August 9, 2016 at 8:06 am
No one can really say at this point without knowing if data loss is allowed and what the recovery model is for the database.
In general though, you want to...
August 8, 2016 at 5:06 pm
Okay so now, on the failing instance, does the following file exist:
SQLDTSSS.DLL
Looks like it should be in C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\binn
If it does, I would still check the permissions on...
August 8, 2016 at 1:59 pm
The error indicates the user has granted permissions to catalog objects. Have you checked for those permissions?
select * ...
August 8, 2016 at 1:02 pm
Yup...there is a lot that could be going on. Debugging a package generally requires a log as unknown errors or issues are hard to find. So you'd want package logging...
August 8, 2016 at 12:31 pm
I think part of the problem with these kind of designs is that you can have cases where the logical model is fairly simple on paper but then it gets...
August 5, 2016 at 1:29 pm
Viewing 15 posts - 4,441 through 4,455 (of 4,476 total)