PowerShell for SQL Server Essentials by Donabel Santos
Author:Donabel Santos [Santos, Donabel]
Language: eng
Format: epub, pdf
Publisher: Packt Publishing
Published: 2015-02-25T05:00:00+00:00
Listing databases and tables
Let's start out by listing the current databases. The SMO Server class has access to all the databases in that instance, so a server variable will have to be created first. To create one using Windows Authentication, you can use the following snippet:
Import-Module SQLPS -DisableNameChecking #current server name $servername = "ROGUE" #below should be a single line of code $server = New-Object "Microsoft.SqlServer.Management.Smo.Server" $servername
If you need to use SQL Server Authentication, you can set the LoginSecure property to false, and prompt the user for the database credentials:
#with SQL authentication, we need #to supply the SQL Login and password $server.ConnectionContext.LoginSecure=$false; $credential = Get-Credential $server.ConnectionContext.set_Login($credential.UserName) $server.ConnectionContext.set_SecurePassword($credential.Password)
Download
PowerShell for SQL Server Essentials by Donabel Santos.pdf
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Implementing Enterprise Observability for Success by Manisha Agrawal and Karun Krishnannair(7300)
Supercharging Productivity with Trello by Brittany Joiner(6558)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6413)
Mastering Tableau 2023 - Fourth Edition by Marleen Meier(6318)
Inkscape by Example by István Szép(6173)
Visualize Complex Processes with Microsoft Visio by David J Parker & Šenaj Lelić(5875)
Build Stunning Real-time VFX with Unreal Engine 5 by Hrishikesh Andurlekar(4866)
Design Made Easy with Inkscape by Christopher Rogers(4576)
Customizing Microsoft Teams by Gopi Kondameda(4114)
Linux Device Driver Development Cookbook by Rodolfo Giometti(3932)
Extending Microsoft Power Apps with Power Apps Component Framework by Danish Naglekar(3706)
Business Intelligence Career Master Plan by Eduardo Chavez & Danny Moncada(3651)
Salesforce Platform Enterprise Architecture - Fourth Edition by Andrew Fawcett(3579)
Pandas Cookbook by Theodore Petrou(3559)
The Tableau Workshop by Sumit Gupta Sylvester Pinto Shweta Sankhe-Savale JC Gillet and Kenneth Michael Cherven(3362)
TCP IP by Todd Lammle(2982)
Drawing Shortcuts: Developing Quick Drawing Skills Using Today's Technology by Leggitt Jim(2910)
Applied Predictive Modeling by Max Kuhn & Kjell Johnson(2857)
Work Smarter with Microsoft OneNote by Connie Clark(2840)
