Newsletter Subject

Understanding Maximum Server Memory in SQL SERVER (2023-12-27)

From

sqlservercentral.com

Email Address

subscriptions@sqlservercentral.com

Sent On

Wed, Dec 27, 2023 08:00 AM

Email Preheader Text

SQLServerCentral Newsletter for December 27, 2023 Problems displaying this newsletter? . Featured Co

SQLServerCentral Newsletter for December 27, 2023 Problems displaying this newsletter? [View online](. [SQL Server Central]( Featured Contents - [Understanding Maximum Server Memory in SQL SERVER]( - [Most Overlooked Features in Power BI]( - [From the SQL Server Central Blogs - Friday Flyway Tips–Deploying Migrations with a Target]( - [From the SQL Server Central Blogs - BUILTINAdministrators in SQL Server on Linux]( - [Big Data Analytics with Spark: A Practitioner's Guide to Using Spark for Large Scale Data Analysis]( Question of the Day - [The FK Columns]( The Voice of the DBA  Some Relief But Still Some Concern Years ago Andy Warren and I were talking about the Database Weekly newsletter and what we wanted to include in each edition. We knew there wasn't enough news on a weekly basis, so we decided that we'd add blogs from various individuals as well as press releases, patches, and other items related to databases and SQL Server. At some point, we realized we were getting older and one of the unfortunate things that happen is people pass away. We thought about including obituaries as well since we knew a lot of people and we wanted to remember them. We did and this evolved into [sqlmemorial.org]( which I maintain out of a [repo online](. I got a notice to renew the domain recently and I realized that I hadn't updated this site in quite some time. That's a relief and I was glad that I haven't gotten any notes about anyone in the data community dying. At the same time, I worry that I've missed someone who participates in the #sqlfamily online, at events, or just has developed a brand and presence in our community. I see a lot of news, but I get busy like most of us and am not always in touch with all communities around the world. Since the decay of Twitter and the scattering of places where people congregate online, it seems there is less interaction and less of a place to see news posted and re-posted by others. I used to hear about a lot of people passing on from Twitter, but these days that doesn't happen. Hopefully, because people aren't leaving our community that often. I remember when Jim Gray was lost and my surprise at his death. I didn't know him, but I had seen him speak. To me, [Robert Davis]( [Euan Garden]( and [Brian Moran]( were shocking. Those were people I'd had many conversations with, shaken their hands and hugged them, and shared meals with them. [Tom Roush]( probably touched me the most, though I knew him through his cancer treatment and I wasn't shocked when he passed. I know quite a few of the people on the list at SQLMemorial, but not as well as knew those gentlemen. I'm at the age where I see more funerals than weddings. I've had friends pass, some far too young, and I try to remember that as I go through life, appreciating the good things I experience. If you know of someone who has passed, please send me a note, a link to an obituary, or write your own statement of their life and include it in an email. Fork the [SQL Memorial repo]( and submit a pull request so we can remember their life. Steve Jones - SSC Editor [Join the debate, and respond to today's editorial on the forums](   Featured Contents [SQLServerCentral Article]( [Understanding Maximum Server Memory in SQL SERVER]( Parthprajapati from SQLServerCentral This short piece explains the value of maximum server memory and shows you how to change this. [External Article]( [Most Overlooked Features in Power BI]( Additional Articles from MSSQLTips.com Learn about some of the overlooked but extremely useful features when building Power BI reports and dashboards. [Blog Post]( From the SQL Server Central Blogs - [Friday Flyway Tips–Deploying Migrations with a Target]( Steve Jones - SSC Editor from The Voice of the DBA Recently I was working with Flyway Desktop (FWD) and helping a customer work on deploying part of their work. They weren’t sure how easy this could be, but this... [Blog Post]( From the SQL Server Central Blogs - [BUILTINAdministrators in SQL Server on Linux]( dbafromthecold@gmail.com from The DBA Who Came In From The Cold When I first started working with SQL on Linux one of the first things I did was to remove the default the [BUILTINAdministrators] login. This is pretty much standard... [Big Data Analytics cover]( [Big Data Analytics with Spark: A Practitioner's Guide to Using Spark for Large Scale Data Analysis]( Site Owners from SQLServerCentral Big Data Analytics with Spark is a step-by-step guide for learning Spark, which is an open-source fast and general-purpose cluster computing framework for large-scale data analysis. You will learn how to use Spark for different types of big data analytics projects, including batch, interactive, graph, and stream data analysis as well as machine learning. In addition, this book will help you become a much sought-after Spark expert.   Question of the Day Today's question (by Steve Jones - SSC Editor):  The FK Columns I am searching in my SQL Server 2022 database for a list of columns that are used in Foreign Keys to help compile help for developers. Where do I query for the columns used in FKs? 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) Santa Fun Which of these T-SQL constructs suits Santa Claus? Answer: dbcc checkdb ('GiftRequestDB'), ORDER BY Naughty_Or_Nice, WHERE Behavior = 'Nice', OVER (PARTITION BY ChildName ) Explanation: Any answer works. Merry Christmas!!! [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 [Arctic Wolf flooding SQL error log]( - Hello experts, I am not sure if anyone uses Arctic Wolf for a security tool, but we recently implemented it and one thing it does is penetration testing and vulnerability scanning on our SQL Servers. Our IT team has this turned this feature on as they want to make sure things are secure, but it […] SQL Server 2017 - Development [Query]( - ServerName DatabaseName DatabaseSize(MB) Date Server DBName Size Date A DB 110 6/1/2023 A DB 113 7/1/2023 A DB 118 8/1/2023 A DB 130 9/1/2023 A DB 120 10/1/2023 A DB 140 11/1/2023 A DB 143 12/1/2023 A DB2 1110 6/1/2023 A DB2 1113 7/1/2023 A DB2 1118 8/1/2023 A DB2 1130 9/1/2023 A DB2 1120 […] SQL Server 2016 - Administration [emergency!!! RecoveryPending how to fix it?]( - How to fix Recovery Pending State in SQL Server Database,please help SQL Server 2016 - Development and T-SQL [housekeeping of millions of records on everyday basis]( - Hello!! We are building our system that will be up and running for 24x7 365 days. the data will be generated in millions each day. Kindly help with the best practices material where in we can implement smooth house keeping processes on each table so as to not to load the tables as well as […] [send csv file or txt file to sftp server]( - Hello Can someone help me with code to send file to sftp server please: Here is my code: # SQL Server query $Query = "SELECT name from tblName" $SqlConnection = New-Object System.Data.SqlClient.SqlConnection $SqlConnection.ConnectionString = "Server=CWR-PP02;Database=testdb;Integrated Security=True" $SqlCmd = New-Object System.Data.SqlClient.SqlCommand $SqlCmd.CommandText = $Query $SqlCmd.Connection = $SqlConnection $SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter $SqlAdapter.SelectCommand = $SqlCmd $DataSet = […] SQL Server 2019 - Development [Get text from table and join with BIT column on table 2]( - Ok, not sure how to explain this 100%. Here is the issue. I have 2 tables (can't post actual schema) and I need to determine if the value in table 2 is true if the value in table 1 exists. small snippet of the table schema: table 1 id int field varchar id field 1 […] [Validation of special char and replace for the good one]( - Hello I need help on how to do this more efficient. I will need to write a store procedure to validate an address which contains special characters Address is like : Street : Las Ñipas 4264 So i need to remove the Ñ and replace it for N I was reading to use collate SQL_Latin1_General_CP1253_CI_AI […] [Query to get the previous row from the row selected]( - Hi I have payroll detail table in which I have payroll details id and an employee id (foreign key from employee table). My requirement is, when a row is selected for a particular employee, I want to get the value from a the previous row. For example if I have 3 employees and each have […] [How to write to a file from SQL Server running on Docker Container on Linux]( - So we have a SQL Server database running in a Docker Container on Linux There is a stored procedure which will take in JSON as a parameter and extracts data out into a table called dbo.BCPOutput Now I can run this from SQL Server Management Studio (in SQLCMD mode) :connect 217CAS -U sa -P xxxxxxx […] SSRS 2012 [SSRS Open link in new tab]( - Hello! I have a report that lists all reports in folders on the report server, if you click on the report name I want it to open a new tab with that report. So I am not sure where I am going wrong. I am building my URL link to other reports on the server […] Analysis Services [Help on Aggregation]( - Recently started SSAS. I have a Date Dimension, Day --> Month --> Quarter --> Year and a simple Sales Fact table. I want to calculate the percentage and aggregate only if the percentage is => 75% (please see image) on the DimDate Hierarchy. So below (showing Quarter to Year), the Q3 of 60% shouldn't be […] [Calculated Time Periods Hierarchy]( - Please help me understand why I am getting the following error: "A set has been detected that can't contain calculated members." I have Attributes "Dates" and Hierarchies "Calendar" (YearID/QuarterId/MonthId/dtDate). I've created  Calculated Member a "Current Month" for the parent hierarchy «Dates.Calendar.[all]». CREATE MEMBER CURRENTCUBE.[Dates].[Calendar].[All].[Current Month] AS StrToMember("[Dates].[Calendar].[Month Id].&[" + Format(now(), "yyyyMM") + "]"), VISIBLE = […] [Calculated Time Periods Hierarchy]( - please help me figure out why I'm getting the following error: I need to create Calculated Member for "yesterday", "current month", "current year", but but I keep getting an error message please help me figure out why I'm getting the following error: "A set has been encountered that cannot contain calculated members." I have Attributes […] SQL Server 2022 - Administration [Moving database servers - IP address change - listeners]( - Hi, We will be moving our physical database servers to a new location. Prior to the move, new IP address for all the SQL servers will be changed/updated.   Are the IP address listed above for the cluster server? After the servers are moved will I need to change the IP address for the […] SQL Server 2022 - Development [Replication for archive server with longer retention period]( - I want to set up SQL Server transactional replication from a main SQL Server to an archive SQL Server. The archive will contain historical data and have a retention period much longer than the main server. Data will be purged by application code on both the main and archive servers, and the archive will be […]   [RSS Feed]( 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  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Marketing emails from sqlservercentral.com

View More
Sent On

01/06/2024

Sent On

31/05/2024

Sent On

29/05/2024

Sent On

27/05/2024

Sent On

24/05/2024

Sent On

22/05/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.