“No problem can be solved from the same level of consciousness that created it.” Albert Einstein (1879-1955)
Sunday, 27 March 2016
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
Wednesday, 16 December 2015
SQL CDC Error
When trying to enable the CDC on SQL database, the following error message displays:
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:
- Could not update the metadata that indicates database is enabled for Change Data Capture. The failure occurred when executing the command SetCDCTracked (Value = 1)
- 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
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...
Windows backup: This feature has been disabled by your system administrator. Contact your administrator for access.
more...
Subscribe to:
Posts (Atom)
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
-
//convert BASE64 string to Byte{} array function base64ToArrayBuffer(base64) { var binaryString = window.atob(base64); var binar...
-
var htmlToPdf = new NReco.PdfGenerator.HtmlToPdfConverter(); htmlToPdf.PageFooterHtml = @"<div style='text-align:right; font-s...
-
static void Main(string[] args) { // create a dummy list List<string> data = GetTheListOfData(); // split the lis...