0
votes
1answer
36 views
SQL Server CLR Trigger with SMO or Linq?
Hello,
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 …
0
votes
0answers
21 views
SQL Server Database Roles via SMO
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.
…
0
votes
1answer
17 views
How to Add a Column using SMO with UserefinedDatatype when that talble already has some data????
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)
I'm trying to add …
0
votes
1answer
31 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 I know I could …
0
votes
2answers
77 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;
…
0
votes
1answer
40 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 " & OLD_NAME …
0
votes
2answers
300 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.
…
2
votes
1answer
133 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 cause an error for …
0
votes
2answers
61 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 folder as the .aspx …
0
votes
1answer
40 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 files?? what i have …
1
vote
1answer
220 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)
{
…
0
votes
2answers
50 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
0answers
21 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 our production …
2
votes
2answers
119 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 …
0
votes
1answer
163 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 now writing a c# …
