Skip to content
Advertisement

How to find Expr#### in Execution Plan

When looking at the actual execution plan for a query in SQL Server Management Studio (SSMS), how do I determine what an expression such as Expr1052 represents? When I identify the costly parts of the query and look at the properties of that operation, there are often references only to these Expressions, or scalar operators. I want to be able

What are NDF Files?

SQL Server uses MDF for data files and LDF for log files, but what are NDF files? Whats the benefits of these files?

Sql select rows containing part of string

I want to write a comparation procedure (t-sql) for site seo. I have a table with field ‘url’ (nvarchar()) that contain a part of site url’s. Ex: ‘mysyte.com/?id=2’. Also this table for each url contains metadata, that i need to extract. The main problem is that full url on site looks like ‘mysyte.com/?id=2&region=0&page=1’, and i just need to ignore everething,

Advertisement