Strive2CodeBlog author© 20252026-04-15T16:08:11ZMoonglade v14.20.0f7ece4a8-3d5d-4721-96ea-fc4a5fa6f304DevOps Friday: Migrating TFS instance to Azure DevOps2018-11-16T12:42:07Z2018-11-16T12:42:07ZAlex K.alex@strive2code.comIf you’re still using TFS, there are some benefits and reasons why you may need to migrate to Azure DevOps (formerly VSTS), which is a cloud version of TFS with the most recent features. One of the benefits you may consider is global availability, easy access for the external users, and the other benefits are access to the most recent features and potential savings on the infrastructure andcbb5188c-af15-413d-bac5-73145e94d43cSQL Server Database Export/Import operation in MS Azure2017-08-10T13:24:56Z2017-08-10T13:24:56ZAlex K.alex@strive2code.comThe beauty of Azure is that it has multiple ways to do the same thing. Imagine the scenario; you need to copy the database between subscriptions. Considering the SQL Server Import/Export procedure, you can do that either from the UI or use command line tools (like SQLPackage). The way it works with Azure UI, you go to the SQL Server database you want to export, and you have an option available (0cf282a5-250e-43e3-9a03-f6a0b278d219Hadoop2013-05-14T01:05:15Z2013-05-14T01:05:15ZAlex K.alex@strive2code.comIn a nutshell, Hadoop is an open-source project of the Apache Software Foundation that can be installed on a set of standard machines, so that these machines can communicate and work together to store and process large datasets. Hadoop has become very successful in recent years thanks to its ability to effectively crunch big data. It allows companies to store all of their data in one system and12c0013a-47ef-4435-b85a-ea755a688329JOIN operator for dummies2011-01-21T14:41:59Z2011-01-21T14:41:59ZAlex K.alex@strive2code.comДанная статья будет полезна новичкам и поможет в освоении оператора JOIN и в этом примере он будет рассмотрен в контексте языка T-SQL. Для визуализации работы запросов были также использованы диаграммы Венна, которые, как я надеюсь помогут вникнуть в смысл JOIN-ов. Для начала работы над примерами - предположим, что у нас есть 2 таблицы ('Таблица_1' слева и 'Таблица_2' справа), давайте заполним их6f3a455e-d0b0-4624-813c-b05839dc6328Useful T-SQL Scripts2011-01-20T14:43:58Z2011-01-20T14:43:58ZAlex K.alex@strive2code.comИногда, во время тестирования, бывает нужно удалить все данные из какой-нибудь конкретной БД (сценариев использования на самом деле больше). Вручную это делать неинтересно и временами нереально (при больших объемах данных), к тому-же, было-бы неплохо обнулить нумерацию в таблицах. Для это вводим следующий скрипт: EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL' GO EXEC sp_