Learn A Bit More
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
The 70-433 will be my first Microsoft certification test. There are two main reasons why I've decided to take on this quest. The first reason is to "fill in the cracks." Even on fundamental topics I've found myself saying "oh
Join BI Architect Bill Pearson as he continues to explore attribute discretization, as a part of an extended examination of the dimensional model lying at the heart of the integrated Microsoft Business Intelligence solution.
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
This white paper provides step-by-step guidelines for diagnosing and troubleshooting common performance problems by using publicly available tools.
Becoming a more productive employee should be a goal for most people. It can also greatly increase the enjoyment you get from your career. Steve Jones gives you some ideas that might help you.
SQL School covers a basic topic this week. MVP Andy Warren shows the various ways to stop and start your services.
S partitions from the ground up, with advice on binding, merging, and selecting partition data.
By Kevin3NF
Parts 1, 2 and 3 got you to the (SQL) engine room. Now we...
By gbargsley
Whether you’re a seasoned DBA or just exploring database tools, DBeaver offers a powerful,...
DBAs should never run SSMS under their everyday Windows account If you open SSMS under...
Import-Module ImportExcel # Path to your .sql file $sqlFile = "C:\Data\MyQueries.sql" $excelPath = "C:\Data\SqlExtract_$(Get-Date...
I have noticed sp_executesql also makes a single plan for a stmt with parameter...
If I want to track which login called a stored procedure and use the value in an audit, what function can I use to replace the xxx below?
create procedure AddNewCustomer @customername varchar(200) AS BEGIN DECLARE @added VARCHAR(100) SELECT @added = xxx IF @customername IS NOT NULL INSERT dbo.Customer ( CustomerName, AddedBy ) VALUES (@customername, @added) ENDSee possible answers