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 Mana …
0
votes
1answer
26 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 …
3
votes
5answers
321 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 …
0
votes
1answer
7 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 …
0
votes
1answer
508 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"?
Datab …
0
votes
1answer
22 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 …
0
votes
2answers
80 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
212 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 ( …
0
votes
0answers
13 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 …
0
votes
0answers
17 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 …
0
votes
2answers
55 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
2answers
54 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
1answer
152 views
SQL Server SMO TransferData() keeps failing
I am using the TransferData method of the transfer class in SQL Server SMO.
I have the call running on Windows XP, running SQL Server 2008 SP1, trying to transfer a table from SQL …
0
votes
1answer
37 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
0answers
21 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 …
