Newsletter Subject

Stairway to Biml Level 8 – Using the Relational Database Metadata to Build Packages (2020-12-16)

From

sqlservercentral.com

Email Address

subscriptions@sqlservercentral.com

Sent On

Wed, Dec 16, 2020 11:59 AM

Email Preheader Text

 SQLServerCentral Newsletter for December 16, 2020 Problems displaying this newsletter? . Featured

 SQLServerCentral Newsletter for December 16, 2020 Problems displaying this newsletter? [View online](. [SQL Server Central]( Featured Contents - [Stairway to Biml Level 8 – Using the Relational Database Metadata to Build Packages]( - [Deploy Database Objects to Multiple SQL Server Instances Using PowerShell]( - [Effective Data Governance: Being Grown Up About Data]( - [Free eBook: Fundamentals of SQL Server 2012 Replication]( - [From the SQL Server Central Blogs - Migrating from SQL Server to Amazon AWS Aurora]( - [From the SQL Server Central Blogs - Provisioning storage for Azure SQL Edge running on a Raspberry Pi Kubernetes cluster]( Question of the Day - [The Classifier]( The Voice of the DBA  Daily Coping Tip Listen wholeheartedly to others without judging them I also have [a thread at SQLServerCentral]( dealing with coping mechanisms and resources. Feel free to participate. For many of you out there working in a new way, I'm including a thought of the day on how to cope in this challenging time from [The Action for Happiness Coping Calendar](. My items will be on [my blog](, feel free to share yours. Your User Group Goals Many of you reading this piece have likely been to a user group at some point in your career. Some may go every month, some may go a once or twice annually , and some may not have been for years. I also know some of you don't have a group in your area, or perhaps not enough people for a SQL Server group, but I would bet if you are working in technology, there are enough people to have some sort of technology group, perhaps even an online [book club](. Recently I was speaking with Andy Warren about [his group in Orlando](. He's preparing to turn over leadership of the group to others, and [he's actually looking for comments]( on the docs he's put together. I'd urge you to take a moment and think about your group and how you want it structured and check out what Andy has done. He'd appreciate comments on his effort, whether you are in leadership or just show up at meetings. Our discussion, however, was on goals. What goals are appropriate for the group, and what guidelines should he leave for others. He's tended towards goals of "more", meaning more people touched, more attendance at meetings, more events. I've tended to aim for more ensuring you keep people interesting, inspired, and with some engagement, but not worried about size. Whether you are in the leadership of a group, just an attendees, or wish you had a more interesting group of technical people to meet with regularly, what do you wish your group would accomplish next year? Are there things that matter to you for an organization outside of work that might help your career? Take a minute to think and leave me a comment today. Steve Jones - SSC Editor [Join the debate, and respond to today's editorial on the forums](   Featured Contents [Stairway to Biml]( [Stairway to Biml Level 8 – Using the Relational Database Metadata to Build Packages]( Andy Leonard from SQLServerCentral.com In this next level of the Stairway to Biml, we will examine how you can use the information stored in your RDBMS to build packages. [Deploy Database Objects to Multiple SQL Server Instances Using PowerShell]( Additional Articles from MSSQLTips.com In this article we look at a PowerShell script that can help you deploy database objects to multiple SQL Server instances. [Effective Data Governance: Being Grown Up About Data]( Additional Articles from Redgate William Brewer explains how to make data governance a continuous organizational activity, based on well-established standards and practices, rather than a knee-jerk response, and which skills and tools will help you achieve compliance, including SQL Data Catalog for discovery and classification of data held in SQL Server. [Free eBook: Fundamentals of SQL Server 2012 Replication]( Press Release from Redgate Fundamentals of SQL Server 2012 Replication provides a hands-on introduction to SQL Server replication. The book introduces you to the technologies that make up replication, and then walks you through setting up different replication scenarios. When you've finished reading, you should be able to implement your own multi-server replication setup while following the principle of least privilege. From the SQL Server Central Blogs - [Migrating from SQL Server to Amazon AWS Aurora]( Daniel Janik from Confessions of a Microsoft Addict Is Microsoft’s licensing scheme getting you down? It’s 2020 and there are now plenty of data platforms that are good for running your enterprise data workloads. Amazon’s Aurora PaaS... From the SQL Server Central Blogs - [Provisioning storage for Azure SQL Edge running on a Raspberry Pi Kubernetes cluster]( dbafromthecold@gmail.com from The DBA Who Came In From The Cold In a previous post we went through how to setup a Kubernetes cluster on Raspberry Pis and then deploy Azure SQL Edge to it. In this post I want...   Question of the Day Today's question (by Steve Jones - SSC Editor):  The Classifier What does the classifier() function do in R? Think you know the answer? [Click here]( and find out if you are right.    Yesterday's Question of the Day (by Steve Jones - SSC Editor) A Minor Problem Don't run this code, but there is a problem in it. There is a dbo.Day2 table with a datavalue column and no other tables in the database. What is the problem? WITH cteData (lowerbound, upperbound, letter, pwd) AS ( SELECT SUBSTRING(datavalue, 1, CHARINDEX('-', datavalue) - 1) as lowerbound , SUBSTRING(datavalue, CHARINDEX('-', datavalue) + 1, CHARINDEX(' ', datavalue) - CHARINDEX('-', datavalue) - 1) as upperbound , SUBSTRING(datavalue, CHARINDEX(' ', datavalue) + 1, 1) , SUBSTRING(datavalue, CHARINDEX(':', datavalue) + 2, 50) FROM dbo.Day2 AS d) , cteSolution (occ, valid) AS ( SELECT LEN(d.pwd) - LEN(REPLACE(pwd, d.letter, '')) AS occ , CASE WHEN LEN(d.pwd) - LEN(REPLACE(pwd, d.letter, '')) >= d.lowerbound AND LEN(d.pwd) - LEN(REPLACE(pwd, d.letter, '')) <= d.upperbound THEN 1 ELSE 0 END AS valid FROM dbo.cteData AS d) SELECT COUNT(*) FROM cteSolution WHERE valid = 1; GO Answer: The second CTE has a syntax error Explanation: The problem with this code is in the second CTE. The FROM clause lists the cte as dbo.cteData. There is no schema qualification on the CTE. Ref: CTE - [Discuss this question and answer on the forums](    Database Pros Who Need Your Help Here's a few of the new posts today on the forums. To see more, [visit the forums](. --------------------------------------------------------------- SQL Server 2017 - Administration [Chance data Capture with AG]( - Since CDC uses log reader to read the changes from the Log. If the SQL server is configured for AOAG group, I was thinking to enable the CDC on secondary replica instead of primary replica. Would you see any issues with this setup? I am thinking Change data capture are not supported on secondary databases that […] [TDE- Transparent Data Encryption related question]( - Hi Experts, Looking for suggestions on TDE encryption. We have a 3TB database in UAT env. Its in 2-node(node-A, node-B) Alwayson AG. SQL Server version is SQL 2017 EE CU22. We turned on TDE encryption node-A. It took more than 12 hours and completed of about 40% encryption. Meanwhile, unexpected failover occured. we brought it […] SQL Server 2017 - Development [Extract data with variable column names and order]( - Hi guys, Just looking for any good suggestions on how to tackle this problem. I have a table of attributes which are held in very wide sparsely populated table (at least it's not EAV!). For display purposes in the application there is a separate table that defines which columns are being used, their display order […] SQL Server 2016 - Development and T-SQL [Help Transforming TSQL to MSSQL]( - Hello, I am not great with SQL and the statement I wrote is in TSQL and it is working. I would like this same statement to run in MSSQL, can you please restate it correctly or put me on the right track? It is the With statement that is killing me! I think it needs […] [Enabling FileStream in AG participated Database]( - Hi team, I was asked to enable FileStream for one of the existing varbinary(max) column in existing table. It is already participating in Avalability Group where we have 1 primary & 1 secondary server. Now as part of the change, i am doing the below Enable FileStream at instance level by enabling it via SQL […] SQL Server 2019 - Administration [Perf hit for Increasing tran log frequency]( - we are currently doing a 1 hour tran log backup for a system, I'd like to push that up to 1 minute. Is there a performance hit to be concerned about with doing this? I've gotten some pushback regarding performance and doing tran log backups this frequent. My view is that each hit will be […] [tlog back up and normal restore back migration]( - Hi Expert,  why there is less down time in tail log backup as compared to the normal backup and restore in migration  Shree [SQL Server Agent Failing After Windows Shutdown]( - Hi All~ Where I work, we have Azure SQL Server that we are connecting to through SSMS. I have created several SQL Server Agent Jobs, using my own login as a Proxy. These jobs run a VBS Script (using a command line) that uploads data into our db, creates reports, and moves and manipulates files […] [Database Mail - Times out]( - Hello All, I have a lovely program called "TreeSize" on my SQL Server that can send an email out via SMTP just fine. I decided to try setting up Database Mail so I can get email alerts when Backups complete, etc. I am following these steps: Again, my TreeSize Application can send mail no […] SQL Server 2019 - Development [SQL Spatial - find all locations within X distance of a point.]( - I have a really stupid question, and I'm betting the answer is "Well, what happened when you actually ran the query?", but I'll ask anyway. (Maybe I just need a bigger spatial dataset). Say I have a center point P that's my location. I can do all the "find the distance" stuff just fine using […] [nested while]( - CREATE Table TABLEA(N varchar(50),Q int,R int) ALTER PROCEDURE [dbo].[SP](@N varchar(100),@Q int=0,@R int=0) AS BEGIN DECLARE @I int = 1 BEGIN WHILE (@I <= @R) BEGIN WHILE (@I <= @Q) BEGIN INSERT INTO [dbo].[TABLEA] SELECT @N,@Q,@R SET @Q = @Q - 1 END SET @R = @R -1 END END END exec [dbo].[SP] 'NameA',10,2 Current TableA […] SSRS 2016 [Execution Log Clean Up]( - The task that cleans up out of date execution log entries runs at 0200 every morning. This is not an ideal time for us because we're a 24 hour business and the most important times for are actually overnight. There have recently been complaints raised because SSRS is unavailable for a short period at 0200 […] Integration Services [SIS gets stuck on data flow task loading screen upon opening project]( - I'd like to start by mentioning that I have searched for this topic, although there are similar solutions out there, I haven't found one specific to my case and others I've tried haven't worked, so I am seeking any help relating to my issue. In SSIS, Anytime I open a project, whether I import it […] Anything that is NOT about SQL! [Searching for PII Data in Teams and Outlook]( - I've been performing a a Proof-of-Concept within our business, showing how Redgate's various tools can help the company to keep a track of PII data and let us use databases that have PII data as the basis for QA and Dev environments. One of the conversations with our InfoSec people raised a question that they […] PostgreSQL [OLE DB provider "PGNP" for linked server "MyLinkedServer" reported an error]( - Hi, I am trying to migrate SQL Server databases from 2008 to 2019. My old server has a linked server to PostgreSQL (version 8) I've installed the driver and created the linked server: I've installed the driver and created the linked server: EXEC master.dbo.sp_addlinkedserver @server = N'MyLinkedServer', @srvproduct=N'MyLinkedServer', @provider=N'PGNP', @datasrc=N'N'MyLinkedServer', @provstr=N'PORT=5432;CNV_SPECIAL_FLTVAL=ON;', @catalog=N'MyDB' ... The linked […]   [RSS Feed]([Twitter]( This email has been sent to {EMAIL}. To be removed from this list, please click [here](. If you have any problems leaving the list, please contact the webmaster@sqlservercentral.com. This newsletter was sent to you because you signed up at SQLServerCentral.com. ©2019 Redgate Software Ltd, Newnham House, Cambridge Business Park, Cambridge, CB4 0WZ, United Kingdom. All rights reserved. webmaster@sqlservercentral.com  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

EDM Keywords (230)

years wrote worried working worked work wish went well want walks voice visit view valid used use us urge upperbound unavailable turned turn tsql trying tried track tools took today time thread thought thinking think things tended technology technologies teams task take tackle tables table system supported suggestions structured steps statement start stairway ssrs ssms sql speaking sort skills signed show share setup setting sent send seeking see searched running run restore respond replication removed regularly redgate recently reading read rdbms question query qa put push proxy proof problem principle preparing post point plenty piece perhaps performing participate part outlook others orlando open one newsletter need mssql moves moment minute microsoft mentioning meetings meet meaning may matter many make lowerbound looking look login log location likely like letter less len leave least leadership know killing keep items issues issue introduction installed including import implement hit help hello held happened hands guidelines grown group great gotten good goals frequent forums following fine find examine events ensuring engagement enabling enable email editorial eav driver done docs discovery defines decided debate dba day database currently ctesolution cte created correctly cope conversations connecting configured confessions concerned completed compared company comments columns cold code cleans classifier classification check changes change cdc case career came brought biml betting basis attributes attendees attendance asked article area appropriate application anything answer andy also aim action able 2020 2019 2008

Marketing emails from sqlservercentral.com

View More
Sent On

11/11/2024

Sent On

28/10/2024

Sent On

16/10/2024

Sent On

09/10/2024

Sent On

07/10/2024

Sent On

05/10/2024

Email Content Statistics

Subscribe Now

Subject Line Length

Data shows that subject lines with 6 to 10 words generated 21 percent higher open rate.

Subscribe Now

Average in this category

Subscribe Now

Number of Words

The more words in the content, the more time the user will need to spend reading. Get straight to the point with catchy short phrases and interesting photos and graphics.

Subscribe Now

Average in this category

Subscribe Now

Number of Images

More images or large images might cause the email to load slower. Aim for a balance of words and images.

Subscribe Now

Average in this category

Subscribe Now

Time to Read

Longer reading time requires more attention and patience from users. Aim for short phrases and catchy keywords.

Subscribe Now

Average in this category

Subscribe Now

Predicted open rate

Subscribe Now

Spam Score

Spam score is determined by a large number of checks performed on the content of the email. For the best delivery results, it is advised to lower your spam score as much as possible.

Subscribe Now

Flesch reading score

Flesch reading score measures how complex a text is. The lower the score, the more difficult the text is to read. The Flesch readability score uses the average length of your sentences (measured by the number of words) and the average number of syllables per word in an equation to calculate the reading ease. Text with a very high Flesch reading ease score (about 100) is straightforward and easy to read, with short sentences and no words of more than two syllables. Usually, a reading ease score of 60-70 is considered acceptable/normal for web copy.

Subscribe Now

Technologies

What powers this email? Every email we receive is parsed to determine the sending ESP and any additional email technologies used.

Subscribe Now

Email Size (not include images)

Font Used

No. Font Name
Subscribe Now

Copyright © 2019–2025 SimilarMail.