SlideShare a Scribd company logo
About Dave
0 Computer consultant since 1996
   0 Background in technical support, web application design,
     network administration
   0 Primarily Windows, SQL Server
   0 Dabble in Linux, Opensource
0 Microsoft Certified SQL Trainer since 2002
0 MCITP, MCAD, MCSE 2000(I like taking tests.)
0 Lead I.T. Engineer with CheckAlt Payment Solutions providing
    Check21 Remote Deposit Capture solutions.
0   Enjoy helping my clients solve their I.T. problems
0   PowerShell Student and Fan 
0   http://daveslog.com
0   sql@davidcobb.net I like emails.(..when they’re from people)
Who’s my audience?
0 SQL Pros!
   0 Using SQL 2012, at least in dev
   0 No PowerShell experience OK
   0 Some PowerShell or batch programming background.
   0 Advanced users should learn something too
   0 Bleeding edge:  Eager to learn the latest tools, search
     for the answers, and share what you know.
Overview
0 PowerShell 3 Quick Overview
   0 PowerShell basics
   0 New PowerShell 3 features
   0 PowerShell 3 Integrated Scripting Environment (ISE)
0 SQL 2012
   0 PowerShell Cmdlets
   0 SMO / SQL Management Objects
0 Resources
   0 Script Explorer
   0 PowerShell Community Resources
What’s PowerShell?
0 PowerShell is a scripting environment built on .NET
  which provides one interface to Windows
  technologies like WMI and COM.
0 Cmd.exe on steroids!
0 Windows management tool of the future and today 
0 It doesn’t replace TSQL, SSIS, .Net or command line,
  but it works with all of them. Another tool in your
  toolbox.
PowerShell 101
0 3 commands you need to know *
     0 Get-Help
     0 Get-Command
     0 Get-ChildItem
0 3 concepts you need to know *
     0 Cmdlets (Verb-Noun)
     0 Variables ($myvariable)
     0 Piping (Get-ChildItem | Where Name -Like "*.txt“)


0 Everything else is on the web 


*I’m vastly oversimplifying for the purposes of this slide. Learning PowerShell is a journey, not a destination. 
Windows Management
                Framework 3.0
              aka PowerShell 3
0 Out of RC Sep 4, 2012
 http://tinyurl.com/windowsmanagementframework3
0 Built in to Windows 8 and Server 2012
0 Tons of Cmdlets http://tinyurl.com/powershell3
   0 PowerShell Core
   0 SQL, Sharepoint, SystemCenter, Azure, Hyper-V, Exchange,
     Lync, many others
   0 Every Microsoft product will be managed with PowerShell!
0 Can install to Server 2008 R2 SP1 and 2008 SP2 to manage
 downlevel servers from Server 2012
  0 Needs Framework 4.0
  0 http://blogs.technet.com/b/servermanager/archive/tags/do
    wnlevel+servers/
PowerShell changes from 2 to 3
0 Mostly backward compatible, use the same scripts.
0 Use $PSVersionTable to see current version
0 If your V2 scripts break, can still run in V2
   0 PowerShell.exe –version 2
   0 Invoke-V2Script
Cool PowerShell 3 Features
0 Module Auto-Loading
0 PowerShell Web Access
0 Window Remote Management / WinRM Improvements
   0 PSEXEC for PowerShell, Like Screen in Unix
   0 Enable-PSRemoting -SkipNetworkProfileCheck
0 Syntax Improvements
   0 Where-Object
   0 $PSDefaultParameterValues
   0 Hash tables as objects
0 Update-Help
0 PowerShell 3 What’s New Page
 http://tinyurl.com/ps3whatsnew
PowerShell 3 Tools
0 From Microsoft
   0 Integrated Scripting Environment (ISE) for PowerShell 3
   0 Microsoft Script Explorer for Windows PowerShell
0 Community Resources
   0 PowerShell Community Resources
     http://tinyurl.com/pscommunities
   0 PowerGUI.org
0 PowerShell Tool Vendors
   0 Sapien
   0 Idera
   0 -???
PowerShell ISE
0 Integrated Scripting Environment
0 The IDE for PowerShell
0 New features in 3.0
  0 Intellisense
  0 Zoom
  0 Command Add-On
SQL 2012 PowerShell Extensions
0 Microsoft® Windows PowerShell Extensions for
 Microsoft® SQL Server® 2012
  0 Part of Microsoft® SQL Server® 2012 Feature Pack
  0 http://tinyurl.com/sql2012featurepack
  0 Requires PoSH 2, works with PoSH 3
0 Requires SMO
0 Backward Compatible to SQL 2005
What about SQLPSX?
0 Opensource library of dozens of SQL Cmdlets, before
  Microsoft provided SQLPS.
0 Still much more extensive that SQLPS
0 Wraps calls to SMO in PowerShell Cmdlets Backward
  compatible to SQL 2000
0 Last update March 2011
0 Still very useful for prior SQL versions
0 Partial PowerShell 3 support
  http://sqlpsx.codeplex.com/discussions/393377
SQL Management Objects
0 Access all aspects of SQL Server programmatically
0 You’ll use this extensively in your PowerShell
  scripts
0 Developer’s Reference: http://tinyurl.com/smoguide
0 SQLPS Cmdlets wrap this functionality for basic
  functions
0 SQLPSX takes it a step further
 http://www.sqlpsx.com/
Microsoft Script Explorer for
      Windows PowerShell

0Find community PowerShell scripts,
 modules and import them to your
 environment.
0(Release Candidate) Aug 9 2012
 http://tinyurl.com/scriptexplorer
Uses PowerShell Script
            Repositories
  0 Technet Script Center
   http://gallery.technet.microsoft.com/ScriptCenter/
  0 PoshCode
    http://poshcode.org/
  0 Extendable
0 PowerShell Community Resources
 http://tinyurl.com/pscommunities
Demo Topics
0 Explore SQLPS Cmdlets
0 Where-Object Syntax Enhancement
0 Get SQL Server Instances
0 Manage SQL Windows Services
0 Read SQL Error Logs
0 Query Disk Space on SQL Servers
0 Use WebClient, sp_Blitz and Export-CSV
0 Script SQL Tables
0 RestoreMultipleDBs SQL Job
Resources
0 Whatever it is you’re doing with PowerShell, someone
  has probably done it before and blogged about it!
0 Take advantage of the excellent free resources out
  there for learning PowerShell.
0 Read other people’s code, and adapt for your needs.
0 Use the tools!
SQL 2012 PowerShell
            Bloggers
0 Michael Sorens
  0 http://www.simple-talk.com/sql/database-administration/practical-
    powershell-for-sql-server-developers-and-dbas-%E2%80%93-part-1/
  0 http://www.simple-talk.com/sql/database-administration/practical-powershell-
    for-sql-server-developers-and-dbas-%E2%80%93-part-2/
0 Donabel Santos
   0 http://www.sqlmusings.com/
   0 Check out her webcast for Idera
     http://www.idera.com/Education/PowerShell-Webcasts/
   0 Wrote the book on SQL 2012 and PowerShell
     http://www.packtpub.com/sql-server-2012-with-
     powershell-v3-cookbook/book
0 Laerte Junior
   0 http://www.simple-talk.com/author/laerte-junior/
Cool Tools for PowerShell
0 SPADE – SQL installation and configuration
  http://sqlspade.codeplex.com/
0 PowerShell WMI Explorer
  http://www.powershellpro.com/wmi-explorer/160/
0 PowerShell Scriptomatic
  http://tinyurl.com/scriptomaticv2
0 PowerGUI – Wrap your scripts in a GUI
  http://www.sapien.com/software/powershell_studio
PowerShell Help
0 Stackoverflow.com
 http://stackoverflow.com/questions/tagged/PowerShell
0 PowerShell Community Resources
  http://tinyurl.com/pscommunities
0 Just search the web  many great bloggers, may great
  resources
Call to Action
0 Learn PowerShell 3!
   0 Tons of free resources on the web
   0 Play and learn
0 Use SQL 2012 with PowerShell Cmdlets from the
  feature pack
0 Explore scripts available on the web
  0 You’re probably not the first one with that problem, find
    their solution and adapt it for your environment.
0 Share what you learn
References
0 Dr Tobias Weltner’s Mastering PowerShell
  http://PowerShell.com/Mastering-PowerShell.pdf
0 PowerShell V2 Owners Manual
  http://tinyurl.com/ps2ownersmanual
0 Windows PowerShell 3.0 and Server Manager Quick
  Reference Guides
  http://tinyurl.com/ps3quickref
0 Stairway to SQL PowerShell
  http://www.sqlservercentral.com/stairway/91327/
0 Running PowerShell 2 and 3 side by side
  http://mcpmag.com/articles/2011/12/20/powershell-2-
  and-3-side-by-side.aspx

More Related Content

Viewers also liked

Ive got a powershell secret
Ive got a powershell secretIve got a powershell secret
Ive got a powershell secret
Chris Conte
 

Viewers also liked (10)

PowerShell Functions
PowerShell FunctionsPowerShell Functions
PowerShell Functions
 
Power shell training
Power shell trainingPower shell training
Power shell training
 
Intro to PowerShell Workflow
Intro to PowerShell WorkflowIntro to PowerShell Workflow
Intro to PowerShell Workflow
 
Introduction To Power Shell
Introduction To Power ShellIntroduction To Power Shell
Introduction To Power Shell
 
Ive got a powershell secret
Ive got a powershell secretIve got a powershell secret
Ive got a powershell secret
 
SQL Server AlwaysOn for Dummies SQLSaturday #202 Edition
SQL Server AlwaysOn for Dummies SQLSaturday #202 EditionSQL Server AlwaysOn for Dummies SQLSaturday #202 Edition
SQL Server AlwaysOn for Dummies SQLSaturday #202 Edition
 
Power shell training
Power shell trainingPower shell training
Power shell training
 
Sql server infernals
Sql server infernalsSql server infernals
Sql server infernals
 
An Introduction to Windows PowerShell
An Introduction to Windows PowerShellAn Introduction to Windows PowerShell
An Introduction to Windows PowerShell
 
Introduction to powershell
Introduction to powershellIntroduction to powershell
Introduction to powershell
 

Similar to SQL 2012 and Powershell for the Bleeding Edge DBA

PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopers
Bryan Cafferky
 

Similar to SQL 2012 and Powershell for the Bleeding Edge DBA (20)

PowerShell Scripting and AI-infused Automation
PowerShell Scripting and AI-infused AutomationPowerShell Scripting and AI-infused Automation
PowerShell Scripting and AI-infused Automation
 
VMworld 2016: Getting Started with PowerShell and PowerCLI for Your VMware En...
VMworld 2016: Getting Started with PowerShell and PowerCLI for Your VMware En...VMworld 2016: Getting Started with PowerShell and PowerCLI for Your VMware En...
VMworld 2016: Getting Started with PowerShell and PowerCLI for Your VMware En...
 
Sql Server & PowerShell
Sql Server & PowerShellSql Server & PowerShell
Sql Server & PowerShell
 
Introducing PowerShell 3.0
Introducing PowerShell 3.0Introducing PowerShell 3.0
Introducing PowerShell 3.0
 
Ultimate Free SQL Server Toolkit
Ultimate Free SQL Server ToolkitUltimate Free SQL Server Toolkit
Ultimate Free SQL Server Toolkit
 
SharePoint for the .NET Developer
SharePoint for the .NET DeveloperSharePoint for the .NET Developer
SharePoint for the .NET Developer
 
Introduction to PowerShell - Be a PowerShell Hero - SPFest workshop
Introduction to PowerShell - Be a PowerShell Hero - SPFest workshopIntroduction to PowerShell - Be a PowerShell Hero - SPFest workshop
Introduction to PowerShell - Be a PowerShell Hero - SPFest workshop
 
PHP on Windows
PHP on WindowsPHP on Windows
PHP on Windows
 
PHP on Windows
PHP on WindowsPHP on Windows
PHP on Windows
 
Wsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For BeginnersWsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For Beginners
 
PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopers
 
Windows Server and Fast CGI Technologies For PHP
Windows Server and Fast CGI Technologies For PHPWindows Server and Fast CGI Technologies For PHP
Windows Server and Fast CGI Technologies For PHP
 
PowerShell for SharePoint Developers
PowerShell for SharePoint DevelopersPowerShell for SharePoint Developers
PowerShell for SharePoint Developers
 
Holy PowerShell, BATman! - dogfood edition
Holy PowerShell, BATman! - dogfood editionHoly PowerShell, BATman! - dogfood edition
Holy PowerShell, BATman! - dogfood edition
 
phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)
phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)
phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)
 
Introduction to Codenvy / JugSummerCamp 2014
Introduction to Codenvy / JugSummerCamp 2014Introduction to Codenvy / JugSummerCamp 2014
Introduction to Codenvy / JugSummerCamp 2014
 
PHP and Zend Framework on Windows
PHP and Zend Framework on WindowsPHP and Zend Framework on Windows
PHP and Zend Framework on Windows
 
PHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniterPHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniter
 
My Saminar On Php
My Saminar On PhpMy Saminar On Php
My Saminar On Php
 
PHP konferencija - Microsoft
PHP konferencija - MicrosoftPHP konferencija - Microsoft
PHP konferencija - Microsoft
 

Recently uploaded

Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 

Recently uploaded (20)

Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
КАТЕРИНА АБЗЯТОВА «Ефективне планування тестування ключові аспекти та практ...
КАТЕРИНА АБЗЯТОВА  «Ефективне планування тестування  ключові аспекти та практ...КАТЕРИНА АБЗЯТОВА  «Ефективне планування тестування  ключові аспекти та практ...
КАТЕРИНА АБЗЯТОВА «Ефективне планування тестування ключові аспекти та практ...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 

SQL 2012 and Powershell for the Bleeding Edge DBA

  • 1.
  • 2. About Dave 0 Computer consultant since 1996 0 Background in technical support, web application design, network administration 0 Primarily Windows, SQL Server 0 Dabble in Linux, Opensource 0 Microsoft Certified SQL Trainer since 2002 0 MCITP, MCAD, MCSE 2000(I like taking tests.) 0 Lead I.T. Engineer with CheckAlt Payment Solutions providing Check21 Remote Deposit Capture solutions. 0 Enjoy helping my clients solve their I.T. problems 0 PowerShell Student and Fan  0 http://daveslog.com 0 sql@davidcobb.net I like emails.(..when they’re from people)
  • 3. Who’s my audience? 0 SQL Pros! 0 Using SQL 2012, at least in dev 0 No PowerShell experience OK 0 Some PowerShell or batch programming background. 0 Advanced users should learn something too 0 Bleeding edge:  Eager to learn the latest tools, search for the answers, and share what you know.
  • 4. Overview 0 PowerShell 3 Quick Overview 0 PowerShell basics 0 New PowerShell 3 features 0 PowerShell 3 Integrated Scripting Environment (ISE) 0 SQL 2012 0 PowerShell Cmdlets 0 SMO / SQL Management Objects 0 Resources 0 Script Explorer 0 PowerShell Community Resources
  • 5. What’s PowerShell? 0 PowerShell is a scripting environment built on .NET which provides one interface to Windows technologies like WMI and COM. 0 Cmd.exe on steroids! 0 Windows management tool of the future and today  0 It doesn’t replace TSQL, SSIS, .Net or command line, but it works with all of them. Another tool in your toolbox.
  • 6. PowerShell 101 0 3 commands you need to know * 0 Get-Help 0 Get-Command 0 Get-ChildItem 0 3 concepts you need to know * 0 Cmdlets (Verb-Noun) 0 Variables ($myvariable) 0 Piping (Get-ChildItem | Where Name -Like "*.txt“) 0 Everything else is on the web  *I’m vastly oversimplifying for the purposes of this slide. Learning PowerShell is a journey, not a destination. 
  • 7. Windows Management Framework 3.0 aka PowerShell 3 0 Out of RC Sep 4, 2012 http://tinyurl.com/windowsmanagementframework3 0 Built in to Windows 8 and Server 2012 0 Tons of Cmdlets http://tinyurl.com/powershell3 0 PowerShell Core 0 SQL, Sharepoint, SystemCenter, Azure, Hyper-V, Exchange, Lync, many others 0 Every Microsoft product will be managed with PowerShell! 0 Can install to Server 2008 R2 SP1 and 2008 SP2 to manage downlevel servers from Server 2012 0 Needs Framework 4.0 0 http://blogs.technet.com/b/servermanager/archive/tags/do wnlevel+servers/
  • 8. PowerShell changes from 2 to 3 0 Mostly backward compatible, use the same scripts. 0 Use $PSVersionTable to see current version 0 If your V2 scripts break, can still run in V2 0 PowerShell.exe –version 2 0 Invoke-V2Script
  • 9. Cool PowerShell 3 Features 0 Module Auto-Loading 0 PowerShell Web Access 0 Window Remote Management / WinRM Improvements 0 PSEXEC for PowerShell, Like Screen in Unix 0 Enable-PSRemoting -SkipNetworkProfileCheck 0 Syntax Improvements 0 Where-Object 0 $PSDefaultParameterValues 0 Hash tables as objects 0 Update-Help 0 PowerShell 3 What’s New Page http://tinyurl.com/ps3whatsnew
  • 10. PowerShell 3 Tools 0 From Microsoft 0 Integrated Scripting Environment (ISE) for PowerShell 3 0 Microsoft Script Explorer for Windows PowerShell 0 Community Resources 0 PowerShell Community Resources http://tinyurl.com/pscommunities 0 PowerGUI.org 0 PowerShell Tool Vendors 0 Sapien 0 Idera 0 -???
  • 11. PowerShell ISE 0 Integrated Scripting Environment 0 The IDE for PowerShell 0 New features in 3.0 0 Intellisense 0 Zoom 0 Command Add-On
  • 12. SQL 2012 PowerShell Extensions 0 Microsoft® Windows PowerShell Extensions for Microsoft® SQL Server® 2012 0 Part of Microsoft® SQL Server® 2012 Feature Pack 0 http://tinyurl.com/sql2012featurepack 0 Requires PoSH 2, works with PoSH 3 0 Requires SMO 0 Backward Compatible to SQL 2005
  • 13. What about SQLPSX? 0 Opensource library of dozens of SQL Cmdlets, before Microsoft provided SQLPS. 0 Still much more extensive that SQLPS 0 Wraps calls to SMO in PowerShell Cmdlets Backward compatible to SQL 2000 0 Last update March 2011 0 Still very useful for prior SQL versions 0 Partial PowerShell 3 support http://sqlpsx.codeplex.com/discussions/393377
  • 14. SQL Management Objects 0 Access all aspects of SQL Server programmatically 0 You’ll use this extensively in your PowerShell scripts 0 Developer’s Reference: http://tinyurl.com/smoguide 0 SQLPS Cmdlets wrap this functionality for basic functions 0 SQLPSX takes it a step further http://www.sqlpsx.com/
  • 15. Microsoft Script Explorer for Windows PowerShell 0Find community PowerShell scripts, modules and import them to your environment. 0(Release Candidate) Aug 9 2012 http://tinyurl.com/scriptexplorer
  • 16. Uses PowerShell Script Repositories 0 Technet Script Center http://gallery.technet.microsoft.com/ScriptCenter/ 0 PoshCode http://poshcode.org/ 0 Extendable 0 PowerShell Community Resources http://tinyurl.com/pscommunities
  • 17. Demo Topics 0 Explore SQLPS Cmdlets 0 Where-Object Syntax Enhancement 0 Get SQL Server Instances 0 Manage SQL Windows Services 0 Read SQL Error Logs 0 Query Disk Space on SQL Servers 0 Use WebClient, sp_Blitz and Export-CSV 0 Script SQL Tables 0 RestoreMultipleDBs SQL Job
  • 18. Resources 0 Whatever it is you’re doing with PowerShell, someone has probably done it before and blogged about it! 0 Take advantage of the excellent free resources out there for learning PowerShell. 0 Read other people’s code, and adapt for your needs. 0 Use the tools!
  • 19. SQL 2012 PowerShell Bloggers 0 Michael Sorens 0 http://www.simple-talk.com/sql/database-administration/practical- powershell-for-sql-server-developers-and-dbas-%E2%80%93-part-1/ 0 http://www.simple-talk.com/sql/database-administration/practical-powershell- for-sql-server-developers-and-dbas-%E2%80%93-part-2/ 0 Donabel Santos 0 http://www.sqlmusings.com/ 0 Check out her webcast for Idera http://www.idera.com/Education/PowerShell-Webcasts/ 0 Wrote the book on SQL 2012 and PowerShell http://www.packtpub.com/sql-server-2012-with- powershell-v3-cookbook/book 0 Laerte Junior 0 http://www.simple-talk.com/author/laerte-junior/
  • 20. Cool Tools for PowerShell 0 SPADE – SQL installation and configuration http://sqlspade.codeplex.com/ 0 PowerShell WMI Explorer http://www.powershellpro.com/wmi-explorer/160/ 0 PowerShell Scriptomatic http://tinyurl.com/scriptomaticv2 0 PowerGUI – Wrap your scripts in a GUI http://www.sapien.com/software/powershell_studio
  • 21. PowerShell Help 0 Stackoverflow.com http://stackoverflow.com/questions/tagged/PowerShell 0 PowerShell Community Resources http://tinyurl.com/pscommunities 0 Just search the web  many great bloggers, may great resources
  • 22. Call to Action 0 Learn PowerShell 3! 0 Tons of free resources on the web 0 Play and learn 0 Use SQL 2012 with PowerShell Cmdlets from the feature pack 0 Explore scripts available on the web 0 You’re probably not the first one with that problem, find their solution and adapt it for your environment. 0 Share what you learn
  • 23. References 0 Dr Tobias Weltner’s Mastering PowerShell http://PowerShell.com/Mastering-PowerShell.pdf 0 PowerShell V2 Owners Manual http://tinyurl.com/ps2ownersmanual 0 Windows PowerShell 3.0 and Server Manager Quick Reference Guides http://tinyurl.com/ps3quickref 0 Stairway to SQL PowerShell http://www.sqlservercentral.com/stairway/91327/ 0 Running PowerShell 2 and 3 side by side http://mcpmag.com/articles/2011/12/20/powershell-2- and-3-side-by-side.aspx

Editor's Notes

  1. Demo basics
  2. View Cmdlets online
  3. Demo pswaView other new features
  4. Review ISEView Add Ons site
  5. Demo script 1, reviewcmdlets available
  6. Review SMO objectsReview SQLPSX Cmdlets
  7. Find and use Get-SQLWMI