0
votes
0answers
12 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
2answers
95 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 smo.
What is the …
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
2answers
547 views
How to change table name when script a table from SQL Server SMO
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"?
Database db = …
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
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 …
5
votes
6answers
2k 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 …
0
votes
1answer
52 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 …
3
votes
5answers
345 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 …
0
votes
1answer
37 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
228 views
SMO scripting objects and security
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 …
0
votes
0answers
30 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
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
67 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 …
