0
votes
2answers
33 views
Using SMO, still no go… ConnectionContext.ExecuteNonQuery(script) can’t understand “GO”
Hello!
SQL Server 2008
Using all the correct references I dare say:
System.Data.SqlClient;
Microsoft.SqlServer.Management.Smo;
Microsoft.SqlServer.Management.Common;
Microsoft.S …
0
votes
1answer
27 views
Single User after renaming an MS-SQL database
I am using help of SqlServer.Management.Smo to rename an attached MS-SQL database.
Dim db As New Database = ActiveSQLServer.Databases(OLD_NAME)
db.ExecuteNonQuery("ALTER DATABASE …
0
votes
2answers
46 views
asp .net page to backup sql db
Hi guys,
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 …
0
votes
0answers
11 views
SMO: restoring to a different DB
I've read a dozen different blogs, as well as reading through the msdn examples and they just aren't working for me.
Ultimately what I'm trying to do is automate moving a DB from …
2
votes
1answer
98 views
c# and SMO - Get Message output such as “Table already exists” for logging.
Hi,
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 caus …
0
votes
1answer
32 views
How to display ndf files using SMO??
Hi
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 f …
0
votes
2answers
205 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 res …
0
votes
2answers
32 views
SMO - Assembly dependencies
I need to use SMO to find out all the dependencies of a registered assembly (SQLCLR).
How can I do that?
Thanks, Nestor
0
votes
1answer
11 views
Microsoft.SqlServer.Management.Sdk.Sfc.Urn
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.
Yes …
1
vote
1answer
146 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 targ …
2
votes
2answers
105 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 …
0
votes
1answer
130 views
Can’t enumerate SQL Server 2008 Registered Servers with SMO
Hi there,
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 …
0
votes
0answers
13 views
Executing queries with ExecuteWithResults using the BatchSeparator
We are using Smo.Server to run some SQL batches.
For queries that create stored procedures or tables and contain the separator GO the following code works:
server.ConnectionContex …
0
votes
1answer
69 views
what is the CLSID and PROG ID of Microsoft.sqlserver.Management.Smo
Hi
Can any Body tell me wher can i get CLSID and ProgID of Smo library??
As for DMO it is givenn in a Header file by Microsoft.But i am not finding any Header file
related to …
0
votes
2answers
284 views
How to Connect to Sqlserver2008 using SMO any workaround has to be done???
I wrote this for finding the sql server instances on the local machine:
using System;
using System.Data;
using Microsoft.SqlServer.Management.Smo;
namespace Application3
{
cl …
