Automate Power BI desktop data model with a PowerShell script
Learn how you can use PowerShell to update the Power BI data model.
Learn how you can use PowerShell to update the Power BI data model.
Learning to efficiently manage time in a team is hard. Steve has a few ideas today, based on a book.
In this article, we will look at how to use an Azure Databricks Workspace to explore Hive tables using Spark SQL along with several examples.
However chaotic or predictable your DevOps processes currently are, the new video learning pathway from the Redgate University will help you prioritize what to improve first, provide step-by-step guidance on how to implement those improvements, and show you ways to measure them. Start learning.
If you're an experienced, knowledgeable, seasoned (I won't say old), SQL Server data professional, and you choose to use Trace Events (Profiler), more power to you. That's it. That's all I have to say. Do what you think best. I'm never, ever (again), going to second guess you. Further, my apologies for ever having done […]
This article goes into a framework for tracking data manipulation activity using a few triggers.
Every enterprise is now facing the same challenge: to do more with less in a demanding economic environment. They're expected to release value to customers sooner while at the same time controlling the costs of their infrastructures, retaining skilled staff, and reducing risk. What role does the database play in balancing this challenge? Read on to find out.
Is the stuff we do in our off hours truly relaxing or just taking up time?
This level of the Stairway to ScriptDOM looks at finding more complex instance of anti-patterns in your code.
By Steve Jones
Next week is the 2024 PASS Data Community Summit in Seattle. I’ll be traveling...
By Steve Jones
bye-over – n. the sheepish casual vibe between two people who’ve shred an emotional...
I’m hosting a free webinar at MSSQLTips.com at the 19th of December 2024, 6PM...
I have a backup of full, differential and transaction log setup for our database....
Hello everyone, I hope you can help me. I have a table with measurement...
You can't handle the truth!! (about data integrity) A few good database administrators https://www.helpmasterpro.com/blog/a-few-good-database-administrators/...
I have run this on SQL Server 2022 for the Sales database:
ALTER DATABASE Sales SET AUTO_CREATE_STATISTICS ON (INCREMENTAL = ON)I then run this in the Sales database:
USE Sales GO CREATE STATISTICS CustomerStats1 ON dbo.Customer (CustomerKey, EmailAddress) WITH INCREMENTAL = OFFThe dbo.Customer table is partitioned. How are statistics created? See possible answers