SQL Server Management Objects (SMO) are .NET objects for management of Microsoft SQL Server.
Any pointers on how I can programmatically get exactly the identical stored procedure source from SQL Server 2005, as when I …
sql-server stored-procedures smoI need to use Server class which is stored in Microsoft.SqlServer.Smo.dll I don't see this assembly in …
.net sql-server smoI'm trying to dynamically get a databases Table structure using only C# code as follows: using Microsoft.SqlServer.Management.Common; …
visual-studio-2010 assemblies smo add-references-dialogOk, I've scoured the web, BOL, various forums and I'm no closer to an answer...hopefully you fine folks can …
sql-server dll smoI am trying to create a empty database in SQL server using powershell and SMO but cannot seem to find …
sql-server-2008 powershell powershell-2.0 smoI have a SQL 2008 DB. I am running a form that backs that DB up, then tries to update it. …
c# .net sql-server backup smoI am trying to make a copy of a database to a new database on the same server. The server …
c# .net sql-server-2008 smoI run my Winforms app using SQLServer assemblies Microsoft.SqlServer.ConnectionInfo (13.100.0.0) Microsoft.SqlServer.SMO(13.100.0.0) On the same machine SSMS 2016(Aug) …
.net sql-server .net-assembly smoI have the following code which works: foreach ($db in $svr.Databases | where-object { $_.name -eq "testDB" -or $_.name -eq "master" …
sql-server powershell smoI am interating through a list of Microsoft.SqlServer.Management.Smo.Server objects and adding them to a hashtable like …
sql-server powershell hashtable smo