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 …
3
votes
5answers
325 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 …
3
votes
4answers
637 views
Programmatically detect SQL Server Edition
I'm using C# with SMO and attempting to detect what edition of SQL Server (e.g., enterprise, standard) I'm connecting to. I know how to get the version information, but that only tells me what …
3
votes
3answers
387 views
Imitating SQL Server Profiler in a C# app??
I want to create a trace on a database server from my C# app, like what you do in SQL Server Profiler. I have found stored procedures (sys.sp_trace_create etc...) that dont seem to work for my SQL …
2
votes
1answer
119 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 …
2
votes
2answers
115 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 …
2
votes
4answers
542 views
Adding properties to T4 template - picking server, database, table
Folks,
I'd like to create some T4 templates for generating class files (about 7 per table) from a database to support our in-house ORM (don't ask - long story and historical reasons.....)
What I'd …
2
votes
5answers
1k views
SQL Server SMO complains of missing DLL
Ok, I've scoured the web, BOL, various forums and I'm no closer to an answer...hopefully you fine folks can lend a hand...
We've got a dozen or so SQL Servers (some 2k, some 2005) on a network. I'm …
2
votes
1answer
513 views
How to get the table a foreign key refers to
I have an small question I didn't found an answer yet: how do I get in c# and using Microsoft.SqlServer.Smo the table a foreign key column is referring to?
foreach (Column column in …
2
votes
2answers
195 views
server.Databases[databaseName].Drop(); fails in MSTest
The following exception is thrown:
Error Message: Microsoft.SqlServer.Management.Smo.FailedOperationException: Drop failed for Database '4d982a46-58cb-4ddb-8999-28bd5bb900c7'. ---> …
2
votes
3answers
1k views
Using SMO to get create script for table defaults
I'm trying to create a database scripter tool for a local database I'm using.
I've been able to generate create scripts for the tables, primary keys, indexes, and foreign keys, but I can't find any …
2
votes
2answers
1k views
Using SMO to copy a database and data
I am trying to make a copy of a database to a new database on the same server. The server is my local computer running SQL 2008 Express under Windows XP.
Doing this should be quite easy using the …
2
votes
2answers
304 views
What’s the best way to detect the presence of SMO?
I have some code that uses SMO to populate a list of available SQL Servers and databases. While we no longer support SQL Server 2000, it's possible that the code could get run on a machine that SQL …
1
vote
1answer
203 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)
{
…
1
vote
1answer
56 views
Alternatives to SMO, i.e. DML APIs for SQL Server?
I just learned I can't use SMO in ASP.NET without either SQL or a full SMO install on the application server. I'm not allowed to do that, so I can't use SMO.
What other libraries do the same thing …
