Tagged Questions
The sqldmo tag has no wiki summary.
3
votes
3answers
2k views
Programmatically retrieve database table creation script in .NET
I need to be able to retrieve a CREATE TABLE script to recreate a specific table in a SQL Server (2000) database, programmatically (I'm using C#). Obviously you can do this with Enterprise Manager but ...
2
votes
3answers
141 views
Is it possible to use a trusted connection (SSPI) with the SQLDMO API?
I am using the DMO API via .NET to provide an alternative interface to job scheduling functionality on SQL Server 2000 Agent. The working code looks something like this:
using SQLDMO;
internal class ...
2
votes
1answer
767 views
Problem using SQLDMO/Vb6 against SQL Server 2008
I have a client, that uses SQLDMO for a portion of a custom application that was written against SQL Server 2000, and they recently upgraded to SQL Server 2008.
The majority of the app still runs ...
2
votes
3answers
8k views
Application cannot find Microsoft.SQLServer.SMO on SQL 2008 machine
I have code that uses Microsoft.SqlServer.Management.Smo. (Built in Visual Studio 2005 SP1)
It works fine on SQL 2000 & SQL 2005 machine.
But when it is run on SQL 2008 machine it throws an ...
2
votes
2answers
355 views
How to list SQL 2005 Express instances
I would like to list what instances of SQL 2005 Server (Express Editon) are installed on local or remote machine (my app is in Native C++). I found that i can make it by SQLDMO, however it seems that ...
1
vote
3answers
2k views
VB6 support for SQL SMO and .Net 2.0
We are trying to move from using SQL DMO to SMO in our COM+ based application, as we are dropping support for SQL Server 2000 and adding support for SQL Server 2008 in addition to SQL Server 2005.
I ...
0
votes
1answer
989 views
System.Web.Services.Protocols.SoapException: Server was unable to process request
i am using .net webservice for restoring the database in sqlserver. i am using SQLDMO.dll, to restoring database, when i run the app, i getting the following Error.
...
0
votes
1answer
175 views
What could cause database restore from a network share to fail?
I'm using SQL-DMO to restore a database backup that is located on a network share into a instance of SQL Server running on the local machine.
The code works fine on my machine. But on a test VM it ...
0
votes
2answers
850 views
SQL Server 2008 alternative for SQL-DMO
I previously was using SQL-DMO to automatically generate scripts from the database.
Now I upgraded to SQL Server 2008 and I don’t want to use this feature anymore since Microsoft will be dropping this ...
0
votes
1answer
49 views
Is there a way to specify a domain to look at when using SQLDMO to list SQL servers?
Pardon me if this is a basic question, but I'm just starting to delve into using SQLDMO and I've not been able to find a specific answer to what I'm looking for. The scenario is this:
I am trying to ...
0
votes
2answers
164 views
SQL Server EnumParameters Method on StoredProcedure object in SQL Server 2008 SQL-DMO
Hello all you wonderfully helpful people,
What is the alternative to EnumParameters in SQL Server 2008? This MSDN article mentions that this method is going away, so what should be used instead?
...
0
votes
1answer
62 views
Using COM objects in a T4 template?
I'm new to Visual Studio's T4 template engine, and I'm wondering how I can use COM objects to build templates. Specifically, SQL-DMO (to generate classes from stored procedures on a SQL 2000 server, ...
0
votes
3answers
209 views
Does an ASP.NET SQL Library Exist for Managing Tables?
Does anyone know of a SQL library in ASP.NET that can be used to manage tables?
Eg
SQLTable table = new SQLTable();
table.AddColumn(“First name”, varchar, 100);
table.AddColumn(“Last name”, ...
0
votes
3answers
544 views
How to make app fully SQL Server 2005 compatible?
We have an application that use MSSQL, when we move to 2005, basically we recommend to our client to apply the backward compatibility package and that’s it, but somebody ask me what to do to be 100% ...