Newsletter Subject

Stairway to U-SQL Level 1: Introduction to U-SQL and Azure Data Lakes (SQLServerCentral 1/19/2018)

From

sqlservercentral.com

Email Address

subscriptions@sqlservercentral.com

Sent On

Fri, Jan 19, 2018 04:30 AM

Email Preheader Text

A community of more than 1,600,000 database professionals and growing Featured Contents - - - - - Th

[SQLServerCentral - www.sqlservercentral.com]( A community of more than 1,600,000 database professionals and growing Featured Contents - [Stairway to U-SQL Level 1: Introduction to U-SQL and Azure Data Lakes]( - [How to identify blocking in SQL Server]( - [Keeping track of history: SQL Compare and Temporal Tables]( - [Advent of Code 2017 Day 2–#SQLNewBlogger]( (From the SQLServerCentral Blogs) - [Summiting that Technical Challenge]( (From the SQLServerCentral Blogs) The Voice of the DBA How to Grow In Your Career This is [a great thread on Twitter]( from Jim Burger, a long time software developer. The thread is a distillation of how he keeps a passion for learning across decades. I think it's a good list of items, seven of them in total. I'll give a quick summary, but he has a bit more depth in each tweet. The seven are: - Invest in your brain - Embrace exploration - Find the fun in fundamentals - Mentors from from all kinds of places - Use the community as an opportunity - You don't have to finish learning - Ask people to ask you questions This is a great set of rules to help you learn. I certainly believe in the first one and that's one reason I preach for you to keep learning. You can always get a little better and grow your skills. Apart from the fun, it helps train your brain to keep growing and stay flexible. I also think that finding the fun in fundamentals is great. I appreciate the simple things I accomplish, and I like writing about those. Part of the reason I keep doing [#sqlnewblogger posts](. I also think the community is a huge help. Someone asks a question, and even if it gets answered before you can, use this as an opportunity to solve the problem. Answer a question in [our forums](. Lots of people learn by helping others solve problems. In fact, plenty of my learning has come from solving problems for others. I get blog fodder, test myself, and solidify my own understanding of how things work. If you've found a way to continue to have fun learning, let us know today. I know that I tend to do a little but of everything, but certainly I take pride in what works, and even what doesn't. The latter is always an opportunity for me to learn a bit more. Steve Jones from [SQLServerCentral.com]( Join the debate, and [respond to today's editorial on the forums]( --------------------------------------------------------------- The Voice of the DBA Podcast Listen to the [MP3 Audio]( ( 2.9MB) podcast or subscribe to the feed at [iTunes]( and [Libsyn](. [feed]( The Voice of the DBA podcast features music by Everyday Jones. No relation, but I stumbled on to them and really like the music. ADVERTISEMENT [Redgate Hub]( Watch SQL in the City Streamed 2017 The livestream recording for Redgate's December 2017 virtual event is now available. Technical sessions went into the latest Microsoft SQL Server releases, and covered topical issues such as DevOps, data compliance, protection & privacy. [Watch the recording]( [SQL Clone]( SQL Clone: Now supporting databases up to 64TB Create copies of production databases and SQL backups in seconds and save up to 99% of disk space using SQL Clone. Redgate’s new tool removes much of the time and resource needed to create and manage database copies, allowing teams to work on local environments to develop, test and diagnose issues faster. [Try it free]( Featured Contents  [] [Stairway to U-SQL Level 1: Introduction to U-SQL and Azure Data Lakes]( Mike McQuillan from [SQLServerCentral.com]() An introductory guide to querying files in Azure Data Lakes using Microsoft's U-SQL language.[More »]( ---------------------------------------------------------------  [] [How to identify blocking in SQL Server]( Blocking happens when one connection from an application holds a lock and a second connection requires a conflicting lock. This forces the second connection to be blocked until the first connection completes. [More »]( ---------------------------------------------------------------  [] [Keeping track of history: SQL Compare and Temporal Tables]( SQL Compare 13 introduces support for deploying changes to temporal tables, which were introduced in SQL Server 2016. This means that any changes made to the definition of a temporal table in a source database, including to the retention policy for that table, will be included automatically in any deployment script that SQL Compare generates for that database.[More »]( ---------------------------------------------------------------  [] From the SQLServerCentral Blogs - [Advent of Code 2017 Day 2–#SQLNewBlogger]( Steve Jones from [SQLServerCentral Blogs]( Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...[More »]( ---------------------------------------------------------------  [] From the SQLServerCentral Blogs - [Summiting that Technical Challenge]( Jason Brimhall from [SQLServerCentral Blogs]( Conquering Challenges I really like the topic of the TSQLTuesday party today. Today we have been instructed in no uncertain terms...[More »]( Question of the Day Today's Question (by Steve Jones): I've got this table and data: CREATE TABLE TheCounts ( intcol INT , charcol CHAR(10) , varcharcol VARCHAR(100) , datecol datetime2 ) GO INSERT TheCounts VALUES (1, 'West', 'Denver Broncos', '2018-01-01') , (2, 'West', 'Oakland Raiders', '2018-01-01') , (3, 'West', 'Los Angeles Chargers', '2018-01-01') , (4, 'West', 'Kansas City Chiefs', '2018-01-01') , (5, 'South', 'Jacksonville Jaguars', NULL) , (5, 'South', NULL, '2018-01-02') , (6, NULL, 'Indianapolis Colts', NULL) , (7, NULL, 'Houston Texans', NULL) , (NULL, 'North', 'Pittsburgh Steelers', NULL) , (NULL, 'North', 'Baltimore Ravens', '2018-01-03') , (NULL, 'North', 'Cincinnati Bengals', NULL) , (NULL, 'North', 'Cleveland Browns', NULL) , (13, 'East', 'Cleveland Browns', '2018-01-04') , (13, 'East', 'Cleveland Browns', '2018-01-04') , (14, 'East', 'Cleveland Browns', '2018-01-04') , (14, NULL, 'Cleveland Browns', NULL) What do I get when running this code? SELECT COUNT(DISTINCT charcol) FROM dbo.TheCounts AS tc Think you know the answer? [Click here](, and find out if you are right. --------------------------------------------------------------- We keep track of your score to give you bragging rights against your peers. This question is worth 1 point in this category: count(). We'd love to give you credit for your own question and answer. To submit a QOTD, simply log in to the [Contribution Center](. ADVERTISEMENT [Pro Power BI Desktop]( This book shows how to deliver eye-catching Business Intelligence with Microsoft Power BI Desktop. You can now take data from virtually any source and use it to produce stunning dashboards and compelling reports that will seize your audience’s attention. Slice and dice the data with remarkable ease then add metrics and KPIs to project the insights that create your competitive advantage. Yesterday's Question of the Day Yesterday's Question (by George Copeland): In SQL Server 2015, with an English default (code page 1252), look at this code: --Declare a table variable with a varchar column and insert the following values-- INSERT @TableAsc VALUES (CHAR(65) + '-Uppercase A') ,(CHAR(1) + '-Start of header') ,(CHAR(126) + '-Tilde ~') ,(CHAR(32) + '-Space') ,(CHAR(45) + '-Dash') SELECT * FROM @TableAsc ORDER BY Value COLLATE Latin1_General_CI_AS Which row orders at the top? Answer: Space Explanation: The Char(32) space maps to the lowest code page value for Code Page 1252 Windows Latin 1 (ANSI). Use collation Latin1_General_BIN for binary order. Ref: Code Page 1252 --------------------------------------------------------------- [» 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]( : [SQL Server 2017 - Administration]( [Should maintenance database be part of availability group ?]( - Hi, I have a custom maintenance and monitor database, which keeps history on database sizes, agent jobs, logon information and things... --------------------------------------------------------------- [SQL Server 2016]( : [SQL Server 2016 - Administration]( [Memory pressure and SQL errors]( - After migration from 2008R2 to 2016, we are plugged with unexplained SQL errors like "cannot continue the execution because the... [TDE administration for 500 databases]( - Good morning All I have a few questions about TDE for sql 2016 We planning to implement TDE for 500 prod databases,... [Update Statistics : _WA_Sys_0000000 ... Type]( - Dear all, I was looking at the statistics of OLA jobs related with Update Statistics command. BElow you can find the result... [Setting up SSRS Availibilty groups on SQL 2016 Enterprise]( - Are you able to add reportserverdb and reportservertempdb to an existing always on group or do they have to be... [Suspect database - not urgent]( - Had an issue recently where I found a database in Suspect mode. No access was possible. Started to look through logs... --------------------------------------------------------------- [SQL Server 2016]( : [SQL Server 2016 - Development and T-SQL]( [How do you store and retrieve useful scripts?]( - Hello, During my time as a DBA I find that I collect useful scripts to help me identify data, deadlocks, security,... --------------------------------------------------------------- [SQL Server 2014]( : [Administration - SQL Server 2014]( [WHY IT IS RECOMMENDED TO ASSIGN A GOOD AMOUNT SPACE TO INITIAL SIZE OF MDF FILE ?]( - Hi all, I have a question why and how it can be concluded that the initial size should be change from... [Zip XML data]( - Hi Experts, We are creating an archival plan for one of our table which stores json data in nvarchar(max). We planned... [SQL AlwaysOn Availability Group - Secondary can not decrypt database master key (DMK)]( - I have an encrypted database in SQL AlwaysOn availability group. This issue is pretty simple, I have the following error... [How to use HAVING with MAX on dates.]( - Hi, I need to do a report for sales reps showing the customers that haven;t ordered between a set of chosen... --------------------------------------------------------------- [SQL Server 2014]( : [Development - SQL Server 2014]( [Grouping records with dynamic groups for report]( - Hello All, I'm not sure what is the best what to do this. I need to create groups for banding on... [UPDATE() function in a trigger]( - I have a database environment to support that features instead-of triggers on views (shudder!!). They work but are quite inefficient... [Searching a comma delimited string using wildcard multiple values]( - Hello all, I wasn't sure where exactly to create this question since the ultimate product is going into an SSRS report,... [Finding Table Constraints With Column Level Detail]( - Hi All, Could anyone please advise how to go about finding table constraints down to the column level, to show which... --------------------------------------------------------------- [SQL Server 2012]( : [SQL Server 2012 - T-SQL]( [Get min and max of columns of Table with the recursion checking]( - Below is my requirement. I have given the one material number YHE30B21S as example. --------------------------------------------------------------- [Programming]( : [General]( [Anyone using Python?]( - This was brought up in the automate everything article, so I figured I start a new thread on the topic. Anyone... [Operation is not allowed when Object is Closed]( - Hi, I have a SP which gives the me the report of 12 months. I have a query in WHILE LOOP which execute... --------------------------------------------------------------- [Data Warehousing]( : [Integration Services]( [Execute SQLs in Parallel using SSIS]( - Hello, I have a unique situation where i need to execute all the SQLs sitting in the directory on same server... --------------------------------------------------------------- [Database Design]( : [Relational Theory]( [Defining keys as sets that must not intersect instead of scalar values that must not be equal]( - I have been doing a lot of thinking about data models for the last couple of weeks. I have, just... 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](. Feel free to forward this to any colleagues that you think might be interested. If you have received this email from a colleague, you can register to receive it [here](. --------------------------------------------------------------- This transmission is ©2018 Redgate Software Ltd, Newnham House, Cambridge Business Park, Cambridge, CB4 0WZ, United Kingdom. All rights reserved. Contact: webmaster@sqlservercentral.com

Marketing emails from sqlservercentral.com

View More
Sent On

17/06/2024

Sent On

15/06/2024

Sent On

14/06/2024

Sent On

12/06/2024

Sent On

10/06/2024

Sent On

08/06/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–2024 SimilarMail.