Tagged Questions
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 ...
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
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
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
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% ...