Module ActiveDirectory To remove one or many users from an Active Directory group, try this approach: $user = @() $user += Get-ADUser -Filter { Name...
database-tools
Steps to Configure PowerShell (Part 3)
All PowerShell versions If you use PowerShell at home or in an environment without central group policy management, here are some additional steps...
Using Collaboration for Spreading Enterprise Knowledge – by David Loshin, Knowledge Integrity, Inc.
This is the last in a series of six posts on metadata collaboration from David Loshin. Read the previous post in the series. In my earlier...
Steps to Configure PowerShell (Part 2)
PowerShell 2.0 and later If you use PowerShell at home or in an unmanaged environment, here are some additional steps you should consider to make...
Achieving Data Modeling Nirvana
Data Modeling has forever been a realm of a segment of folks that are immersed into the nitty gritty of Database Architecture from a model to...
Steps to Configure PowerShell (Part 1)
PowerShell 2.0 and later If you use PowerShell at home or in an unmanaged environment, here are some steps you should consider to make PowerShell...
Did you choose to be a DBA?
We have had this survey question and a few others on the community for a few months and thought we would share some of the results. This was a brief...
Cloud phenomnenon- 3 things that make it different from on premise
Cloud – the new buzz word in the IT industry is just like the .com days in my humble opinion. Organizations have been doing the whole...
Top 4 Startup Parameters DBAs Must Know
Introduction Working on a server is always something DBAs cherish. With every environment that they monitor, they want to know how applications can...
NULL Values in Arrays
All PowerShell versions Whenever you assign NULL values to array elements, they will count as array elements, but will not be output (after all,...
Randomize Lists of Numbers
All PowerShell versions This line will take a list of numbers and randomize their order: Get-Random -InputObject 1, 2, 3, 5, 8, 13 -Count...
Reading Disks and Partitions
Windows 8.1 / Server 2012 R2 Disk management has been greatly simplified with the many new client and server cmdlets that ship with Windows 8.1 and...
Black Friday Sale – Flat 30% OFF on all products
Update: Thank you all for making this campaign a huge success. We are extending this offer till Dec 1st, 23:59 PST. Many corporate users requested...
Finding Out Windows Version
All PowerShell Versions Do you own Windows 8.1 Basic, Pro, or Enterprise? Finding out the Windows version is easy. Finding out the exact subtype is...
Big Data = Bigger Need for Data Models – by Rob Loranger
Big Data has had a great impact on science, healthcare, government and many other industries. For instance, it is now possible for scientists to map...
Internals of Statistics That You Were Not Aware Of
As a developer statistics is one of the important things we need to know while doing SQL Server query performance tuning exercise. Let us try to...
Join-Path Fails with Nonexistent Drives
All Versions To construct path names from parent folders and files, you may have been using Join-Path. This cmdlet takes care of the correct number...
3 More Reasons SQL Server Service is Not Responding
NOTE: This content has been updated and expanded in a whitepaper: 7 Reasons Your SQL Server Service Won't Start, by Pinal Dave ---------- After...
Using Cmdlets to Manage Virtual Hard Drives
Windows 8.1 Pro/Enterprise or Server 2012 R2 Both Windows 8.1 and Server 2012 R2 come with a vast number of additional cmdlets, some of which can be...
SQL Server Data Modeling Made Easy
Microsoft SQL Server is slowly beginning to become the preferred platform for most organization big and small. So it would make sense in building...
Engaging the Business Users in Enterprise Semantics – by David Loshin, Knowledge Integrity, Inc.
This is the fifth in a series of six posts on metadata collaboration from David Loshin. Read the previous post and the next post in the...
Looking Up Cryptic Error Codes
All PowerShell versions Often, WMI and API calls return cryptic numeric error codes. To find out what went wrong, try this little helper function:...
Converting Error Numbers
All PowerShell Versions Error numbers that are returned by Windows API calls often appear as very large negative numbers. To give meaning to these...
Collaboration Principles and Universal Data Models – By Len Silverston, Universal Data Models, LLC
Once upon a time, there were four expert data modelers engaged on an enterprise data modeling effort. There was also an additional expert data...