Friday, October 31, 2014

Remove sql server 2005 express tools to Install SQL Server 2008

Solution
  1. Open Run Menu and type regedit.
  2. It will open Registry Editor
  3. Now go to following location.
(32Bit) HKLM> Software > Microsoft > Microsoft SQL Server > 90

(64Bit) HKLM> Software > Wow6432Node > Microsoft > Microsoft SQL Server > 90

Remove Registry Key 90.

Move focus to next row in table on enter

$('......').keypress(function (e) {
    if (e.which == 13) {
        $(this).closest('tr').next().find('.....').select();
        return false;
    }
});

SSDT – Error SQL70001 This statement is not recognized in this context

Change the build action of the script file to None from Build

The file 'src' is not a valid here because it doesn't expose a type.

The problem may stem from
[assemblyAssemblyCulture(".....")]
in your Properties/AssemblyInfo.cs file

try removing or commenting out the line