(Pinal Dave) SQL Server troubleshooting topics seem to be the most searched for in this blog. In continuation to this, blog for today is also inspired with one such error message. Some time back I have written below blog which talks about upgrade script mode of SQL Server:
Tag: sql server
Email Validation in SQL using Pattern Matching as a case study
(Niladri Biswas) This post is just to bring up some alternate uses of the ‘LIKE’ operator in SQL, probably as a possible alternative to regex – at least for a couple of scenarios.
Precalculated SQL Views data
(Jack Vamvas) Question: I have a SQL View returning data .The SQL Server View is not schema bound. Normally users do a SELECT col1,col2,col3 FROM MYVIEW . The data sets have grown and the users want to start filtering data , such as SELECT col1,col2,col3 FROM MYVIEW WHERE COL1 > xxxx.
Introduction to Storage Spaces Direct for SQL Server
(Glenn Berry) Windows Server 2012 introduced a new feature called Scale-Out File Server (SOFS). Historically, SOFS has mainly been used as a shared storage tier (as an alternative to a shared SAN) for Hyper-V virtualization hosts, but this feature is also useful for SQL Server 2012 and newer, which
SQL Server 2016 T-SQL Syntax to Query Temporal Tables
(Koen Verbeeck) I saw your first tip on SQL Server 2016 Temporal tables and they look like an interesting way for SQL Server to automatically keep history of data in a table. Is there any new T-SQL syntax introduced in SQL Server 2016 to support Temporal Tables? Can you provide examples on how to qu
How to get started with PolyBase in SQL Server 2016
(Robert Sheldon) With PolyBase, when you use SQL Server 2016 as your data source, you have easy access to Hadoop and Azure Blob Storage data from whatever environment you’re working in.
SQL Server Index Fragmentation In-Depth.
(Jordan Sanders) There is no way to avoid index fragmentation in any SQL Server environment. It does not depend on your SQL Server version or I/O subsystem you have, or your hardware. In this article, we will drill down into SQL Server index fragmentation issue.
Extract numbers from string using T-SQL
(Niladri Biswas) In many high end programming languages like C#, Java, JavaScript etc. they provide a feature call as regular expression to do this kind of operation and it is quite handy also for this kind of job. However, SQL Server is doesn’t provide such an option to do so. But with a little of
SQL SERVER – Taking Backup Without Consuming Disk Space
(Pinal Dave) Long back, I learned this trick and found an interesting use of it. I totally understand that its very dangerous. Recently I have seen someone getting bitten by this so thought of sharing.
Parsing Matched Events
(Jason Brimhall) I just covered the topic of matching events from definition on down through highlighting a common use for this type of target. With that in mind, it is now time to dive into how to extract the data from the session.
