Monday, February 25, 2013

Your current security settings do not allow this file to be downloaded

I get the above error when trying to download files from codeplex on a VM (Windows server 2008 R2) on IE9.

Solution

  • Open Internet Explorer.
  • Click Tools and then options.
  • Click on the security tab.
  • Select the Internet Zone.
  • Click on the Custom Level Button and then scroll down to Download.
  • Make sure to enable File download.
  • Click Apply and Ok

Monday, October 15, 2012

Pluralsight for MSDN Subscribers Worldwide

Back in June, Pluralsight announced special training benefits (Videos) for MSDN Subscribers. This was only for US MSDN subscribers.

Microsoft and Pluralsight were receiving feedback and comments from MSDN subscribers from other countries and now they have expanded the benefits to MSDN subscribers world wide.

So hurry up and get benefited by December 11, 2012 using your MSDN Subscriber ID. You can view this by logging on to your MSDN Site.

Courses that are included:

  • Agile Team Practices with Scrum
  • ALM for Developers with Visual Studio 2012
  • ALM with Team Foundation Server 2010
  • ALM with TFS 2012 Fundamentals
  • Building Windows 8 Metro Apps with C# and XAML
  • Building Windows 8 Metro Apps with C++ and XAML
  • C# Fundamentals - Part 1
  • C++ Fundamentals
  • Continuous Integration
  • Developing for Windows 7
  • Intellitrace
  • Introduction to .NET Debugging using Visual Studio 2010
  • Introduction to Building Windows 8 Applications
  • Introduction to Microsoft Fakes
  • Introduction to Visual Studio 2010 - Part 1
  • Introduction to Visual Studio 2010 - Part 2
  • Introduction to Visual Studio 2012 - Part 1
  • Introduction to Windows 7 Development
  • Kanban Fundamentals
  • Solution Modeling with UML in Visual Studio 2010
  • Test First Development - Part 1
  • Test First Development - Part 2
  • Web Application Performance and Scalability Testing
  • Windows Azure Diagnostics
  • Windows Phone 7 Basics

Monday, September 03, 2012

Database Cannot be opened because it is version 706. This server supports version 661 and earlier

When I tried attaching a mdf file using SQL SERVER 2008 R2 I got the following error:

"Attach Database failed for Server "XXXXXX"

Database cannot be opened because it is version 706. This server supports version 661 and earlier

Solution

This is because the database I was trying to attach is SQL Server 2012. The only way to resolve this is to Generate Script from SQL Server 2012 then run it in SQL Server 2008 R2. This needs to be done for data too.

Thursday, July 19, 2012

Find all dependent objects in oracle

Yesterday I had a scenario where I need to find the objects that are dependent on a particular table in Oracle 10g. My friend Peter happily offered me the following code.
select *
from dba_dependencies dep
where dep.referenced_owner = 'TABLE_OWNER_NAME'
and dep.referenced_name = 'TABLE_NAME'
order by owner, name;

Monday, July 16, 2012

The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database

You will need to reset your encryption keys. To do that: 1.Open Reporting Services Configuration Manager and select 'Encryption keys' tab 2.Click 'Delete' in 'Delete Encrypted Keys' section: 3.You will need to reset all connection strings and db credentials for all your data sources