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
620 reads
This lesson covers managing security principals at the instance level. Security principals at this level allows access to the instance...
2013-11-10
620 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
545 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,257 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
648 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,326 reads
Reblogged from SQL Studies: This is possibly the best blog I have every read on the subject of reviewing a...
2013-09-18
604 reads
Reblogged from Imtech ICT UK Blog: Original Article: CIO recently published a detailed article on the 14 things you need...
2013-09-18
647 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,102 reads
Reblogged from the pluralsight blog: There are many types of developers out there. And while not all speak the same...
2013-09-16
843 reads
By DataOnWheels
It has been a while since my last T-SQL Tuesday blog. When I saw...
The last T-SQL Tuesday of the year is hosted by my good friend Mike...
By Steve Jones
This month Mike Walsh hosts T-SQL Tuesday. It’s been quite some time since he...
Comments posted to this topic are about the item What is the PRODUCT
Comments posted to this topic are about the item Metadata Driven Pipelines (Incremental Load):...
Comments posted to this topic are about the item Metadata Driven Pipelines (Incremental Load):...
In SQL Server 2025, what does this return?
CREATE TABLE Numbers ( n INT) GO INSERT dbo.Numbers ( n ) VALUES (1), (2), (3) GO SELECT PRODUCT(n) FROM dbo.NumbersSee possible answers