Webcast: Auditing SQL Server from the Ground Up
I’m giving another webcast through MSSQLTips.com. This one is on May 9, 2019, at 3 PM EDT. It’s called Auditing SQL Server from the Ground Up. You can register...
2019-05-01
33 reads
I’m giving another webcast through MSSQLTips.com. This one is on May 9, 2019, at 3 PM EDT. It’s called Auditing SQL Server from the Ground Up. You can register...
2019-05-01
33 reads
My certification came in! I’m now accredited to provide training for the Certified Information Systems Auditor (CISA) certification. It’s not the Microsoft Certified Trainer (MCT) accreditation I once had...
2019-04-23
33 reads
ISACA is the professional organization for security, audit, and assurance professionals. There are local chapters, just like with PASS. Here in South Carolina we have the South Carolina Midlands...
2019-04-05
36 reads
I’ve once again been selected to speak at the Techno Security and Digital Forensics Conference in Myrtle Beach, SC, this year. I’m on the calendar for Wednesday, speaking again...
2019-04-04
23 reads
Midlands PASS in Columbia, SC will welcome Microsoft Data Platform MVP Matt Gordon on April 2, 2019. Our meet and greet starts at 5:30 PM with the presentation beginning...
2019-03-28
6 reads
ISACA, which is primarily an Audit and Compliance professional organization, has recently started an initiative with the following purpose:
ISACA’s SheLeadsTech...
2019-03-20
324 reads
Midlands PASS in Columbia, SC, will be hosting Matt Gordon (website | twitter) for our next meeting, which is scheduled for...
2019-03-06
262 reads
In my effort to write more regularly, I’ve branched out a bit to write in the audit and compliance space....
2019-03-01
266 reads
I’ve been a champion of Red Gate’s tools for years. Quite simply, they help me get work done quicker. They...
2019-02-25
154 reads
I didn’t originally want to go back into IT after 15 years in the career field. It was 1999 and...
2019-02-12
148 reads
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers