Friday, 11 March 2016

CodePen - Playground for the Front End Web

Show off your latest creation and get feedback. Build a test case for that pesky bug. Find example design patterns and inspiration for your projects... more

Emmet — the essential toolkit for web-developers

Emmet is a plugin for many popular text editors which greatly improves HTML & CSS workflow... more


Wednesday, 16 December 2015

SQL CDC Error

When trying to enable the CDC on SQL database, the following error message displays:
  • Could not update the metadata that indicates database is enabled for Change Data Capture. The failure occurred when executing the command SetCDCTracked (Value = 1)

This error message comes when trying to enable CDC on a SQL Server 2008 database when the owner is not "sa".The fix for this is to change the database owner to "sa" by executing the below script:
  • USE <database-name>
  • GO
  • EXEC sp_changedbowner 'sa'



Friday, 20 November 2015

Find SQL fast in SQL Server Management Studio

  • Find fragments of SQL in tables, views, stored procedures, functions, views, jobs, and more
  • Quickly navigate to objects wherever they happen to be on a server
  • Search across multiple object types and multiple databases
  • Find all references to an object
  • Search with booleans and wildcards

SQL Search is a free add-in for SQL Server Management Studio that lets you quickly search for SQL across your databases more...

 

Monday, 9 November 2015

Implementing Active Directory Change Notifications in .NET

There are three ways of figuring out things that have changed in Active Directory (or ADAM)  more...
How to poll for changes to the Active Directory by using Visual C#  more...

 

Enabling Create System Image in Windows 7, 8 and 8.1

When trying to make image of disk in Windows, it says:
Windows backup: This feature has been disabled by your system administrator. Contact your administrator for access.

more...

Analysis Service in Power BI Report Server

 We couldn’t connect to the Analysis Services server. Make sure you’ve entered the connection string correctly... link