(Robert Sheldon) There was a time that data seemed part of the application that maintained and used it. Now, there is increasing demand to deliver data through platform-agnostic open-standard APIs so it can be consumed in a variety of ways, whether refined, aggregated, or combined with additional in
Tag: sql server
SQL SERVER – Performance Counter Missing: How to Get Them Back?
(Pinal Dave) Of the thousands of mails I receive every day about SQL Server problems, I was recently pinged by a friend who reported a weird problem. He started with a simple question. He said that he wants to monitor SQL Server Performance counters for complete day to send a report back to his mana
How come sys.dm_exec_requests.cpu_time never moves?
(JackLi) Today, I want to point out another SQL Server 2012 SP2 fix that may affect your performance troubleshooting. When you are troubleshooting a long running query, chances are you will use sys.dm_exec_requests to look for progresses of the query. But one of the column – cpu_time is not accurate
Using the MERGE Statement to Perform an UPSERT
(Greg Larsen) The term UPSERT has been coined to refer to an operation that inserts rows into a table if they don’t exist, otherwise they are updated. To perform the UPSERT operation Microsoft introduced the MERGE statement.
Determine size of the file using T-SQL/Powershell/Ole Objects
(Prashanth Jayaram) There are many ways to find the filesize.
Versioning In Your SQL Database
(Chris Bell) Now, I’m not talking about version control, I am talking about stamping your database with a version number so you can keep track of how many modifications may be made in an environment not completely in your control.
Installing Teradata Client Tools to use with SQL Server Integration Services
(Junaith Haja) The company where I work migrated their data warehousing environment to Teradata. The requirement is to download and install the Teradata Client utilities to access the newly built data warehouse and to extract data from Teradata to SQL Server using SQL Server Integration Services.
Cardinality Estimation in SQL Server
(dbafromthecold) Each time you view a seek/scan operator in an execution plan, you may have noticed that there’s a value for the estimated number of rows and a value for the actual number of rows. Sometimes these values can be fairly similar and sometimes they can be very different.
Using Stored Procedures to Provide an Application’s Business-Logic Layer
(Dwain Camps) It is not a trivial matter to build the sort of multi-tier, web application that every corporation seems to want. It is too easy to end up with a morass of extremely complicated code that is difficult to get working correctly even with extensive testing, and it can furthermore be quite
SQL SERVER – Table Space Allocation Details using DMV
(Pinal Dave) Understanding SQL Server from inside-out is always something I have loved to learn from time to time. Recently, I was asking my good friend Balmukund on how are pages allocated inside SQL Server and what are the various ways to find the same.
