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 ...
0
votes
1answer
988 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
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”, ...