Tagged Questions

SqlServer Management Objects

learn more… | top users | synonyms

17
votes
8answers
13k views

How do I programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui?

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 ...
10
votes
3answers
6k views

Using SMO to copy a database and data

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 ...
6
votes
6answers
2k views

How to drop and recreate and primary key index using SMO with SQL Server?

I am using SQL Server 2005 Express. I want to use SMO to loop through each table in a database and change each Char column to a Varchar column. If a column is a member of the primary key, I need to ...
6
votes
9answers
174 views

please explain the use of “default()” in this code

source http://technet.microsoft.com/en-us/library/ms162234%28SQL.100%29.aspx code //Connect to the local, default instance of SQL Server. { Server srv = default(Server); srv = new ...
6
votes
3answers
5k views

How to restore a database from C#

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. ...
5
votes
2answers
171 views

How to use Powershell Where-Object like an IN statement

I have the following code which works: foreach ($db in $svr.Databases | where-object { $_.name -eq "testDB" -or $_.name -eq "master" -or $_.name -eq "model" ...
5
votes
3answers
2k views

C# SMO backup of remote database to local machine

I have an application which performs backups and restores of SQL databases, this works fine on the local machine, however if I run this against a SQL server hosted on another machine I get the ...
5
votes
2answers
3k views

Drop all active database connections failed for Server when executing KillAllProcesses

I need to perform a database restore from my application. Before doing this, I want to kill all processes as follows: private void KillAllProcessesOnSMARTDatabases(Server targetServer) { ...
5
votes
4answers
12k views

SQL Server SMO complains of missing DLL

Ok, I've scoured the web, BOL, various forums and I'm no closer to an answer...hopefully you fine folks can lend a hand... We've got a dozen or so SQL Servers (some 2k, some 2005) on a network. I'm ...
4
votes
2answers
294 views

How To Backup And Restore DataBase With FILE STREAM Using SMO in C#

How can i backup and restore a database with file stream Using SMO in C#. i found some attributes in Server Class in SMO Like "FilestreamLevel" and "FilestreamShareName" but i do not know how to use ...
4
votes
3answers
828 views

Reference Microsoft.SqlServer.Smo.dll

I need to use Server class which is stored in Microsoft.SqlServer.Smo.dll I don't see this assembly in usual References dialog. I have found it at C:/Program Files/Microsoft SQL ...
4
votes
2answers
249 views

Restart SQL Server instance using SMO

My C# application uses SMO to do various things with SQL Server instance chosen by a user. Particularly, it changes authentication mode: ServerConnection conn = new ServerConnection(connection); ...
4
votes
1answer
1k views

SMO code support to both sql 2005 and sql 2008

Prepared a manged c# DLL using assemblies of SMO of version:10.0.0.0 of SQL 2008 and I called the functions in this DLL from an unmanged c++ code. This application is running successfully for SQL ...
4
votes
1answer
1k views

Restoring a Differential Backup with an SMO Restore object

I am trying to restore a database by first restoring a full backup and then restoring a differential backup by using the Microsoft.SqlServer.Management.Smo.Restore class. The full backup is restored ...
3
votes
3answers
180 views

Using cursors to read time series data from SQL Server using C#?

I have a large database (50 million rows) containing time series data. There is a clustered index on the [datetime] column which ensures that that the table is always sorted in chronological order. ...
3
votes
1answer
181 views

Good book to learn Server Management Objects (SMO) for C# and SQL Server 2008?

Am familiar with TSQL and C#, and would like to read a good book/tutorial on how to use Server Management Objects (SMO) with C# and SQL Server 2008. Any recommendations?
3
votes
2answers
715 views

SQL SMO To Execute Batch TSQL Script

I'm using SMO to execute a batch SQL script. In Management Studio, the script executes in about 2 seconds. With the following code, it takes about 15 seconds. var connectionString = ...
3
votes
2answers
958 views

SMO not available in .NET 4.0? Or is there an easier way to backup a database from code

We upgraded our application to .NET 4.0 a while ago, and now need to add the ability to backup SQL Server 2008 databases from the app. However, it doesn't seem that SMO is available for .NET 4. Is ...
3
votes
3answers
3k views

Can't find Microsoft.SqlServer.ConnectionInfo.dll assembly file?

I'm trying to dynamically get a databases Table structure using only C# code as follows: using Microsoft.SqlServer.Management.Common; using Microsoft.SqlServer.Management.Smo; public class LoadStuff ...
3
votes
1answer
513 views

Using C# & SMO, how do I add a backup device to a SQL Server?

I know how to use C# and SMO to create a file backup on a SQL Server: public void BackupDatabase(Microsoft.SqlServer.Management.Smo.Server server, string databaseName, ...
3
votes
0answers
671 views

Using SMO.Agent to retrieve SQL job execution status - security issue

I've got a C# program that fires off SQL Server Agent jobs using the SQL Server Management Objects (SMO) interfaces. It looks something like: Server ssis_server = new Server( new ...
3
votes
1answer
346 views

Use SMO to locate a backup file to restore

I am able to use SMO to build a treeview similar to the Locate Backup File dialog from SSMS. I can list folders on the server, and if there are backup devices, those will be listed as well. One ...
3
votes
1answer
750 views

using SMO .net to backup and restore through DeviceType.Pipe

I wrote a Program that backup SQL Databases using SMO Library on .net , and everything is just going smoothly, I just have one last point, I'm changing my way to save the .bak file on the hard disk, ...
3
votes
1answer
816 views

c# and SMO - Get Message output such as “Table already exists” for logging

I am using SQL Management objects to connect to SQL server. At the moment they contain simple "create table" commands for my example. I run this code twice on purpose to cause an error for "table ...
3
votes
2answers
712 views

Fixing Orphaned Users with SQL SMO?

Is there a way to fix an orphaned user in a SQL 2005/2008 database using SQL SMO? You can find orphaned users relatively easily by enumerating through the users and looking for an empty User.Login ...
3
votes
3answers
758 views

Checking for and dropping an existing table via C# and SMO

I am trying to look for a SQL table by name and if it exists drop it. This all needs to be done in C# using SMO. To complicate it a bit more the table also has a schema other then "dbo". Ultimatly ...
3
votes
6answers
1k views

SQL 2005 SMO - find referencing table

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. How can I find the tables that reference a primary ...
3
votes
4answers
3k views

Programmatically detect SQL Server Edition

I'm using C# with SMO and attempting to detect what edition of SQL Server (e.g., enterprise, standard) I'm connecting to. I know how to get the version information, but that only tells me what ...
3
votes
4answers
2k views

Adding properties to T4 template - picking server, database, table

Folks, 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.....) What I'd ...
3
votes
2answers
792 views

server.Databases[databaseName].Drop(); fails in MSTest

The following exception is thrown: Error Message: Microsoft.SqlServer.Management.Smo.FailedOperationException: Drop failed for Database '4d982a46-58cb-4ddb-8999-28bd5bb900c7'. ---> ...
3
votes
2answers
1k views

Imitating SQL Server Profiler in a C# app?

I want to create a trace on a database server from my C# app, like what you do in SQL Server Profiler. I have found stored procedures (sys.sp_trace_create etc...) that dont seem to work for my SQL ...
3
votes
2answers
4k views

Using SMO to get create script for table defaults

I'm trying to create a database scripter tool for a local database I'm using. I've been able to generate create scripts for the tables, primary keys, indexes, and foreign keys, but I can't find any ...
2
votes
1answer
38 views

Exception creating transaction after runing sql server backup via SMO

I keep on getting the following error everytime i try to create a new transaction after i have backed up my database using SMO (Sql Server Management Objects): New transaction is not allowed because ...
2
votes
1answer
54 views

Can I distribute and install SQL Server Server Management Objects with my application?

For an application, I am building, I want to use SQL Server Managentment Objects. Am I allowed to distribute and install SMO DLL's with my application? The application requires a SQL Server ...
2
votes
1answer
60 views

How to find if SQL Server 2008 Management Objects installed?

My application needs SMO libraries to be installed. I want my installer to verify if SQL Server 2008 Management Objects already installed and if not install the SMO feature pack bundled with my ...
2
votes
3answers
97 views

Using Smo.Backup to backup SQL Server database to string

I'm trying to make a little app that would help me making my server backup. That app would run on my home PC so the main goal is to be able to connect to the external server, backup the selected ...
2
votes
3answers
326 views

Database backup via SMO (SQL Server Management Objects) in C#

I need to backup database (using SQL Server 2008 R2). Size of db is about 100 GB so I want backup content only of important tables (containing settings) and of course object of all tables, views, ...
2
votes
4answers
74 views

What is this kind of path?

I got some path while working on a project but not able to figure out the kind of it. What is this and how can I access it. if you know please share... const string WmiNamespace_2005 = ...
2
votes
2answers
165 views

Backup fails using smo on big databases

I use vb.net to backup sql '05 - '08 databases. It works great on smaller databases. but when it comes to large databases it fails at 30 or 40 percent with the error: The backup or restore was ...
2
votes
1answer
183 views

Getting last updated on a table as a dbowner

I need to get a last updated timestamp when for a table. This operation is to be performed by a dbowner, who has GRANT EXEC permissions on all sprocs. Any ideas how to accomplish this? Here is what I ...
2
votes
2answers
384 views

C# SMO - Scripting Table Data to File. Throwing Error

I'm trying to create a backup of the data contained within my database before I re-create the tables. I've got so far as to connect to the server and create the file to store the SQL. The problem is ...
2
votes
1answer
871 views

Error restoring database backup to new database with smo and powershell

Taking a database backup from another server I'm trying to restore to sqlexpress on the localhost. This restore will work via the gui but I'm having issues restoring it with powershell. I get the ...
2
votes
3answers
116 views

Form unresponsive while restoring database

I am trying to use SMO in a Windows Forms application to restore a SQL Server database. My form has a Button (button1) and a TextBox (textBox1). When the button is clicked a function is called that ...
2
votes
1answer
500 views

Use SMO to Change SQL Server Database Default Locations

I am using the following code to change the server database default locations (where the SQL Server keeps new database files and log files): using Microsoft.SqlServer.Management.Smo; Server ...
2
votes
1answer
662 views

Retrieving database name from bak file

I have a bak file that has in it a back up of a database . I want to restore this database to a new location and I need to retrieve the database name from this file any idea how to do so ? I need it ...
2
votes
1answer
57 views

Create database command failing

I have an active SMO connection string server = textBox_Server.Text; ServerConnection srvConn = new ServerConnection(server); // Log in using SQL authentication instead of ...
2
votes
3answers
200 views

Need to run SQL script on 5000+ databases. How should I approach?

I am developing a tool that will eventually be used to run a sql script on 5000+ production databases simultaneously. For now it will only be used to run scripts on our Dev and QA databases. But I ...
2
votes
1answer
174 views

Cleaning up after calls to SMO Server and Database

How do you make SMO release it's connections? I have this code: public static class SqlServerConnectionFactory { public static Server GetSmoServer() { using (var c = new ...
2
votes
3answers
1k views

How to automate script generation using SMO in SQL Server?

I would like to automate script generation (in SSMS --> Tasks --> Generate Scripts) in SSMS 2008. I have read that SQL Server 2008 does not support Database Publishing Wizard (including SQLPUBWIZ ...
2
votes
1answer
405 views

Check if SQL Server Agent is running from code?

How can I determine from code, if SQL Server Agent is running - using SMO? I would think there was a property on the JobServer class, but I can't find anything. Powershell is not an option.

1 2 3 4 5 6