0
votes
0answers
14 views
Can’t get reference for SQL Server 2008 - SMO to work for VB.Net program
I'm trying to start using some SQL Server - SMO functions to write some VB.Net code to manage SQL Servers. I have SQL Server 2008 Express loaded on my workstation and Visual Studio 2003 for my …
1
vote
1answer
26 views
Scripting through SMO
Hi,
Is it possible to run a script using Microsoft.SqlServer.Management.Smo?
I am able to generate script using the Microsoft.SqlServer.Management.Smo.Scripter class. I would like to edit it and run …
0
votes
0answers
11 views
Minimum privileges to read SQL Jobs using SQL SMO
I wrote an application to use SQL SMO to find all SQL Servers, databases, jobs and job outcomes. This application is executed through a scheduled task using a local service account. This service …
0
votes
1answer
53 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
1answer
23 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
37 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
0answers
31 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 …
0
votes
1answer
40 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
93 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
2answers
68 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
46 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
0answers
31 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:
…
0
votes
1answer
44 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 …
0
votes
2answers
57 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
2
votes
1answer
156 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 …
