BI

Power BI Report Server release schedule

Who is using Power BI Report Server in regular production with many users creating and publishing reports in Power BI Desktop is facing one crucial issue: there is regular monthly release for Power BI desktop but releases for Report Server for Power BI are coming unexpectedly even Microsoft has announced…

Read more
T-SQL

Comparing strings with trailing spaces

There is all the time confusion in the developer’s daily job how exactly is SQL Server handling padding spaces before and after strings in comparison and data persistence. Time to make it more clear now. The few most important things to remember are: SQL Server follows the ANSI/ISO SQL-92 specification…
Azure

Azure Data Studio

Azure Data Studio, formerly known as SQL Operations Studio, is a tool for basic SQL Server querying and administration on Windows, Mac-OS, and Linux. That it can be executed on other platforms then Windows is the main point why it was created and it’s the logical evolution of SQL Server…
T-SQL

Specifying FILEGROUP in SELECT * INTO

SQL Server 2017 and SP2 for SQL 2016 bring a small enhancement of SELECT .. INTO clause which offers more possibilities on how to solve some DBA head-scratching situations. It’s possible to specify FILEGROUP where the new table will be created. Till now it was only in the PRIMARY filegroup…

Read more
SQL Server

IDENTITY_CACHE and gaps in identity values chain

SQL Server 2016 brings a lot of new configuration options at the database level (DATABASE SCOPED CONFIGURATION) instead of at the instance level only. SQL Server 2017 adds to this list another new option. It’s called IDENTITY_CACHE and allows us to adjust if the IDENTITY values generator will use cache…
BI

Power BI Helper

Power BI Helper is a smart tool that allows us to analyze Power BI Desktop files or connect to the model running inside the Power BI Desktop instance and check various performance-related statistics or metadata. In the latest major update released in December 2019, it brings a huge list of…
BI

Jak zakázat přihlašovací dialog při spuštění Power BI Desktop?

Při spuštění Power BI Desktop nám stále vyskakuje přihlašovací formulář, který nás vybízí k registraci do powerbi.com nebo k přihlášení k již existujícímu účtu. Dialogy sice můžeme odklikat tím, že na prvním z nich zvolíme přihlášení k existujícímu účtu a následně přihlašovací formulář stornujeme, což ovšem není určitě ideální scénář,…

Read more
T-SQL

TRIM() přichází: LTRIM(RTRIM()) v propadlišti dějin

Nová funkce TRIM(), která přichází v SQL Serveru 2017, je opravu jen logickou kombinací dvou funkcí RTRIM() a LTRIM() vnořených do sebe, ale i tak se jedná o milé vylepšení T-SQL jazyka, který se tím kompatibilitou zase o kousek blíží SQL standardům implementovaných v konkurenčních RDBMS. Syntaktické a funkční srovnání…
T-SQL

TRANSLATE() jako alternativa k řetězení REPLACE() funkcí

Další novou zajímavou funkcí pro práci s řetězci v SQL Serveru 2017 je funkce TRANSLATE(), která funguje jako šikovná náhrada více REPLACE() funkcí vnořených do sebe. Funkce má tři vstupní parametry: TRANSLATE ( inputString, characters, translations) inputString je řetězec, v němž chceme provést nahrazení characters jsou znaky, které chceme nahradit…

Read more