70-457 Reviewer #13 Managing SQL Server Logins
This lesson covers managing security principals at the instance level. Security principals at this level allows access to the instance...
2013-11-10
619 reads
This lesson covers managing security principals at the instance level. Security principals at this level allows access to the instance...
2013-11-10
619 reads
This lesson is part two of lesson Reviewer #13 Managing SQL Server Logins. There is so much to cover about...
2013-11-10
420 reads
This reviewer is part of lesson in Implementing High Availability in SQL Server 2012. This covers about 12% of the...
2013-11-10
537 reads
Index maintenance is part of the DBA’s life. Surely you have a maintenance task for this somewhere running daily or...
2013-09-28
1,254 reads
That’s the title of an article i came across this morning in Slate.com. I am not a big fan of...
2013-09-24
643 reads
Microsoft has release the CU update package 6 for SQL Server 2012 SP1. To apply this package in your environment,...
2013-09-23
1,324 reads
Reblogged from SQL Studies: This is possibly the best blog I have every read on the subject of reviewing a...
2013-09-18
580 reads
Reblogged from Imtech ICT UK Blog: Original Article: CIO recently published a detailed article on the 14 things you need...
2013-09-18
645 reads
Problem. Your database mail suddenly stopped sending out email notifications on completed jobs and tasks. You try to send out...
2013-09-17
1,099 reads
Reblogged from the pluralsight blog: There are many types of developers out there. And while not all speak the same...
2013-09-16
839 reads
By Ed Elliott
All Spark Connect Posts I have just finished an update for the spark connect dotnet...
By Steve Jones
One of the things I’ve been experimenting with in AI is taking things other...
By Steve Jones
I’ll be at SQL Bits tomorrow, Saturday Jun 20, 2025 for the final day...
In Azure SQL DB, i want to merge records from the staging table to...
Full error message: SSRS error: The Value for the image 'Image1' has a constant...
We are in the process of upgrading to SQL Server 2022 and would like...
I have a table, called dbo.logger, in SQL Server 2022. I decide to add two new columns to this table with this code.
ALTER TABLE dbo.logger ADD CreateDate DATETIME CONSTRAINT dfGetDate DEFAULT GETDATE() GO ALTER TABLE dbo.logger ADD ModifyDate DATETIME DEFAULT dfGetDate GOWhat happens when I run these two batches? See possible answers