SQL404
PowerShell Management for Your SSIS Packages
In addition to working on my database sharding presentation I've been working on upgrading an ETL framework. In learning this new framework I dug into the
SQL404
In addition to working on my database sharding presentation I've been working on upgrading an ETL framework. In learning this new framework I dug into the
microsoft sql
PowerShell Management for Your SSIS Packages by Shannon Lowder on 20131210 in Microsoft SQLIn addition to working on my database sharding presentation I’ve been working on upgrading an ETL framework. In learning this new framework I dug into the business logic as to what the framework was trying to
microsoft sql
Now that you've completed analyzing your current database, and worked through that list of items that won't work with Windows Azure SQL Database (WASD), it's
The Oozie coordinator showed green. Every action node in the workflow completed with status SUCCEEDED. The daily aggregation job had run, written its output to HDFS, and Oozie was happy. The output had zero rows. Nobody noticed for four days, because there was no alerting on output volume. The downstream
Schema drift is when your production database has diverged from what your source control says it should be. This happens constantly in environments where developers can make direct schema changes in SSMS, where "emergency fixes" get applied to production and the plan to commit them later never materializes,
microsoft sql
Last time I walked you through how to see if your database will work with Windows Azure SQL Database (WASD) using the Migration Wizard on Codeplex. It's an easy
microsoft sql
As promised we're going to dive into the details on how we would actually migrate the database from your on premise server to Windows Azure SQL Database. We're
Windows Azure
Let's continue our discussion on what it takes to migrate a database from SQL Server classic to Windows Azure SQL Database (WASD). At this point in the
microsoft sql
My system is down, what do I do? It's unfortunate, but sometimes a company has to experience a complete server failure before I'm invited to help. During these
microsoft sql
How long could your company go if your database server simply stopped? Many of my clients have never even thought about this question. It's a question you need
A dacpac is a zip file. Inside it: your database schema compiled into a model, and optionally, your reference data. You pass it to SqlPackage.exe, point it at a target database, and SSDT figures out the delta and applies it. This is SSDT's deployment model, and it&
Running tSQLt tests in SSMS is fine when you're developing. But tests that only run when a developer remembers to run them aren't really protecting you. The goal is tests that run automatically on every code change — before the change gets merged, before it gets deployed,