Directly from the Microsoft Release Service blog, here is the list of latest updates for SQL Server 2014 RTM:
Cumulative Updates #7 for SQL Server 2014 RTM
SQL Server 2014 SP1 (read carefully)
Stay Tuned! 🙂
Directly from the Microsoft Release Service blog, here is the list of latest updates for SQL Server 2014 RTM:
Cumulative Updates #7 for SQL Server 2014 RTM
SQL Server 2014 SP1 (read carefully)
Stay Tuned! 🙂
Here’s a typical DBA scenario. You’re at your desk, working on something, when you get a trouble ticket, phone call, or tap on your shoulder. There’s a problem in production and an order, or some other important piece of data, is incorrect. Can you fix it?
Many of us are happy to oblige. Often we know what needs to be changed and can write the INSERT/UPDATE/DELETE statement to correct the issue. Even if we have to dig in further, we can usually find the data in a table and determine what should be changed.
However, what do we do then?
If you are asked the make data changes to production, do you QA the script? Do you save the scripts in a VCS or a log? Does anyone else examine the data or code? Do you scan the script yourself, have SQL Server parse it, or bother to look for…
View original post 261 more words
One of the things I hate the most about “old” databases is the fact that unused tables are kept forever, because nobody knows whether they’re used or not. Sometimes it’s really hard to tell. Some databases are accessed by a huge number of applications, reports, ETL tools and God knows what else. In these cases, deciding whether you should drop a table or not is a tough call.
The easiest way to know if a table is used, is to search the codebase for occurences of the table name. However, finding the table name in the code does not mean it is used: there are code branches that in turn are not used. Modern languages and development tools can help you identify unused methods and objects, but it’s not always feasible or 100% reliable (binary dependencies, scripts, dynamic code are, off top of my head, some exceptions).
On the…
View original post 1,405 more words
Today me and probably the 3 billions of people trying using java applet on chrome has found that after the java upgrade, chrome was unable to run java applet anymore, this not because of java, but because of google that decided to drop/stop the support for NPAPI, that is a cross-platform architecture standard used by many browser to enable plugins/applet such as Silverlight, Java and Facebook Video. You can find more directly from java website “How do I use Java with the Google Chrome browser?” But there’s also a good news, you can re-enable it, by doing these steps:
…and here we go!! God bless the configurations!
Directly from the Microsoft Release Service blog, here is the list of latest updates for SQL Server 2012 SP1 and SP2:
Cumulative Updates #15 for SQL Server 2012 SP1
Cumulative Updates #5 for SQL Server 2012 SP2
Stay Tuned! 🙂
My “Unit testing with SQL Server” article is now online on SQLServerCentral.com. A big thanks goes to Steve Jones (@way0utwes).
You can read it here.
Stay tuned! 🙂
After SQL Saturday Pordenone, I’ll keep speaking about DLM (aka ALM on databases) during the following events:

Recently Michael suggested me a lightweight framework for accessing and manipulating data with SQL Server. I’ve tried it and I’ve found some misunderstanding on the official documentation. The framework I’m speaking for is Simple.Data, a very user-friendly, simple-to-install, quick-to-apply, open and lightweight framework.
After some tests I’ve started to write down an article, that should be taken like a reference due to missing information on official documentation.
You can find it here (in italian).
Hope this helps!
Stay Tuned! 🙂
Directly from the Microsoft Release Service blog, here is the list of latest updates for SQL Server 2014 RTM:
Cumulative Updates #6 for SQL Server 2014 RTM
You can download also the CU3 for SQL Server Reporting Services 2012 SP2, that fixes report rendering issues.
Stay Tuned! 🙂
EssentialSQL.com is a very useful resource for learning SQL Server.