active questions tagged smo - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:11:59Z http://stackoverflow.com/feeds/tag/smo http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/467482/how-do-i-programmatically-retrieve-sql-server-stored-procedure-source-that-is-ide 5 How do I programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui? DWright 2009-01-21T23:24:08Z 2009-11-19T19:02:12Z <p>Any pointers on how I can programmatically get exactly the identical stored procedure source from SQL Server 2005, as when I right-click on that stored procedure in SQL Server Management Studio and select modify?</p> <p>I'm trying using SMO, but there are some textual differences. The procedure always has CREATE, not ALTER, and there are some differences in the header, such as missing GOs in the version I'm getting programmatically. I can fix these up, but perhaps there is a better way?</p> <p>Again, I'm in SQL Server 2005, using SMSE. Using SMO via Visual Studio 8 2008.</p> <p>Thanks!</p> <p><b>Update</b>: Gotten some answers that tell the basics of how to retrieve the stored procedure. What I'm looking for is retrieving the text identical (or nearly identical) to what the GUI generates. </p> <p>Example: for sp_mysp, right-click in Management Studio, select modify. This generates:</p> <pre> USE [MY_DB] GO /****** Object: StoredProcedure [dbo].[sp_mysp] Script Date: 01/21/2009 17:43:18 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: -- Create date: -- Description: -- ============================================= ALTER PROCEDURE [dbo].[sp_mysp] </pre> <p>I'd like to programmatically get the same thing (notice the GOs in the header, and the fact that it's an ALTER PROCEDURE. Ideally, I'd like to get this with minimal programmatic fixing up of the source retrieved.</p> <p>I'd be happy to only get something that differed in the Script Date details . . .</p> http://stackoverflow.com/questions/1745605/sql-server-clr-trigger-with-smo-or-linq 0 SQL Server CLR Trigger with SMO or Linq? kubal5003 2009-11-16T23:38:49Z 2009-11-16T23:49:31Z <p>Hello,</p> <p>I've been looking at the possibility of creating a CLR trigger for insert, but every tutorial found gives me examples of using ado.net objects to do the logic - this is not very convenient way..(I don't think I have to convince anyone about that)</p> <p>I was wondering if maybe there is another way for doing this? SMO? Linq? Anything except plain ADO.NET ?</p> http://stackoverflow.com/questions/765510/sql-2005-smo-find-referencing-table 3 SQL 2005 SMO - find referencing table cosmin.onea 2009-04-19T14:44:32Z 2009-11-15T19:22:03Z <p>I need to change some primary keys from non-clustered to clustered but I can't drop the constraint because it is referenced from other foreign keys.</p> <p>How can I find the tables that reference a primary key in the parent table as part of a foreign relation without looping through all tables in the DB? I need to disable the constraints on those, change the PK and re-enable.</p> <p>Update:</p> <ol> <li><p>I do not want to use plain SQL to do this but SMO only.</p></li> <li><p>Marc, I know about ForeignKeys by I need something like: table.PrimaryKey.ForeignKeys (i.e. which tables are referencing my table's primary key) I just want to avoid looping through all the tables in the database and check the ForeignKeys property on each and every one of them to see if any of them reference my table.(not scalable) </p></li> </ol> http://stackoverflow.com/questions/1721999/how-to-add-a-column-using-smo-with-userefineddatatype-when-that-talble-already-ha 0 How to Add a Column using SMO with UserefinedDatatype when that talble already has some data???? unknown (google) 2009-11-12T12:54:29Z 2009-11-12T13:20:51Z <p>I'm making a Utility that compares 2 Databases and makes one Equal to the other by changing and adding objects (Tables, Views, UserDefinedDatatypes, Defaults, Functions etc etc etc)</p> <p>I'm trying to add a Column, not null with a userdefineddatatype wich has a Default defined, the problem is this: I'm not able to use BindDefault before the column is added, because it does not exist (ofcourse) and I'm not able to add the column to the table because it has data and says it has to have a default defined.</p> <p>Another thing, when I atribute the DataType I thought it might also Bind the Default (because it is Binded to the UserDefinedDataType) but it also didn't.</p> <p>Hope I made myself clear.</p> <p>Tks in advance.</p> <p>PS - I'm solving this by making Nullable=True Update the new collumn with the defaul value BindDefault and Nullable=False</p> <p>But this not a good sollution, I wanted to make changes to the table for several columns and only make the Alter of the Table at the End.</p> http://stackoverflow.com/questions/451505/how-to-change-table-name-when-script-a-table-from-sql-server-smo 0 How to change table name when script a table from SQL Server SMO wnka 2009-01-16T18:45:44Z 2009-11-11T02:00:05Z <p>Let's say I have a table "foo" that I want to script out using SMO. Is there a way to have it so that in the generated script the table has a different name such as "foo2"?</p> <pre><code>Database db = sqlServer.Databases["testdb"]; Table foo = db.Tables["foo"]; foo.Name = "foo2"; </code></pre> <p>If I do this, I get this exception when I try to set foo.Name:</p> <p>"Cannot perform the operation on this object, because the object is a member of a collection."</p> <p>Is there any way to do this with SMO?</p> http://stackoverflow.com/questions/1604472/microsoft-sqlserver-management-sdk-sfc-urn 0 Microsoft.SqlServer.Management.Sdk.Sfc.Urn Peter Wone 2009-10-22T00:57:30Z 2009-11-10T16:00:08Z <p>I have the SQL2008 version of SMO and although it uses this class internally I can't figure how to bring it into scope so I can declare variables to hold values of this type. </p> <p>Yes I know I could declare them as object but then I'd still be unable to cast them to pass typed parameters.</p> <p>What reference do I need to add to my project and what using statement do I need to bring <code>Urn</code> into scope?</p> http://stackoverflow.com/questions/1108045/what-is-the-clsid-and-prog-id-of-microsoft-sqlserver-management-smo 0 what is the CLSID and PROG ID of Microsoft.sqlserver.Management.Smo Cute 2009-07-10T06:44:57Z 2009-11-10T13:25:30Z <p>Hi</p> <p>Can any Body tell me wher can i get CLSID and ProgID of Smo library??</p> <p>As for DMO it is givenn in a Header file by Microsoft.But i am not finding any Header file </p> <p>related to smo.</p> <p>What is the CLSID and ProgID of Smo ??</p> <p>ANy Hep in this regard greately Appreciated.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/436760/smo-scripting-objects-and-security 0 SMO scripting objects and security Jeff 2009-01-12T19:51:00Z 2009-11-06T15:00:03Z <p>I have a customer that has a SQL database on a hosted server; call the db "myDatabase". The hosting co. has locked down object explorer - I can't myDatabase thed database listed (I see tempdb and master). However, if I "use myDatabase" and then "select * from myTable", all works fine.</p> <p>Since we have no access to object explorer, I can't right click and generate scripts. I thought that I might be able to use SMO to accomplish what I want, but when I attempt something similar to this:</p> <pre><code>Server myServer = new Server(conn); Database myDB = server.Databases["myDatabase"]; Table myTbl = myDB.Tables["myTable"]; </code></pre> <p>It fails - myDB is null (when I iterate through the databases collection, as expected, I only see master and tempdb - the db's I can see in object explorer). It obviously has to do with security - if I can't see the table in object explorer, it won't let me access it through SMO. Anyone have any ideas of a workaround or alternate method to allow me to generate a script?</p> <p>Thx!</p> http://stackoverflow.com/questions/1687887/sql-server-database-roles-via-smo 0 SQL Server Database Roles via SMO Simon Ward 2009-11-06T14:16:38Z 2009-11-06T14:16:38Z <p>I am trying to add new roles to a SQL 2005 database via the SMO assemblies. The Roles.Add method just does not seem to add the new role. I have my user account set as securityadmin and sysadmin.</p> <p>Below is the code extract that I am trying to use to set the new role: [assuming d has been set to a database object]</p> <pre><code> Dim dr As New DatabaseRole dr.Name = r dr.Parent = d dr.Owner = d.Name d.Roles.Add(dr) 'Error here "&lt;role name = r&gt; does not exist in the current database."' dr.AddMember("dbo") </code></pre> http://stackoverflow.com/questions/1627145/smo-restoring-to-a-different-db 0 SMO: restoring to a different DB Fred 2009-10-26T20:26:14Z 2009-10-26T20:26:14Z <p>I've read a dozen different blogs, as well as reading through the msdn examples and they just aren't working for me.</p> <p>Ultimately what I'm trying to do is automate moving a DB from our production instance to our dev instance, or the other direction.</p> <p>The approach I've taken is thus: 1. backup/restore to a temp DB 2. detach temp DB 3 copy mdf and ldf files to the other instance 4. reattach.</p> <p>I'm stuck on 1 and I cannot understand why. Everything I've read claims this should be working.</p> <p>NOTE: I've set dbName to the db I want to restore to. I have also set restore.Database = dbName, where restore is an instance of the Restore class in the smo namespace.</p> <pre><code>mdf.LogicalFileName = dbName; mdf.PhysicalFileName = String.Format(@"{0}\{1}.mdf", server.Information.MasterDBPath, dbName); ldf.LogicalFileName = dbName + "_log"; ldf.PhysicalFileName = String.Format(@"{0}\{1}.ldf", server.Information.MasterDBPath, dbName); restore.RelocateFiles.Add(mdf); restore.RelocateFiles.Add(ldf); restore.SqlRestore(server); </code></pre> <p>This is the exception I'm getting:</p> <p><code>The file 'D:\\MSSQL.MIQ_Dev\\MSSQL.2\\MSSQL\\Data\\MIQDesign2Detach.mdf' cannot be overwritten. It is being used by database 'MIQDesignTest2'.\r\nFile 'MIQDesign' cannot be restored to 'D:\\MSSQL.MIQ_Dev\\MSSQL.2\\MSSQL\\Data\\MIQDesign2Detach.mdf'. Use WITH MOVE to identify a valid location for the file.\r\nThe file 'D:\\MSSQL.MIQ_Dev\\MSSQL.2\\MSSQL\\Data\\MIQDesign2Detach.ldf' cannot be overwritten. It is being used by database 'MIQDesignTest2'.\r\nFile 'MIQDesign_log' cannot be restored to 'D:\\MSSQL.MIQ_Dev\\MSSQL.2\\MSSQL\\Data\\MIQDesign2Detach.ldf'. Use WITH MOVE to identify a valid location for the file.\r\nProblems were identified while planning for the RESTORE statement. Previous messages provide details.\r\nRESTORE DATABASE is terminating abnormally.</code></p> <p>Why is this trying to overwrite the original mdf? Isn't the RelocateFiles stuff supposed to specify that you want it being saved to a <em>different</em> physical filename?</p> http://stackoverflow.com/questions/1599333/using-smo-still-no-go-connectioncontext-executenonqueryscript-cant-underst 0 Using SMO, still no go... ConnectionContext.ExecuteNonQuery(script) can't understand "GO" tman 2009-10-21T07:52:39Z 2009-10-22T19:47:32Z <p>Hello!</p> <p>SQL Server 2008</p> <p>Using all the correct references I dare say:</p> <p>System.Data.SqlClient; Microsoft.SqlServer.Management.Smo; Microsoft.SqlServer.Management.Common; Microsoft.SqlServer.Management.Sdk.Sfc;</p> <p>All compiles with no errors.</p> <p>I have stripped code down to almost zero for easy debugging.</p> <p>Connecting to server alright and so on.</p> <p>Excuting following code: SqlConnection connection = new SqlConnection(sqlConnectionString); Server server = new Server(new ServerConnection(connection)); server.ConnectionContext.ExecuteNonQuery(sqlDBQuery);</p> <p>Where "sqlDBQuery" is a string: "USE [master] GO ALTER DATABASE [Cassiopeia] SET ANSI_NULL_DEFAULT OFF GO ALTER DATABASE [Cassiopeia] SET ANSI_NULLS OFF GO"</p> <p>But it doesn't matter what "sqlDBQuery" is, I always get the same error, like "incorrect syntax near GO".</p> <p>I was in belief that SMO would take care of this, when I look at my ConnectionContext is says BatchSeparator = "GO"</p> <p>If I remove GO it's a go... so to speak but I really need to know why my SMO doesn't work.</p> <p>Everywhere I look it just says "use smo like this and you're off fine". Well... doesn't work for me.</p> <p>See this post by Jon Galloway for reference: <a href="http://weblogs.asp.net/jgalloway/archive/2006/11/07/Handling-%5F2200%5FGO%5F2200%5F-Separators-in-SQL-Scripts-%5F2D00%5F-the-easy-way.aspx" rel="nofollow">http://weblogs.asp.net/jgalloway/archive/2006/11/07/Handling-%5F2200%5FGO%5F2200%5F-Separators-in-SQL-Scripts-%5F2D00%5F-the-easy-way.aspx</a></p> <p>Regards/</p> http://stackoverflow.com/questions/1585291/asp-net-page-to-backup-sql-db 0 asp .net page to backup sql db Tarabai 2009-10-18T16:18:58Z 2009-10-18T17:14:27Z <p>Hi guys,</p> <p>I'm trying to create an asp .net page to backup and download an mssql db from my remote host on a shared server. I tried using SMO to create a backup and save it the same folder as the .aspx page but it throws an access denied exception, I later found out that the sql server doesn't have permissions to write backups anywhere but its local backup folder which I can't download from.</p> <p>Is there any alternative method to get this working?</p> http://stackoverflow.com/questions/885397/sql-server-smo-transferdata-keeps-failing 0 SQL Server SMO TransferData() keeps failing Abdu 2009-05-19T22:47:28Z 2009-10-18T01:00:01Z <p>I am using the TransferData method of the transfer class in SQL Server SMO. I have the call running on Windows XP, running SQL Server 2008 SP1, trying to transfer a table from SQL Server 2000 on another server to the XP machine. They both use the same SQL username and password. I have tested using the Import/Export Wizard and it ran fine.</p> <p>The Exception is below and the event log has an entry "Package "ShellPackage" failed" error.</p> <p>The exception error shows the query property as blank and no substitution for . I am assuming some DTS piece is failing but I am not sure which and why.</p> <p>Exception: "ERROR : errorCode=-1073548784 description=Executing the query \"\" failed with the following error: \"The type initializer for '' threw an exception.\". Possible failure reasons: Problems with the query, \"ResultSet\" property not set correctly, parameters not set correctly, or connection not established correctly.\r\n helpFile= helpContext=0 idofInterfaceWithError={C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}"</p> <p>My Code:</p> <pre><code>try { string MasterUser = ConfigurationSettings.AppSettings["SQLUserName"]; string MasterPassword = ConfigurationSettings.AppSettings["SQLPassword"]; Server server = new Server(SourceServer); server.ConnectionContext.LoginSecure = false; server.ConnectionContext.Login = MasterUser; server.ConnectionContext.Password = MasterPassword; Database databaseSource = server.Databases[SourceDatabaseName]; Transfer transfer = new Transfer(databaseSource); transfer.CopyAllObjects = false; transfer.DropDestinationObjectsFirst = false; transfer.UseDestinationTransaction = true; if (IsBasic) { transfer.CopyAllDefaults = false; transfer.Options.Indexes = false; transfer.Options.DriAll = false; transfer.CopyAllDefaults = false; } else { transfer.CopyAllDefaults = true; transfer.Options.Indexes = true; transfer.Options.DriAll = true; transfer.CopyAllDefaults = true; } transfer.Options.AnsiFile = true; transfer.Options.SchemaQualify = true; transfer.Options.WithDependencies = false; transfer.CreateTargetDatabase = false; transfer.CopySchema = true; if (CopyData) transfer.CopyData = true; else transfer.CopyData = false; transfer.DestinationServer = DestinationServer; transfer.DestinationDatabase = DestinationDatabaseName; transfer.DestinationLoginSecure = false; transfer.DestinationLogin = MasterUser; transfer.DestinationPassword = MasterPassword; //find the able object foreach (Table table in databaseSource.Tables) { if (table.Name == TableName) { tableToTransfer = table; break; } } transfer.Options.IncludeIfNotExists = true; transfer.ObjectList.Add(tableToTransfer); transfer.TransferData(); } catch (DbException dbExp) { throw new FaultException(dbExp.Message); } catch (Exception ex) { throw new FaultException(ex.Message); } </code></pre> http://stackoverflow.com/questions/1577489/single-user-after-renaming-an-ms-sql-database 0 Single User after renaming an MS-SQL database strakastroukas 2009-10-16T11:22:16Z 2009-10-16T11:47:01Z <p>I am using help of SqlServer.Management.Smo to rename an attached MS-SQL database.</p> <pre><code>Dim db As New Database = ActiveSQLServer.Databases(OLD_NAME) db.ExecuteNonQuery("ALTER DATABASE " &amp; OLD_NAME &amp; " SET SINGLE_USER WITH ROLLBACK IMMEDIATE") db.ExecuteNonQuery("ALTER DATABASE " &amp; OLD_NAME &amp; " MODIFY NAME = " &amp; NEW_NAME) </code></pre> <p>The problem is that after renaming the database is set as a Single User.</p> <p>So what am i doing wrong?</p> http://stackoverflow.com/questions/1536136/executing-queries-with-executewithresults-using-the-batchseparator 0 Executing queries with ExecuteWithResults using the BatchSeparator pauloya 2009-10-08T07:23:35Z 2009-10-08T07:23:35Z <p>We are using Smo.Server to run some SQL batches.<br> For queries that create stored procedures or tables and contain the separator <code>GO</code> the following code works:</p> <pre><code>server.ConnectionContext.ExecuteNonQuery(sql); </code></pre> <p>But the following fails</p> <pre><code>server.ConnectionContext.ExecuteWithResults(sql); </code></pre> <p>For sql that doesn't change the database structure it seems that using GO works fine on both.<br> I can see that <code>ExecuteWithResults</code> supports DDL, because it runs successfully <code>CREATE TABLE</code>.<br> But it doesn't support </p> <pre><code>CREATE TABLE ... GO SELECT 1 </code></pre> <p>This last query works with no problems if I use <code>ExecuteNonQuery</code><br> What do I need to do to be able to run this last query and access to the result DataSet?</p> http://stackoverflow.com/questions/1519127/how-to-display-ndf-files-using-smo 0 How to display ndf files using SMO?? Cute 2009-10-05T09:51:55Z 2009-10-05T15:00:23Z <p>Hi </p> <p>I am using SMO to populate the list of database files log files. i am using filegroups but it displays only mdf and ldf files. I have ndf files also it is not dispalying ndf files?? what i have to do any suggestions plz???</p> <pre><code> string dbname = string.Empty, DatabaseInfo = string.Empty; Server srv = new Server(instanceName); foreach (Database db in srv.Databases) { if (DB.Equals(db.Name)) { DatabaseInfo += db.FileGroups[0].Files[0].FileName; string logfile=db.LogFiles[0].FileName ; } } </code></pre> http://stackoverflow.com/questions/1500640/smo-assembly-dependencies 0 SMO - Assembly dependencies Nestor 2009-09-30T21:00:45Z 2009-10-03T20:08:51Z <p>I need to use SMO to find out all the dependencies of a registered assembly (SQLCLR). How can I do that? Thanks, Nestor</p> http://stackoverflow.com/questions/268381/using-smo-to-copy-a-database-and-data 2 Using SMO to copy a database and data Rune Grimstad 2008-11-06T11:42:12Z 2009-09-29T20:52:43Z <p>I am trying to make a copy of a database to a new database on the same server. The server is my local computer running SQL 2008 Express under Windows XP. Doing this should be quite easy using the SMO.Transfer class and it almost works!</p> <p>My code is as follows (somewhat simplified):</p> <pre><code>Server server = new Server("server"); Database sourceDatabase = server.Databases["source database"]; Database newDatbase = new Database(server, "new name"); newDatbase.Create(); Transfer transfer = new Transfer(sourceDatabase); transfer.CopyAllObjects = true; transfer.Options.WithDependencies = true; transfer.DestinationDatabase = newDatbase.Name; transfer.CopySchema = true; transfer.CopyData = true; StringCollection transferScript = transfer.ScriptTransfer(); using (SqlConnection conn = new SqlConnection(connectionString)) { conn.Open(); using (SqlCommand switchDatabase = new SqlCommand("USE " + newDatbase.Name, conn)) { switchDatabase.ExecuteNonQuery(); } foreach (string scriptLine in transferScript) { using (SqlCommand scriptCmd = new SqlCommand(scriptLine, conn, transaction)) { int res = scriptCmd.ExecuteNonQuery(); } } } </code></pre> <p>What I do here is to first create a new database, then generate a copy script using the Transfer class and finally running the script in the new database. </p> <p>This works fine for copying the structure, but the CopyData option doesn't work!</p> <p>Are there any undocumented limits to the CopyData option? The documentation only says that the option specifies whether data is copied. </p> <p>I tried using the TransferData() method to copy the databse without using a script but then I get an exception that says "Failed to connect to server" with an inner exception that says "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)"</p> <p>I also tried to enable Named Pipes on the server, but that doesn't help. </p> <p>Edit: I found a solution that works by making a backup and then restoring it to a new database. It's quite clumsy though, and slower than it should be, so I'm still looking for a better solution.</p> http://stackoverflow.com/questions/1486682/c-and-smo-get-message-output-such-as-table-already-exists-for-logging 2 c# and SMO - Get Message output such as "Table already exists" for logging. jason clark 2009-09-28T11:59:55Z 2009-09-28T13:02:09Z <p>Hi,</p> <p>I am using SQL Management objects to connect to SQL server. At the moment they contain simple "create table" commands for my example.</p> <p>I run this code twice on purpose to cause an error for "table already exists".</p> <p>However my events below are not getting triggered. </p> <p>Anyone got any ideas, how I can get hold of this message in my code other then changing the ExecutionType to stop on errors causing exceptions ( which I dont want to do, I want to continue)</p> <p>My Code:</p> <pre><code>public void executeSomeSQL() { FileInfo file = new FileInfo(@"\c:\sqlcommands.sql"); string script = file.OpenText().ReadToEnd(); SqlConnection conn = new SqlConnection(sqlConnectionString); conn.InfoMessage +=new SqlInfoMessageEventHandler(conn_InfoMessage); Server server = new Server(new ServerConnection(conn)); server.ConnectionContext.InfoMessage += new SqlInfoMessageEventHandler(ConnectionContext_InfoMessage); server.ConnectionContext.ExecuteNonQuery(script,ExecutionTypes.ContinueOnError); MessageBox.Show("All Done"); </code></pre> <p>}</p> <p>Events:-</p> <pre><code> public void conn_InfoMessage(object sender, SqlInfoMessageEventArgs e) { textBox3.Text += "1:"+DateTime.Now.ToString(); } public void ConnectionContext_InfoMessage(object sender, SqlInfoMessageEventArgs e) { textBox3.Text += "2:" + DateTime.Now.ToString(); } </code></pre> <p>Many thanks in advance,</p> <p>J</p> http://stackoverflow.com/questions/1466651/how-to-restore-a-database-from-c 0 How to restore a database from C# Anthony D 2009-09-23T15:14:32Z 2009-09-23T15:46:25Z <p>I have a SQL 2008 DB. I am running a form that backs that DB up, then tries to update it. If the update fails the idea is to restore that backup. Here is the code I am using to restore the backup. </p> <pre><code>public void RestoreDatabase(String databaseName, String backUpFile, String serverName, String userName, String password) { Restore sqlRestore = new Restore(); BackupDeviceItem deviceItem = new BackupDeviceItem(backUpFile, DeviceType.File); sqlRestore.Devices.Add(deviceItem); sqlRestore.Database = databaseName; ServerConnection connection = new ServerConnection(serverName, userName, password); Server sqlServer = new Server(connection); sqlRestore.Action = RestoreActionType.Database; string logFile = System.IO.Path.GetDirectoryName(backUpFile); logFile = System.IO.Path.Combine(logFile, databaseName + "_Log.ldf"); string dataFile = System.IO.Path.GetDirectoryName(backUpFile); dataFile = System.IO.Path.Combine(dataFile, databaseName + ".mdf"); Database db = sqlServer.Databases[databaseName]; RelocateFile rf = new RelocateFile(databaseName, dataFile); sqlRestore.RelocateFiles.Add(new RelocateFile(databaseName, dataFile)); sqlRestore.RelocateFiles.Add(new RelocateFile(databaseName + "_log", logFile)); sqlRestore.SqlRestore(sqlServer); db = sqlServer.Databases[databaseName]; db.SetOnline(); sqlServer.Refresh(); } </code></pre> <p>The issue seems to be that the file names I pick are different from the online DB. I basically want to replace the database on the server with the backup. I get an exception when I call SqlRestore.</p> <p>The main exception says </p> <blockquote> <p>{"Restore failed for Server 'localhost'. "}</p> </blockquote> <p>Digging into the inner exceptions shows these errors </p> <blockquote> <p>An exception occurred while executing a Transact-SQL statement or batch.</p> </blockquote> <p>and then </p> <blockquote> <p>Logical file 'DB' is not part of database 'DB'. Use RESTORE FILELISTONLY to list the logical file names.\r\nRESTORE DATABASE is terminating abnormally.</p> </blockquote> <p>I assume there is some way to tell this to just use replace the existing DB as is.</p> <p>I use this bit of code to get the file path of the DB to have a directory to dump the backup. Maybe this could be used to get the file names to recreate.</p> <pre><code>public string GetDBFilePath(String databaseName, String userName, String password, String serverName) { ServerConnection connection = new ServerConnection(serverName, userName, password); Server sqlServer = new Server(connection); Database db = sqlServer.Databases[databaseName]; return sqlServer.Databases[databaseName].PrimaryFilePath; } </code></pre> http://stackoverflow.com/questions/1439183/drop-all-active-database-connections-failed-for-server-when-executing-killallproc 1 Drop all active database connections failed for Server when executing KillAllProcesses laconicdev 2009-09-17T14:18:10Z 2009-09-17T14:24:09Z <p>I need to perform a database restore from my application. Before doing this, I want to kill all processes as follows:</p> <pre><code> private void KillAllProcessesOnSMARTDatabases(Server targetServer) { targetServer.KillAllProcesses(SMART_DB); targetServer.KillAllProcesses(SMART_HISTORY_DB); targetServer.KillAllProcesses(SMART_METADATA_DB); SqlConnection.ClearAllPools(); } </code></pre> <p>However, when the first KillAllProcesses is run, I get the following exception:</p> <blockquote> <p>Microsoft.SqlServer.Management.Smo.FailedOperationException: Drop all active database connections failed for Server 'MYServer'. ---> Microsoft.SqlServer.Management.Common.ExecutionFailureException: An exception occurred while executing a Transact-SQL statement or batch. ---> System.Data.SqlClient.SqlException: Only user processes can be killed.</p> </blockquote> <p>The connection string used to create the server has sa credentials, however, the processes that need to be terminated are started under a different user. I tested the similar scenario and the test succeeded.</p> <p>This started happening only recently. To me it appears there are some processes running that are not started by the user? </p> http://stackoverflow.com/questions/1433435/cant-enumerate-sql-server-2008-registered-servers-with-smo 0 Can't enumerate SQL Server 2008 Registered Servers with SMO Mark Allison 2009-09-16T14:42:34Z 2009-09-17T08:17:51Z <p>Hi there,</p> <p>I had SQL Server 2005 Management Studio installed on my workstation. I have since installed SQL Server 2008 workstation tools and removed the SQL Server 2005 tools. I am now writing a c# program which iterates my registered servers in management studio. Problem is, it is iterating through my old list in the 2005 tools (which have now been uninstalled) and not my 2008 registered servers list.</p> <p>I thought it might be an assembly references issue, so I check that my SMO assembly references are pointing to the new tools. I am using:</p> <ul> <li>Microsoft.SqlServer.ConnectionInfo</li> <li>Microsoft.SqlServer.Management.Sdk.Sfc</li> <li>Microsoft.SqlServer.Smo</li> <li>Microsoft.SqlServer.SqlEnum</li> </ul> <p>I have checked that the assemblies are the 10.0 versions.</p> <p>My c# code snippet that does the work is:</p> <pre><code>using System; using System.Collections.Generic; using System.Text; using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common; using Microsoft.SqlServer.Management.Smo.RegisteredServers; </code></pre> <p>and </p> <pre><code> public static void DiscoverServers() { RegisteredServer[] rsvrs = SqlServerRegistrations.EnumRegisteredServers(); foreach (RegisteredServer rs in rsvrs) { Console.WriteLine(rs.Parent.Name + ", " + rs.ServerInstance); } } </code></pre> <p>Any ideas on how to fix this? Am I simply using the wrong SMO code?</p> <p>Cheers, Mark.</p> http://stackoverflow.com/questions/1407110/fixing-orphaned-users-with-sql-smo 2 Fixing Orphaned Users with SQL SMO? Yoopergeek 2009-09-10T19:03:40Z 2009-09-15T14:20:07Z <p>Is there a way to fix an orphaned user in a SQL 2005/2008 database using SQL SMO?</p> <p>You can find orphaned users relatively easily by enumerating through the users and looking for an empty <code>User.Login</code> property:</p> <pre><code>using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common; public static IList&lt;string&gt; GetOrphanedUsers(Server smoServer, string database) { Database db = smoServer.Databases[database]; List&lt;string&gt; orphanedUsers = new List&lt;string&gt;(); foreach (User user in db.Users) { if (!user.IsSystemObject &amp;&amp; user.Login == string.Empty) { orphanedUsers.Add(user.Name); } } return orphanedUsers; } </code></pre> <p>Unfortunately, the fix isn't as simple as setting the <code>User.Login</code> property to the matching server login name. <code>User.Login</code> does have a setter, but I'm not aware of a way to propogate that back to the server. It appears only usable when you're creating a new <code>User</code>.</p> <p>I considered dropping the user from the database and re-binding the server login to the database, but with that comes extra complications. Complications like re-assigning default schemas, roles, and if they own a schema in the database you're in for more trouble as you cascade through those changes. It's enough to make you want to inline the SQL and be done with it:</p> <pre><code>ServerConnection server = new ServerConnection("MyBox\SQLInstance"); Database db = server.Databases["MyDatabase"]; db.ExecuteNonQuery("sp_change_users_login 'auto_fix', 'ORPHANED_USERNAME'") </code></pre> <p>However, I'd prefer to not inline a call to a system stored procedure. </p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1135991/transfer-database-from-sql-server-2005-to-sql-server-2008 0 Transfer Database from SQL-Server 2005 to SQL-Server 2008 Mathias Fritsch 2009-07-16T07:38:43Z 2009-09-08T08:53:31Z <p>I have an existing application that transfers a Database from a source server to a target server via SMO "Transfer". We transfer only the data.</p> <p>Both SQL-Servers are 2005.</p> <p>Now we upgrade the target server to SQL-Server 2008. Will the transfer via SMO still work?</p> http://stackoverflow.com/questions/1338464/alternatives-to-smo-i-e-dml-apis-for-sql-server 1 Alternatives to SMO, i.e. DML APIs for SQL Server? MatthewMartin 2009-08-27T01:49:29Z 2009-09-05T03:41:28Z <p>I just learned I can't use SMO in ASP.NET without either SQL or a full SMO install on the application server. I'm not allowed to do that, so I can't use SMO.</p> <p>What other libraries do the same thing as SMO but don't require an MSI installer or COM registrations?</p> <p>I know I could send DDL to the server inside ADO.NET commands, but that is exactly what I was trying to avoid by using SMO.</p> <p>What was nice about SMO:</p> <p>Object oriented API for querying meta-data (columns, data types) that didn't rely on inconsistent COBOL-like DDL.</p> <p>Didn't require querying undocumented stored procedures, system stored procedures or tables which break every few versions.</p> <p>Off the top of my head I can think of ADOX and DMO, but both were COM based APIs.</p> http://stackoverflow.com/questions/1144960/how-to-create-database-using-smo-with-everyone-having-permission 0 How to create database using SMO with everyone having permission? Brandon 2009-07-17T18:32:55Z 2009-08-21T10:00:03Z <p>I am trying to create a SQL Server Express database using SMO like so:</p> <pre><code>Database db = new Database(server, dataSource); ... db.Create(); </code></pre> <p>I am able to use the database fine. But, if someone else tries to copy the database, they get file permission errors. In looking under the security tab in windows explorer, I am the only one who has permission. If I simply make a copy of the file, the copy gives everyone permissions.</p> <p>So, what do I have to do in order for the Create() to give everyone permission? I would think that the file created would inherit the directory's permissions...but apparently not. I realize I could set the file permissions myself but would rather try to understand why the Create() is giving special permissions.</p> http://stackoverflow.com/questions/927778/converting-system-types-to-smo-datatypes 1 Converting System.types to SMO.DataTypes John 2009-05-29T19:42:25Z 2009-08-19T12:31:56Z <p>I have a project that creates a table from a DataTable to a SQL table via SMO.</p> <p>The datatypes of the columns do not convert currently from System.Type to SMO.DataType. I can do this via a Case statement but I was hoping for a cleaner solution. Maybe something involving TypeDescriptor.GetConverter(targetDataType).</p> <p>This works between System.types and SQL.DataTypes but I can't get it to convert to SMO.DataTypes.</p> <p>Any suggestions or tips?</p> <p>TIA</p> http://stackoverflow.com/questions/1096486/how-to-connect-to-the-remote-machine-using-c-and-getting-sqlserver-instances 0 How to connect to the remote machine using c# and getting sqlserver instances ?? Cute 2009-07-08T06:54:01Z 2009-08-11T23:26:19Z <p>Hi</p> <p>How can i connect to the remote machine and getting the local instances using smo or any thing.</p> <p>using smo i did it for local instances but i dont know the same for remote instances how to </p> <p>do this.</p> <p>(My idea is connecting to the rmote computer and call the EnumAvailableSqlServers(true))</p> <p>Can u give me ideas to do this???</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/538988/adding-properties-to-t4-template-picking-server-database-table 2 Adding properties to T4 template - picking server, database, table marc_s 2009-02-11T21:50:44Z 2009-07-27T16:38:29Z <p>Folks,</p> <p>I'd like to create some T4 templates for generating class files (about 7 per table) from a database to support our in-house ORM (don't ask - long story and historical reasons.....)</p> <p>What I'd really love to do is have a property on my main TT template to visually pick server, database and table for which to create the files (something like the table picker in CodeSmith).</p> <p>Since that doesn't seem to exist (or does it?), I figured next best thing is using three string property for server, database, table name, and use SMO to connect to that table and get the column data I need.</p> <p>I tried to follow Oleg Sych's examples, and came up with:</p> <pre><code>&lt;#@ property name="serverName" processor="PropertyProcessor" type="System.String" #&gt; &lt;#@ property name="databaseName" processor="PropertyProcessor" type="System.String" #&gt; &lt;#@ property name="tableName" processor="PropertyProcessor" type="System.String" #&gt; </code></pre> <p>but then how do I reference those properties in my code block which connects to the server specified using SMO to retrieve the data?</p> <pre><code>&lt;# Server server = new Server(); Database database = new Database(server, "DASECO_DEV"); Table table = new Table(database, "T_User"); table.Refresh(); #&gt; </code></pre> <p>I tried putting a <code>&lt;#= serverName #&gt;</code> inside the brackets of the Server() constructor - but that doesn't work :-( Seems like I'm a bit stuck here...... what's the point of having properties if I can't evaluate and use their values! :-)</p> <p>Any takers??</p> <p>Marc</p> http://stackoverflow.com/questions/1135636/how-to-connect-to-sqlserver2008-using-smo-any-workaround-has-to-be-done 0 How to Connect to Sqlserver2008 using SMO any workaround has to be done??? Cute 2009-07-16T05:54:42Z 2009-07-22T20:55:59Z <p>I wrote this for finding the sql server instances on the local machine:</p> <pre><code>using System; using System.Data; using Microsoft.SqlServer.Management.Smo; namespace Application3 { class Program { static void Main(string[] args) { string srvname = string.Empty; string srvnames = null; DataTable dt = SmoApplication.EnumAvailableSqlServers(true); Console.WriteLine("-------------&gt;" + dt.Rows.Count); foreach (DataRow dr in dt.Rows) { try{ Console.WriteLine("--&gt;Instance " + dr["name"]); Server srv = new Server((string)dr["name"]); foreach (Database db in srv.Databases) Console.WriteLine(db.Name); }catch(Exception e) { Console.writeLine(e.toString()); } } } } </code></pre> <p>I have 3 instances in my local machine </p> <ol> <li>rk2k3-vm-sr (sql2008 instance)</li> <li>rk2k3-vm-sr\sql2k8express (sql2k8 instacne)</li> <li>rk2k3-vm-sr\sqlexpress (sql2k5 instance)</li> </ol> <p>But it is only showing 2 and 3. 1 does not show. And when I connect using server object it fails for sql2k8express.</p> <p>Here is the Output....</p> <p><hr /></p> <blockquote> <p>-->Instance RK2K3-VM-SR\SQLEXPRESS<br /> master<br /> model<br /> msdb<br /> tempdb </p> </blockquote> <p><hr /></p> <blockquote> <p>-->Instance RK2K3-VM-SR\SQL2K8EXPRESS</p> <p>Microsoft.SqlServer.Management.Common.ConnectionFailureException: Failed to conn ect to server RK2K3-VM-SR\SQL2K8EXPRESS. ---> Microsoft.SqlServer.Management.Com mon.ConnectionFailureException: This SQL Server version (10.0) is not supported. at Microsoft.SqlServer.Management.Common.ConnectionManager.CheckServerVersion (ServerVersion version) at Microsoft.SqlServer.Management.Common.ConnectionManager.InternalConnect(Wi ndowsIdentity impersonatedIdentity) at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect() --- End of inner exception stack trace --- at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect() at Microsoft.SqlServer.Management.Common.ConnectionManager.PoolConnect() at Microsoft.SqlServer.Management.Common.ConnectionManager.get_ServerVersion( ) at Microsoft.SqlServer.Management.Smo.ExecutionManager.get_ServerVersion() at Microsoft.SqlServer.Management.Smo.SqlSmoObject.GetDbComparer(Boolean inSe rver) at Microsoft.SqlServer.Management.Smo.SqlSmoObject.InitializeStringComparer() at Microsoft.SqlServer.Management.Smo.AbstractCollectionBase.get_StringCompar er() at Microsoft.SqlServer.Management.Smo.SimpleObjectCollectionBase.InitInnerCol lection() at Microsoft.SqlServer.Management.Smo.SmoCollectionBase.get_InternalStorage() at Microsoft.SqlServer.Management.Smo.SmoCollectionBase.InitializeChildCollec tion(Boolean refresh) at Microsoft.SqlServer.Management.Smo.SmoCollectionBase.GetEnumerator() at ConsoleApplication3.Program.Main(String[] args) in C:\Documents and Settin gs\Administrator.APP\Desktop\ConsoleApplication3\Program.cs:line 25</p> </blockquote> <p>How can i fix this? My System firewall is disabled and all sql services are running.</p>