0
votes
3answers
826 views
Application cannot find Microsoft.SQLServer.SMO on SQL 2008 machine
Hi,
I have code that uses Microsoft.SqlServer.Management.Smo. (Built in VSStusio 2005 SP1)
It works fine on SQL 2000 & SQL 2005 machine.
But when it is run on SQL 2008 machine it throws an …
0
votes
1answer
31 views
Using COM objects in a T4 template?
Hi gang,
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 …
2
votes
2answers
127 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
788 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
3answers
118 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”, …
2
votes
1answer
631 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 …
0
votes
3answers
359 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% …
